mysql warning if tag field is empty

git-svn-id: http://piwigo.org/svn/trunk@11192 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100 2011-06-01 13:50:01 +00:00
commit 866fc70485

View file

@ -106,11 +106,15 @@ SELECT id, date_creation
array_push($datas, $data);
// tags management
if (isset($_POST[ 'tags-'.$row['id'] ]))
if (isset($_POST[ 'tags-'.$row['id'] ]) AND $_POST[ 'tags-'.$row['id'] ] != null)
{
$tag_ids = get_tag_ids($_POST[ 'tags-'.$row['id'] ]);
set_tags($tag_ids, $row['id']);
}
else
{
$tag_ids = array();
}
set_tags($tag_ids, $row['id']);
}
mass_updates(