From 44eb61154e5ac98b0efd62657d2a7bfe3dc8f714 Mon Sep 17 00:00:00 2001 From: alopexc0de Date: Tue, 9 Oct 2012 03:02:17 -0400 Subject: [PATCH] Changed last modified to created on & date easier to read --- short/getfiles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/short/getfiles.php b/short/getfiles.php index 6e7b67c..783681a 100644 --- a/short/getfiles.php +++ b/short/getfiles.php @@ -6,7 +6,7 @@ if ($handle = opendir('.')) { { $last_modified = filemtime($file); //print(date("m/j/y h:i:s a", $last_modified)); - $thelist .= ''.$file.' Last Modified: '. date("m/j/y h:i:s a", $last_modified) .'
'; + $thelist .= ''.$file.' Created on: '. date("h:i a - m/j/y", $last_modified) .'
'; } } closedir($handle);