Fix missing $phpEx in search redirections

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2506 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-04-07 18:33:12 +00:00
parent 87375379e4
commit 76e7a50813

View file

@ -157,7 +157,7 @@ else if ( $search_keywords != '' || $search_author != '' || $search_id )
}
else
{
header("Location: login.$phpEx?redirect=search&search_id=newposts");
header("Location: login.$phpEx?redirect=search.$phpEx&search_id=newposts", true);
exit;
}
@ -175,7 +175,7 @@ else if ( $search_keywords != '' || $search_author != '' || $search_id )
}
else
{
header("Location: login.$phpEx?redirect=search&search_id=egosearch");
header("Location: login.$phpEx?redirect=search.$phpEx&search_id=egosearch", true);
exit;
}