fixed bug: umlauts and other non-ascii chars got corrupted in a nextmatch search, when you scroll with left and right arrows, the search value got unnecessary urlencoded

This commit is contained in:
Ralf Becker 2006-08-30 13:22:51 +00:00
parent 72b1b39de6
commit 0e5afc3ca4

View File

@ -251,7 +251,7 @@
'filter' => $this->_filter,
'q_field' => $this->_qfield,
'sort' => $this->_sort,
'query' => urlencode(stripslashes(@$GLOBALS['query']))
'query' => stripslashes(@$GLOBALS['query'])
);
$extravars = $this->split_extras($extravars,$extradata);
@ -297,7 +297,7 @@
'filter' => $this->_filter,
'q_field' => $this->_qfield,
'sort' => $this->_sort,
'query' => urlencode(stripslashes(@$GLOBALS['query']))
'query' => stripslashes(@$GLOBALS['query'])
);
$extravars = $this->split_extras($extravars,$extradata);