aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/extension.inc
blob: 2df77cbb3ba3a4e844afa51e313b2e64bf25b1f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/***************************************************************************  
 *                               extension.inc
 *                            -------------------                         
 *   begin                : Saturday, Feb 13, 2001 
 *   copyright            : (C) 2001 The phpBB Group        
 *   email                : support@phpbb.com                           
 *                                                          
 *   $Id$
 *                                                            
 * 
 ***************************************************************************/ 

//
// Change this if your extension is not .php!
//
$phpEx = 'php';

//
// For debug timing
// 
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];

?>