From 9fa95d5b23018dceec9cb0d4a6ac3a92a36907cd Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 17 Dec 2016 16:35:14 +0000 Subject: [PATCH] changed the date/time format in the project home view --- codepot/src/codepot/views/project_home.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/codepot/src/codepot/views/project_home.php b/codepot/src/codepot/views/project_home.php index 03da1f41..4e238303 100644 --- a/codepot/src/codepot/views/project_home.php +++ b/codepot/src/codepot/views/project_home.php @@ -219,8 +219,7 @@ foreach ($urls as $url) $xdot = $this->converter->AsciiToHex ('.'); foreach ($log_entries as $log) { - - $createdon_mmdd = codepot_dbdatetodispdate ($log['createdon'], 'Y-m-d'); + $createdon = codepot_dbdatetodispdate ($log['createdon'], 'Y-m-d H:i'); if ($log['type'] == 'code') { @@ -228,7 +227,7 @@ foreach ($urls as $url) print ''; print ''; - print $createdon_mmdd; + print $createdon; print ''; print ''; print anchor ( @@ -271,7 +270,7 @@ foreach ($urls as $url) { print ''; print ''; - print $createdon_mmdd; + print $createdon; print ''; print '';