diff options
author | plegall <plg@piwigo.org> | 2005-09-18 21:09:44 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-18 21:09:44 +0000 |
commit | 2e8a34adc77cad3c4a8592057a2dd88e6f090e36 (patch) | |
tree | 7dd30cd8febfc83bb48c341697a9a03e3765bbc3 /search.php | |
parent | f7b777c90ac54e4c33d9e57ea132e44b49ce487a (diff) |
- bug 101 fixed: correction reported from branch 1.4
git-svn-id: http://piwigo.org/svn/trunk@867 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search.php b/search.php index d65bf2434..2778c8b80 100644 --- a/search.php +++ b/search.php @@ -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'; |