Quote:
Originally Posted by Tri@de
Yes, but a little bit.
there's only a little thing in index.php
In the 2.3.3 you have
if (($maxusers[0] <= $totalonline AND $maxusers[0] > 0) OR sizeof($maxusers) == 1) {
instead of
if ((int)$maxusers[0] <= $totalonline) {
so, if you whant to modify, write
// today online hack begin
if (($maxusers[0] <= $totalonline AND $maxusers[0] > 0) OR sizeof($maxusers) == 1) {
$time = time();
$maxloggedin = "$totalonline " . $time . " " . $maxusers[2] . " " . $maxusers[3];
$DB_site->query("UPDATE template SET template='$maxloggedin' WHERE title='maxloggedin'");
$maxusers[0] = $totalonline;
$maxusers[1] = $time;
}
And it's done 
i hope this help you 
|
I was Having problems on the 2.3.4 and this took care of the problem! Thanks a million!