mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
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:
parent
87375379e4
commit
76e7a50813
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ else if ( $search_keywords != '' || $search_author != '' || $search_id )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
header("Location: login.$phpEx?redirect=search&search_id=newposts");
|
header("Location: login.$phpEx?redirect=search.$phpEx&search_id=newposts", true);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ else if ( $search_keywords != '' || $search_author != '' || $search_id )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
header("Location: login.$phpEx?redirect=search&search_id=egosearch");
|
header("Location: login.$phpEx?redirect=search.$phpEx&search_id=egosearch", true);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue