mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
[ticket/12169] Convert user_from to profile field location
Missing changes on memberlist view due to missing functionality PHPBB3-12169
This commit is contained in:
@@ -1104,7 +1104,6 @@ while ($row = $db->sql_fetchrow($result))
|
||||
$user_cache_data = array(
|
||||
'joined' => '',
|
||||
'posts' => '',
|
||||
'from' => '',
|
||||
|
||||
'sig' => '',
|
||||
'sig_bbcode_uid' => '',
|
||||
@@ -1168,7 +1167,6 @@ while ($row = $db->sql_fetchrow($result))
|
||||
'joined' => $user->format_date($row['user_regdate']),
|
||||
'posts' => $row['user_posts'],
|
||||
'warnings' => (isset($row['user_warnings'])) ? $row['user_warnings'] : 0,
|
||||
'from' => (!empty($row['user_from'])) ? $row['user_from'] : '',
|
||||
|
||||
'sig' => $user_sig,
|
||||
'sig_bbcode_uid' => (!empty($row['user_sig_bbcode_uid'])) ? $row['user_sig_bbcode_uid'] : '',
|
||||
@@ -1617,7 +1615,6 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
|
||||
'RANK_IMG_SRC' => $user_cache[$poster_id]['rank_image_src'],
|
||||
'POSTER_JOINED' => $user_cache[$poster_id]['joined'],
|
||||
'POSTER_POSTS' => $user_cache[$poster_id]['posts'],
|
||||
'POSTER_FROM' => $user_cache[$poster_id]['from'],
|
||||
'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'],
|
||||
'POSTER_WARNINGS' => $user_cache[$poster_id]['warnings'],
|
||||
'POSTER_AGE' => $user_cache[$poster_id]['age'],
|
||||
|
Reference in New Issue
Block a user