From ebf7d12a4cf5a7c8bb690a17f23f629046903a53 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Wed, 1 Jun 2011 13:51:04 +0000 Subject: merge r11192 from trunk : mysql warning if tag field is empty git-svn-id: http://piwigo.org/svn/branches/2.2@11193 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/batch_manager_unit.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'admin/batch_manager_unit.php') diff --git a/admin/batch_manager_unit.php b/admin/batch_manager_unit.php index b7ca074d7..84eed53b1 100644 --- a/admin/batch_manager_unit.php +++ b/admin/batch_manager_unit.php @@ -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( -- cgit v1.2.3