1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02:00

Minor layout and jumpbox changes

git-svn-id: file:///svn/phpbb/trunk@49 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-02-24 22:06:49 +00:00
parent cc74b3559d
commit b250bba47d

View File

@ -74,57 +74,56 @@ function get_newest_user($db)
} }
} }
function make_jumpbox($db, $phpEx) function make_jumpbox($db)
{ {
$boxstring = " $sql = "SELECT cat_id, cat_title FROM ".CATEGORIES_TABLE." ORDER BY cat_order";
<FORM ACTION=\"viewforum.$phpEx\" METHOD=\"GET\">
Jump to: $boxstring = "";
<SELECT NAME=\"forum_id\"><OPTION VALUE=\"-1\">Select Forum</OPTION> if($result = $db->sql_query($sql))
"; {
$sql = "SELECT cat_id, cat_title FROM ".CATEGORIES_TABLE." ORDER BY cat_order"; if($total_cats = $db->sql_numrows($result))
if($result = $db->sql_query($sql)) {
{ $cat_rows = $db->sql_fetchrowset($result);
if($total_cats = $db->sql_numrows($result)) for($x = 0; $x < $total_cats; $x++)
{ {
$cat_rows = $db->sql_fetchrowset($result); $boxstring .= "<option value=\"-1\">&nbsp;</option>\n";
for($x = 0; $x < $total_cats; $x++) $boxstring .= "<option value=\"-1\">".stripslashes($cat_rows[$x]["cat_title"])."</OPTION>\n";
{ $boxstring .= "<option value=\"-1\">----------------</OPTION>\n";
$boxstring .= "<OPTION VALUE=\"-1\">&nbsp;</OPTION>\n";
$boxstring .= "<OPTION VALUE=\"-1\">".stripslashes($cat_rows[$x]["cat_title"])."</OPTION>\n";
$boxstring .= "<OPTION VALUE=\"-1\">----------------</OPTION>\n";
$f_sql = "SELECT forum_name, forum_id FROM ".FORUMS_TABLE." $f_sql = "SELECT forum_name, forum_id FROM ".FORUMS_TABLE."
WHERE cat_id = ". $cat_rows[$x]["cat_id"] . " ORDER BY forum_id"; WHERE cat_id = ". $cat_rows[$x]["cat_id"] . " ORDER BY forum_id";
if($f_result = $db->sql_query($f_sql))
{ if($f_result = $db->sql_query($f_sql))
if($total_forums = $db->sql_numrows($f_result)) {
{ if($total_forums = $db->sql_numrows($f_result))
$f_rows = $db->sql_fetchrowset($f_result); {
for($y = 0; $y < $total_forums; $y++) $f_rows = $db->sql_fetchrowset($f_result);
{
$name = stripslashes($f_rows[$y]["forum_name"]); for($y = 0; $y < $total_forums; $y++)
$boxstring .= "<OPTION VALUE=\"".$f_rows[$y]["forum_id"]."\">$name</OPTION>\n"; {
} $name = stripslashes($f_rows[$y]["forum_name"]);
} $boxstring .= "<option value=\"".$f_rows[$y]["forum_id"]."\">$name</OPTION>\n";
} }
else }
{ }
$boxstring .= "<option value=\"-1\">Error!</option>\n"; else
} {
} $boxstring .= "<option value=\"-1\">Error!</option>\n";
} }
}
}
else
{
$boxstring .= "<option value=\"-1\">No Forums to Jump to</option>\n";
}
}
else else
{ {
$boxstring .= "<option value=\"-1\">No Forums to Jump to</option>\n"; $boxstring .= "<option value=\"-1\">Cat Error</option>\n";
} }
}
else return($boxstring);
{
$boxstring .= "<option value=\"-1\">Cat Error</option>\n";
}
$boxstring .= "</SELECT>\n<br><INPUT TYPE=\"SUBMIT\" VALUE=\"Jump\"></FORM>";
return($boxstring);
} }
function get_moderators($db, $forum_id) function get_moderators($db, $forum_id)