mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00: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:
parent
e1e52497fa
commit
6752c2a168
1 changed files with 2 additions and 9 deletions
|
@ -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;
|
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Add table
Reference in a new issue