diff options
author | patdenice <patdenice@piwigo.org> | 2011-06-03 16:40:25 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2011-06-03 16:40:25 +0000 |
commit | 0af1d99ebf47e2028aef143d44b9f428e1a5df19 (patch) | |
tree | 8ec518935526f235ab38b7e7608ef45cdd821c70 /admin/picture_modify.php | |
parent | 9866699c7786c27f65aff681388aeb5deac05e87 (diff) |
bug:2326
Mysql error on picture_modify if tag input is empty.
git-svn-id: http://piwigo.org/svn/trunk@11220 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/picture_modify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/picture_modify.php b/admin/picture_modify.php index 97bff6e5e..779197f0c 100644 --- a/admin/picture_modify.php +++ b/admin/picture_modify.php @@ -164,7 +164,7 @@ if (isset($_POST['submit']) and count($page['errors']) == 0) // time to deal with tags $tag_ids = array(); - if (isset($_POST['tags'])) + if (!empty($_POST['tags'])) { $tag_ids = get_tag_ids($_POST['tags']); } |