diff options
author | PayBas <contact@paybas.com> | 2014-05-04 22:07:03 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-05-04 22:07:03 +0200 |
commit | cefeb7f752e59edc1c1a48f0e3563c2f090625b6 (patch) | |
tree | 09460341a6fbc56e8d4d5387e38477159a6a0647 /phpBB/viewtopic.php | |
parent | 2c5a2a13902975183ccf43c949aa9bc943641f06 (diff) | |
download | forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.gz forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.bz2 forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.tar.xz forums-cefeb7f752e59edc1c1a48f0e3563c2f090625b6.zip |
[ticket/12488] Removed <em> and removed anonymous check
PHPBB3-12488
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 789d7a2a19..34eee8bfc5 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1641,7 +1641,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) 'POSTER_JOINED' => $user_cache[$poster_id]['joined'], 'POSTER_POSTS' => $user_cache[$poster_id]['posts'], 'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'], - 'POSTER_WARNINGS' => ($auth->acl_get('m_warn') && $poster_id != ANONYMOUS) ? $user_cache[$poster_id]['warnings'] : '', + 'POSTER_WARNINGS' => $auth->acl_get('m_warn' ? $user_cache[$poster_id]['warnings'] : '', 'POSTER_AGE' => $user_cache[$poster_id]['age'], 'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false), |