[問題]發表人的連結
發表於 : 2004-08-31 17:47
發表人的連結如何拿掉,是不是這\phpBB2\viewforum.php檔的這三行,如果是的話,請問要如何修改,才能剩下「發表人」的名字,而沒有連結?
請各位先進指導一下,謝謝!$topic_author = ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['user_id']) . '">' : '';
$topic_author .= ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? $topic_rowset[$i]['username'] : ( ( $topic_rowset[$i]['post_username'] != '' ) ? $topic_rowset[$i]['post_username'] : $lang['Guest'] );
$topic_author .= ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? '</a>' : '';