mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 18:01:31 +02:00
- bug 101 fixed : "problem with IE search on keywords". Separator character
";" is not officially a supported character for URL. Replaced by "--". git-svn-id: http://piwigo.org/svn/branches/branch-1_4@785 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+1
-1
@@ -114,7 +114,7 @@ if (isset($_POST['submit']))
|
||||
}
|
||||
array_push($tokens, $token);
|
||||
}
|
||||
$search_string.= implode(';', $tokens);
|
||||
$search_string.= implode('--', $tokens);
|
||||
if (count($tokens) > 1)
|
||||
{
|
||||
$search_string.= '|AND';
|
||||
|
||||
Reference in New Issue
Block a user