diff options
author | plegall <plg@piwigo.org> | 2010-02-28 20:58:45 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-02-28 20:58:45 +0000 |
commit | f1f59e937a3529b6342f1f23c7dda598d379e643 (patch) | |
tree | 1068f03cecf8781933608ff2765e9c3b839b2b4f /search.php | |
parent | d2872aacef1557557c9997befd1d3af085083c36 (diff) |
improvement: avoid the use of @ instead of a real test
git-svn-id: http://piwigo.org/svn/branches/2.0@5003 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/search.php b/search.php index 0a9712743..ff6cf2d97 100644 --- a/search.php +++ b/search.php @@ -71,7 +71,7 @@ if (isset($_POST['submit'])) if (isset($_POST['tags'])) { - check_input_parameter('tags', $_POST['tags'], true, PATTERN_ID); + check_input_parameter('tags', $_POST, true, PATTERN_ID); $search['fields']['tags'] = array( 'words' => $_POST['tags'], @@ -92,7 +92,7 @@ if (isset($_POST['submit'])) if (isset($_POST['cat'])) { - check_input_parameter('cat', $_POST['cat'], true, PATTERN_ID); + check_input_parameter('cat', $_POST, true, PATTERN_ID); $search['fields']['cat'] = array( 'words' => $_POST['cat'], |