aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-11-30 16:53:36 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-11-30 16:53:36 +0000
commit7752023b44d1b9283d9b5d6d6294d783b5ba42dc (patch)
tree802b481ebb4b8a70a963a8236d9e85a5856fb3ad /phpBB/viewtopic.php
parenta752a424de3d250c2bc79f7b680c936fc9ea987f (diff)
downloadforums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar
forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.gz
forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.bz2
forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.xz
forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.zip
force full date on "edited by" line. ;)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9138 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index b7b130bbd1..995874b6b5 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1348,7 +1348,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
$display_username = get_username_string('full', $row['post_edit_user'], $post_edit_list[$row['post_edit_user']]['username'], $post_edit_list[$row['post_edit_user']]['user_colour']);
}
- $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time']), $row['post_edit_count']);
+ $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']);
}
else
{
@@ -1367,7 +1367,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
$display_username = get_username_string('full', $row['post_edit_user'], $user_cache[$row['post_edit_user']]['username'], $user_cache[$row['post_edit_user']]['user_colour']);
}
- $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time']), $row['post_edit_count']);
+ $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']);
}
}
else