View Single Post
  #14  
Old 11th February 2013, 22:03
Daz's Avatar
Daz Daz is offline
Senior Member
 
Join Date: Dec 2009
United Kingdom
Posts: 124
Default
In ./global.php

find:
PHP Code:
    unset ($_SESSION[totaltime]);
    unset (
$_SESSION[totalqueries]); 
Change to:
PHP Code:
    unset ($_SESSION['totaltime']);
    unset (
$_SESSION['totalqueries']); 
Reply With Quote
The Following User Says Thank You to Daz For This Useful Post:
antibiotic1 (11th February 2013)