From 0abfb916e3aeac9d1bb0176f426ff682d8f92a6f Mon Sep 17 00:00:00 2001 From: patdenice Date: Tue, 23 Mar 2010 17:38:55 +0000 Subject: Remove @, test $_POST['date_creation_year'] instead, make nicolas joyful ;-) git-svn-id: http://piwigo.org/svn/trunk@5288 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/picture_modify.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'admin/picture_modify.php') diff --git a/admin/picture_modify.php b/admin/picture_modify.php index 803bc83dc..557f97dad 100644 --- a/admin/picture_modify.php +++ b/admin/picture_modify.php @@ -59,10 +59,11 @@ SELECT path if (isset($_POST['date_creation_action']) and 'set' == $_POST['date_creation_action']) { - if (!@checkdate( - $_POST['date_creation_month'], - $_POST['date_creation_day'], - $_POST['date_creation_year']) + if (!is_numeric($_POST['date_creation_year']) + or !checkdate( + $_POST['date_creation_month'], + $_POST['date_creation_day'], + $_POST['date_creation_year']) ) { array_push($page['errors'], l10n('wrong date')); -- cgit v1.2.3