|
From: OryNider <ory...@us...> - 2008-02-19 18:37:19
|
Update of /cvsroot/mxbb/mx_online_adv In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3588 Modified Files: mx_online_adv.php Log Message: fix Index: mx_online_adv.php =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/mx_online_adv.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mx_online_adv.php 9 Feb 2008 09:21:22 -0000 1.9 --- mx_online_adv.php 19 Feb 2008 18:37:10 -0000 1.10 *************** *** 61,65 **** $uot_this_timestamp_array = getdate(); $uot_when_from = mktime(0, 0, 0, $uot_this_timestamp_array[mon], $uot_this_timestamp_array[mday], $uot_this_timestamp_array[year]); ! $uot_hidden_count = 0; // ================================================================================ --- 61,66 ---- $uot_this_timestamp_array = getdate(); $uot_when_from = mktime(0, 0, 0, $uot_this_timestamp_array[mon], $uot_this_timestamp_array[mday], $uot_this_timestamp_array[year]); ! $uot_hidden_count = 0; ! $users_online_today = array(); // ================================================================================ *************** *** 105,110 **** } - $users_online_today = array(); - while ($row = $db->sql_fetchrow($uot_result)) { --- 106,109 ---- *************** *** 486,490 **** 'UOT_TITLE' => sprintf($lang['UOT_title'], $uot_count), 'UOT_COUNT' => $uot_count, ! 'UOT_LIST' => implode(", ",$users_online_today) )); --- 485,489 ---- 'UOT_TITLE' => sprintf($lang['UOT_title'], $uot_count), 'UOT_COUNT' => $uot_count, ! 'UOT_LIST' => @implode(",", $users_online_today) )); |