mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
Pass S_SEARCH_ACTION through append_sid() in search.php. (Bug #21585)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8885 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b91b43d22c
commit
7c99035c21
2 changed files with 2 additions and 1 deletions
|
@ -117,6 +117,7 @@
|
||||||
<li>[Fix] Display assigned rank/avatar for guests. (Bug #19155)</li>
|
<li>[Fix] Display assigned rank/avatar for guests. (Bug #19155)</li>
|
||||||
<li>[Fix] Set secure cookie for style switcher if required. (Bug #19625)</li>
|
<li>[Fix] Set secure cookie for style switcher if required. (Bug #19625)</li>
|
||||||
<li>[Fix] Fix native full text search on postgresql while using excluding keyword matches. (Bug #19195)</li>
|
<li>[Fix] Fix native full text search on postgresql while using excluding keyword matches. (Bug #19195)</li>
|
||||||
|
<li>[Fix] Pass S_SEARCH_ACTION through append_sid() in search.php. (Bug #21585)</li>
|
||||||
|
|
||||||
<li>[Change] No longer allow the direct use of MULTI_INSERT in sql_build_array. sql_multi_insert() must be used.</li>
|
<li>[Change] No longer allow the direct use of MULTI_INSERT in sql_build_array. sql_multi_insert() must be used.</li>
|
||||||
<li>[Change] Display warning in ACP if config.php file is left writable.</li>
|
<li>[Change] Display warning in ACP if config.php file is left writable.</li>
|
||||||
|
|
|
@ -1053,7 +1053,7 @@ if (!empty($_EXTRA_URL))
|
||||||
}
|
}
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'S_SEARCH_ACTION' => "{$phpbb_root_path}search.$phpEx",
|
'S_SEARCH_ACTION' => append_sid("{$phpbb_root_path}search.$phpEx", false, true, 0), // We force no ?sid= appending by using 0
|
||||||
'S_HIDDEN_FIELDS' => build_hidden_fields($s_hidden_fields),
|
'S_HIDDEN_FIELDS' => build_hidden_fields($s_hidden_fields),
|
||||||
'S_CHARACTER_OPTIONS' => $s_characters,
|
'S_CHARACTER_OPTIONS' => $s_characters,
|
||||||
'S_FORUM_OPTIONS' => $s_forums,
|
'S_FORUM_OPTIONS' => $s_forums,
|
||||||
|
|
Loading…
Add table
Reference in a new issue