mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-16 22:51:23 +02:00
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:
@@ -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;
|
|
||||||
|
|
||||||
?>
|
?>
|
Reference in New Issue
Block a user