aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-01-15 00:11:00 +0000
committergweltas <gweltas@piwigo.org>2004-01-15 00:11:00 +0000
commit855398f63e4215ed16413a89f781dd2f6cffa231 (patch)
treeb1c34cc609930352612e9e2ffbc88d91c33e9890 /admin/include
parentfb880db771f2ceb361fa8d8a1b065b1a564f3e52 (diff)
Corretion of PHP warnings
git-svn-id: http://piwigo.org/svn/branches/release-1_3@279 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include')
-rw-r--r--admin/include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index ecab3782f..ea2669cb0 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -431,7 +431,7 @@ function update_category( $id = 'all' )
function check_date_format( $date )
{
// date arrives at this format : DD/MM/YYYY
- list($day,$month,$year) = explode( '/', $date );
+ @list($day,$month,$year) = explode( '/', $date );
return @checkdate( $month, $day, $year );
}