|
From: Paul S. O. <ps...@us...> - 2002-04-04 21:51:36
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv30741
Modified Files:
extension.inc
Log Message:
Update a few things for 2.1 CVS
Index: extension.inc
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/extension.inc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** extension.inc 4 Apr 2002 11:52:50 -0000 1.5
--- extension.inc 4 Apr 2002 21:51:32 -0000 1.6
***************
*** 14,18 ****
if ( !defined('IN_PHPBB') )
{
! die("Hacking attempt");
}
--- 14,18 ----
if ( !defined('IN_PHPBB') )
{
! die('Hacking attempt');
}
***************
*** 20,26 ****
// Change this if your extension is not .php!
//
! $phpEx = "php";
! $starttime = 0;
?>
--- 20,32 ----
// Change this if your extension is not .php!
//
! $phpEx = 'php';
! //
! // For debug timing
! //
! $mtime = microtime();
! $mtime = explode(' ',$mtime);
! $mtime = $mtime[1] + $mtime[0];
! $starttime = $mtime;
?>
|