Gilby,

noticed this change from the beta and the new version

Beta Version

PHP Code:
        // begin mod to set mysql timezone (gilby)
        
if (getenv('TZ')) {
          @
mysql_query("SET time_zone = '" substr_replace(date("O"),":",-2,0) . "'"$this->link);
        }
        
// end mod to set mysql timezone (gilby) 
New Version

PHP Code:
        // begin mod to set mysql timezone (gilby)
          
@mysql_query("SET time_zone = '" substr_replace(date("O"),":",-2,0) . "'"$this->link);
        
// end mod to set mysql timezone (gilby) 
Will this make any difference to how things work.