aboutsummaryrefslogtreecommitdiffstats
path: root/upload.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-08-21 13:03:49 +0000
committerz0rglub <z0rglub@piwigo.org>2004-08-21 13:03:49 +0000
commita5b9e275a16b112a51f326fd9ffb908f14fa704f (patch)
tree907535c8fccaf630f3caf16ddcaf36907b6d6ae7 /upload.php
parent52a84354935f3d6b3da3e0adc484219139349377 (diff)
date in ISO standard
git-svn-id: http://piwigo.org/svn/trunk@488 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'upload.php')
-rw-r--r--upload.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/upload.php b/upload.php
index 190e1df11..eccdced6a 100644
--- a/upload.php
+++ b/upload.php
@@ -168,11 +168,9 @@ if ( isset( $_POST['submit'] ) and !isset( $_GET['waiting_id'] ) )
{
list( $day,$month,$year ) = explode( '/', $_POST['date_creation'] );
// int checkdate ( int month, int day, int year)
- if ( checkdate( $month, $day, $year ) )
+ if (checkdate($month, $day, $year))
{
- // int mktime ( int hour, int minute, int second,
- // int month, int day, int year [, int is_dst])
- $date_creation = mktime( 0, 0, 0, $month, $day, $year );
+ $date_creation = $year.'-'.$month.'-'.$day;
}
else
{
@@ -181,7 +179,7 @@ if ( isset( $_POST['submit'] ) and !isset( $_GET['waiting_id'] ) )
}
// creation of the "infos" field :
// <infos author="Pierrick LE GALL" comment="my comment"
- // date_creation="1056891767" name="" />
+ // date_creation="2004-08-14" name="" />
$xml_infos = '<infos';
$xml_infos.= ' author="'.htmlspecialchars($_POST['author'],ENT_QUOTES).'"';
$xml_infos.= ' comment="'.htmlspecialchars($_POST['comment'],ENT_QUOTES).'"';