-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.inc
31 lines (27 loc) · 1017 Bytes
/
extension.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/***************************************************************************
* extension.inc
* -------------------
* begin : Saturday, Feb 13, 2001
* copyright : (C) 2001 The phpBB Group
* email : [email protected]
*
* $Id: extension.inc,v 1.5 2002/04/04 11:52:50 psotfx Exp $
*
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
//
// Change this if your extension is not .php!
//
$phpEx = "php";
//-- Board Generation Time Info ------------------------------------------------
//-- Disable
//$starttime = 0;
//-- Add
$starttime = time();
//-- End MOD Board Generation Time Info ----------------------------------------
?>