Have checked again. nothing shows up
Here is what i have done:
Memberlist.php
Find
Code: Select all
selected="selected"' : '') . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
}
$db->sql_freeresult($result);
Code: Select all
selected="selected"' : '') . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
}
$db->sql_freeresult($result);
// Start Recent
$sql = $db->sql_build_query('SELECT', array(
'SELECT' => 'p.poster_id, p.post_subject,p.post_id, p.post_time ,p.post_text, p.bbcode_uid, p.bbcode_bitfield, p.enable_smilies,p.enable_bbcode,p.enable_magic_url,t.topic_replies, t.topic_views, t.forum_id',
'FROM' => array(
POSTS_TABLE => 'p',
),
'LEFT_JOIN' => array(
array(
'FROM' => array(TOPICS_TABLE => 't'),
'ON' => 'p.poster_id ='.$user_id,
)
),
'WHERE' => 'p.topic_id = t.topic_id',
'ORDER_BY' => 'p.post_id DESC'
));
$limit = $config['number_recent_activity'];
$result = $db->sql_query_limit($sql, $limit);
while($row = $db->sql_fetchrow($result))
{
if($auth->acl_get('f_read', $row['forum_id']))
{
$row['bbcode_options'] = (($row['enable_bbcode']) ? OPTION_FLAG_BBCODE : 0) +
(($row['enable_smilies']) ? OPTION_FLAG_SMILIES : 0) +
(($row['enable_magic_url']) ? OPTION_FLAG_LINKS : 0);
$poster_id = $row['poster_id'];
$post_id = $row['post_id'];
$text = generate_text_for_display($row['post_text'], $row['bbcode_uid'], $row['bbcode_bitfield'], $row['bbcode_options']);
$post_text = strip_bbcode($text);
$template->assign_block_vars('post', array(
'SUBJECT' => $row['post_subject'],
'TIME' => $user->format_date($row['post_time']),
'POST_TEXT' => truncate_string($text, intval($config['number_char_post'])),
'REPLIES' => $row['topic_replies'],
'VIEWS' => $row['topic_views'],
'U_POSTS' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "p=$post_id#p$post_id"),
));
}
}
$db->sql_freeresult($result);
// Stop User Recent
Find
Code: Select all
'L_POSTS_IN_QUEUE' => $user->lang('NUM_POSTS_IN_QUEUE', $member['posts_in_queue']),
Code: Select all
// Start User Recent
'ENABLE_RECENT' => $config['allow_recent_activity'],
'ENABLE_RECENT_POST' => $config['show_recent_post'],
'LAST_POST_IMG' => $user->img('icon_topic_latest', 'VIEW_LATEST_POST'),
// Stop User Recent
'L_POSTS_IN_QUEUE' => $user->lang('NUM_POSTS_IN_QUEUE', $member['posts_in_queue']),
Open: includes/acp/acp_board.php
Code: Select all
'allow_birthdays' => array('lang' => 'ALLOW_BIRTHDAYS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
Add After
Code: Select all
'allow_birthdays' => array('lang' => 'ALLOW_BIRTHDAYS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'allow_recent_activity' => array('lang' => 'ALLOW_RECENT_ACTIVITY', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'number_recent_activity' => array('lang' => 'NUMBER_RECENT_ACTIVITY', 'validate' => 'string', 'type' => 'text:1:3', 'explain' => true),
'show_recent_post' => array('lang' => 'SHOW_RECENT_POST', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'number_char_post' => array('lang' => 'NUMBER_CHAR_POST', 'validate' => 'string', 'type' => 'text:1:4', 'explain' => true),
Open: styles/prosilver/template/memberlist_view.html
I have choosen to add it here
Code: Select all
<!-- IF SIGNATURE -->
<div class="panel bg1">
<div class="inner"><span class="corners-top"><span></span></span>
<h3>{L_SIGNATURE}</h3>
<div class="postbody"><div class="signature" style="border-top:none; margin-top: 0;">{SIGNATURE}</div></div>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
</form>
<!-- IF POSTS && ENABLE_RECENT -->
<div class="forumbg">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="topiclist">
<li class="header">
<dl>
<dt>{USERNAME}'s {L_RECENT_ACTIVITY}
</dt>
<dd class="posts">{L_REPLIES}</dd>
<dd class="views">{L_VIEWS}</dd>
<dd class="lastpost"><span>{L_DATE}</span></dd>
</dl>
</li>
</ul>
<!-- BEGIN post -->
<ul class="topiclist forums">
<li class="row">
<dl>
<dt><a href="{post.U_POSTS}">{post.SUBJECT}</a><br />
<!-- IF ENABLE_RECENT_POST --> <font style="font-style:italic">{post.POST_TEXT}...</font> <!-- ENDIF -->
</dt>
<dd class="posts"> <dfn>{L_REPLIES}</dfn>{post.REPLIES}</dd>
<dd class="views"><dfn>{L_VIEWS}</dfn>{post.VIEWS}</dd>
<dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{post.TIME} <a href="{post.U_POSTS}">{LAST_POST_IMG}</a></dd>
</dl>
</li>
</ul>
<!-- END post -->
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
Recent_ACP.png