No need to be paranoid about direct access to this file, removed $mtime reference.

git-svn-id: file:///svn/phpbb/trunk@2910 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud 2002-09-29 20:45:57 +00:00
parent e1e52497fa
commit 6752c2a168

View file

@ -11,11 +11,6 @@
* *
***************************************************************************/ ***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die('Hacking attempt');
}
// //
// Change this if your extension is not .php! // Change this if your extension is not .php!
// //
@ -24,9 +19,7 @@ $phpEx = 'php';
// //
// For debug timing // For debug timing
// //
$mtime = microtime(); $starttime = explode(' ', microtime());
$mtime = explode(' ',$mtime); $starttime = $starttime[1] + $starttime[0];
$mtime = $mtime[1] + $mtime[0];
$starttime = $mtime;
?> ?>