MINOR BUG FIX
Here is a small bug fix. Please fix it if you installed the hack prior to the date of this message. The option to enable/disable news compilation time does not work (always on) if you dont fix it. (minor issue). After the fix you will be able to disable its display by setting the variable to 0. Thx to frank for reporting this.
Edit phpheader.php, find:
PHP Code:
## Script Run Time
## if 1, script will post compile time with every news load like "This page has been compiled in 0.3433434 seconds"
## 0 disables this feature
$run_time=0;
(it can be set to 0 or 1 according to your configuration)
Replace it as
PHP Code:
## Script Run Time
## if 1, script will post compile time with every news load like "This page has been compiled in 0.3433434 seconds"
## 0 disables this feature
$run_time_config=0;
(Again set it to 1 or 0 according to your wish.)
Edit newsconfig.php
find:
PHP Code:
global $servername, $dbusername, $dbpassword, $dbname, $timeset, $forumlocation, $newstablesample, $normalcolor, $stickycolor, $staticlink, $readalltext, $readresttext, $linebreak, $remove_news_tag, $count_increase, $news_char_number, $max_news, $news_forums, $news_posters, $lang,$run_time, $installed_as;
Replace it as:
PHP Code:
global $servername, $dbusername, $dbpassword, $dbname, $timeset, $forumlocation, $newstablesample, $normalcolor, $stickycolor, $staticlink, $readalltext, $readresttext, $linebreak, $remove_news_tag, $count_increase, $news_char_number, $max_news, $news_forums, $news_posters, $lang,$run_time_config, $installed_as;
and find:
Replace it as:
PHP Code:
if ($run_time_config)
Logician