diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-22 10:15:30 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-22 10:15:30 -0500 |
commit | 30ed315fc879dcb77d07cec46c59e061b90fb8be (patch) | |
tree | 348e7c4ced2993071d5e8f6b67b88aca923b6829 | |
parent | fa4f58be8ee450762765d3a0a14b0bdcc1744d41 (diff) | |
download | pillowcase-30ed315fc879dcb77d07cec46c59e061b90fb8be.tar.gz pillowcase-30ed315fc879dcb77d07cec46c59e061b90fb8be.tar.bz2 pillowcase-30ed315fc879dcb77d07cec46c59e061b90fb8be.zip |
Changed time display to 12 hour time
-rwxr-xr-x | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php index e10ee98..d1178a0 100755 --- a/index.php +++ b/index.php | |||
@@ -15,7 +15,7 @@ $getimage3 = mysql_fetch_array($getimage2); | |||
15 | 15 | ||
16 | ?> | 16 | ?> |
17 | <DIV CLASS="post"> | 17 | <DIV CLASS="post"> |
18 | <DIV CLASS="date" TITLE="<?php echo(date('F jS Y H:i:s', strtotime($getimage3['pubDate']))); ?>"> | 18 | <DIV CLASS="date" TITLE="<?php echo(date('F jS Y g:i a', strtotime($getimage3['pubDate']))); ?>"> |
19 | <?php echo(date('M',strtotime($getimage3['pubDate']))); ?><BR> | 19 | <?php echo(date('M',strtotime($getimage3['pubDate']))); ?><BR> |
20 | <?php echo(date('j',strtotime($getimage3['pubDate']))); ?><BR> | 20 | <?php echo(date('j',strtotime($getimage3['pubDate']))); ?><BR> |
21 | <?php echo(date('Y',strtotime($getimage3['pubDate']))); ?> | 21 | <?php echo(date('Y',strtotime($getimage3['pubDate']))); ?> |