aboutsummaryrefslogtreecommitdiffstats
path: root/search.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-02-28 20:58:45 +0000
committerplegall <plg@piwigo.org>2010-02-28 20:58:45 +0000
commitf1f59e937a3529b6342f1f23c7dda598d379e643 (patch)
tree1068f03cecf8781933608ff2765e9c3b839b2b4f /search.php
parentd2872aacef1557557c9997befd1d3af085083c36 (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.php4
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'],