1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/8309] Removing key with similar function to avoid redundancy

PHPBB3-8309
This commit is contained in:
geetakshi
2014-03-17 21:08:03 +05:30
parent 6a1967514d
commit 66ed9881df
7 changed files with 7 additions and 8 deletions

View File

@@ -189,7 +189,7 @@ class ucp_main
$template->assign_vars(array(
'USER_COLOR' => (!empty($user->data['user_colour'])) ? $user->data['user_colour'] : '',
'JOINED' => $user->format_date($user->data['user_regdate']),
'LAST_ACTIVITY' => (empty($last_activity)) ? ' - ' : $user->format_date($last_activity),
'LAST_ACTIVE' => (empty($last_activity)) ? ' - ' : $user->format_date($last_activity),
'WARNINGS' => ($user->data['user_warnings']) ? $user->data['user_warnings'] : 0,
'POSTS' => ($user->data['user_posts']) ? $user->data['user_posts'] : 0,
'POSTS_DAY' => $user->lang('POST_DAY', $posts_per_day),