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
This commit is contained in:
parent
e36de08239
commit
b253200c95
1 changed files with 1 additions and 1 deletions
|
|
@ -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']),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue