1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 15:17:16 +01:00
php-phpbb/phpBB/extension.inc
Ludovic Arnaud 6752c2a168 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
2002-09-29 20:45:57 +00:00

25 lines
794 B
PHP

<?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];
?>