Commit 41d90f88 authored by Nico Schallehn's avatar Nico Schallehn

bugfix

parent e9c7b74d
...@@ -104,7 +104,10 @@ function UserTable ($asarray = FALSE){ ...@@ -104,7 +104,10 @@ function UserTable ($asarray = FALSE){
} }
} }
$content .= "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>"; if(!$asarray){
$content .= "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
}
$result = mysql_query("SELECT name, admin FROM user WHERE online = '0' ORDER BY name"); $result = mysql_query("SELECT name, admin FROM user WHERE online = '0' ORDER BY name");
while($user = mysql_fetch_array($result)) while($user = mysql_fetch_array($result))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment