Corretion of PHP warnings

git-svn-id: http://piwigo.org/svn/branches/release-1_3@279 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
gweltas
2004-01-15 00:11:00 +00:00
parent fb880db771
commit 855398f63e
5 changed files with 21 additions and 27 deletions
+1 -1
View File
@@ -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 );
}