diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-05-15 03:38:48 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-05-15 03:38:48 +0000 |
commit | 88d47f233205e75b91ce422b555982af29805c92 (patch) | |
tree | e7cbff815f6ea44d0bbbb12c54052476abc52fc0 | |
parent | badf55178188376380e2162fae70e7b5f95dcbc8 (diff) |
keyword search was not working comments.php
git-svn-id: http://piwigo.org/svn/trunk@2012 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comments.php b/comments.php index b46ee3f8e..de328152f 100644 --- a/comments.php +++ b/comments.php @@ -117,7 +117,7 @@ if (isset($_GET['keyword']) and !empty($_GET['keyword'])) '$s', 'return "content LIKE \'%$s%\'";' ), - preg_split('/[\s,;]+/', $keyword) + preg_split('/[\s,;]+/', $_GET['keyword'] ) ) ). ')'; |