version: 2.2.2
file: UPLOAD\app\question\main.php
line: 142
if ($_GET['column'] != 'log')
{
$this->model('question')->calc_popular_value($question_info['question_id']);
$this->model('question')->update_views($question_info['question_id']);
if (is_numeric($_GET['uid'])) // 这一行
{
$answer_list_where[] = 'uid = ' . intval($_GET['uid']);
$answer_count_where = 'uid = ' . intval($_GET['uid']);
}
else if ($_GET['uid'] == 'focus' and $this->user_id)
{
if ($friends = $this->model('follow')->get_user_friends($this->user_id, false))
{
foreach ($friends as $key => $val)
{
$follow_uids[] = $val['uid'];
上面注释的那行代码像是只看某用户的回复。但是我在网站上操作没有找到这个功能,倒是只看“关注”用户的回复这些功能。
请教做什么操作的时候会出现 if (is_numeric($_GET['uid'])) 为真的情况?
阅读全文
收起全文