1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/8309] Rename $last_visit to $last_activity

PHPBB3-8309
This commit is contained in:
geetakshi
2014-03-16 03:37:21 +05:30
parent 8c4604a78e
commit 0bf758f00f
3 changed files with 6 additions and 6 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_visit)) ? ' - ' : $user->format_date($last_visit),
'LAST_ACTIVITY' => (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),