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:
parent
4f614c9fef
commit
866fc70485
1 changed files with 6 additions and 2 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue