mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 01:03:31 +02:00
bug:2326
Mysql error on picture_modify if tag input is empty. git-svn-id: http://piwigo.org/svn/trunk@11220 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -164,7 +164,7 @@ if (isset($_POST['submit']) and count($page['errors']) == 0)
|
||||
|
||||
// time to deal with tags
|
||||
$tag_ids = array();
|
||||
if (isset($_POST['tags']))
|
||||
if (!empty($_POST['tags']))
|
||||
{
|
||||
$tag_ids = get_tag_ids($_POST['tags']);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user