1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

Forums can have moderators now..

git-svn-id: file:///svn/phpbb/trunk@39 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson
2001-02-24 01:02:41 +00:00
parent ddc2cd6ead
commit 852eaf0da9
2 changed files with 79 additions and 34 deletions

View File

@@ -127,4 +127,35 @@ function make_jumpbox($db, $phpEx)
return($boxstring);
}
function get_moderators($db, $forum_id)
{
$sql = "SELECT u.username, u.user_id FROM " . FORUM_MODS_TABLE ." f, " . USERS_TABLE . " u
WHERE f.forum_id = '$forum_id' AND u.user_id = f.user_id";
if($result = $db->sql_query($sql))
{
if($total_mods = $db->sql_numrows($result))
{
$rowset = $db->sql_fetchrowset($result);
for($x = 0; $x < $total_mods; $x++)
{
$modArray[] = array("id" => $rowset[$x]["user_id"],
"name" => $rowset[$x]["username"]);
}
}
else
{
$modArray[] = array("id" => "-1",
"name" => "ERROR");
}
}
else
{
$modArray[] = array("id" => "-1",
"name" => "ERROR");
}
return($modArray);
}
?>