- bug fixed : even with a wrong date given, tries to update (should not)

git-svn-id: http://piwigo.org/svn/trunk@732 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2005-02-09 21:46:28 +00:00
parent 1c7a70ff2d
commit 10adb2a72c

View File

@@ -40,7 +40,7 @@ if (isset($_POST['date_creation']) and !empty($_POST['date_creation']))
array_push($errors, $lang['err_date']);
}
}
if (isset($_POST['submit']))
if (isset($_POST['submit']) and count($errors) == 0)
{
$query = 'UPDATE '.IMAGES_TABLE.' SET name = ';
if ($_POST['name'] == '')
@@ -61,7 +61,7 @@ if (isset($_POST['submit']))
$query.= "'".htmlentities($_POST['comment'],ENT_QUOTES)."'";
$query.= ', date_creation = ';
if (check_date_format($_POST['date_creation']))
if (!empty($_POST['date_creation']))
$query.= "'".date_convert($_POST['date_creation'])."'";
else if ($_POST['date_creation'] == '')
$query.= 'NULL';