mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
Minor username error update
git-svn-id: file:///svn/phpbb/trunk@152 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0c49c9569e
commit
89d1446795
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ $template->assign_vars(array(
|
||||||
$online_count = $db->sql_numrows($result);
|
$online_count = $db->sql_numrows($result);
|
||||||
if($online_count)
|
if($online_count)
|
||||||
{
|
{
|
||||||
for($i = 0; $i < $db->sql_numrows($result); $i++)
|
for($i = 0; $i < $online_count; $i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
if($row_color == "#DDDDDD")
|
if($row_color == "#DDDDDD")
|
||||||
|
@ -98,7 +98,7 @@ if($online_count)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$username .= "$l_anonymous";
|
$username = "$l_anonymous";
|
||||||
}
|
}
|
||||||
|
|
||||||
if($onlinerow[$i]['forum_name'] == "")
|
if($onlinerow[$i]['forum_name'] == "")
|
||||||
|
|
Loading…
Add table
Reference in a new issue