mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
Paul didn't quite get ALL changed to -1 everywhere it was necessary.. Fixed now.
git-svn-id: file:///svn/phpbb/trunk@1789 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
89a33df602
commit
b5fbcbbdaa
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ if( isset($HTTP_GET_VARS[POST_FORUM_URL]) || isset($HTTP_POST_VARS[POST_FORUM_UR
|
|||
{
|
||||
$forum_id = ( isset($HTTP_POST_VARS[POST_FORUM_URL]) ) ? $HTTP_POST_VARS[POST_FORUM_URL] : $HTTP_GET_VARS[POST_FORUM_URL];
|
||||
|
||||
if( $forum_id == "ALL" )
|
||||
if( $forum_id == -1 )
|
||||
{
|
||||
$forum_sql = "";
|
||||
}
|
||||
|
@ -203,4 +203,4 @@ $template->pparse("body");
|
|||
|
||||
include('page_footer_admin.'.$phpEx);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue