diff options
author | plegall <plg@piwigo.org> | 2009-07-21 21:19:53 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-07-21 21:19:53 +0000 |
commit | b253200c95444448b2a62239dccca6d285f967fa (patch) | |
tree | 210c32d4b99b5b5905e079add201c7d9bad53346 /include/ws_functions.inc.php | |
parent | e36de08239746bbe2355ed12a78e1a71b0e59203 (diff) |
merge r3659 from branch 2.0 to trunk
bug 1070: fix a pLoader bug on Piwigo side. Catch the bad communication:
don't try to find tags if tag_ids parameter is empty (but not null).
git-svn-id: http://piwigo.org/svn/trunk@3660 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/ws_functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 9f5eb8ad0..dece797d6 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -1214,7 +1214,7 @@ SELECT } // and now, let's create tag associations - if (isset($params['tag_ids'])) + if (isset($params['tag_ids']) and !empty($params['tag_ids'])) { set_tags( explode(',', $params['tag_ids']), |