phpbb2.0.7
想問一會簡單問題,外掛中有一段地方我想把它由文字改為圖片,請問怎樣修改呢?
(紅色字的地方)
代碼: 選擇全部
#
#------------Action: Open /includes/pageheader.php----------
#------------Action: Find-----------------------------------
"L_SEARCH_NEW" => $lang['Search_new'],
#------------Action: Add After------------------------------
//excerption Mod by Howard
"L_SEARCH_EXCERPTION" => $lang['Search_excerption'],
"L_SEARCH_EXCERPTION_FORUM" => $lang['Search_excerption_forum'],
//excerption Mod by Howard
#------------Action: Find-----------------------------------
"U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
#------------Action: Add After------------------------------
//excerption Mod by Howard
"U_SEARCH_EXCERPTION" => append_sid("search.".$phpEx."?search_id=excerption"),
//excerption Mod end
#------------Action: Save and close page_header.php---------
#
#------------Action: Open viewforum.php---------------------
#------------Action: Find-----------------------------------
"U_MARK_READ" => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id&mark=topics"))
#------------Action: Add Before-----------------------------
//Excerption Mod by Howard
"U_SEARCH_EXCERPTION_FORUM" => append_sid("search.$phpEx?search_id=excerption_forum&". POST_FORUM_URL . "=$forum_id"),
//Excerption Mod end
#------------ACTION: Find-----------------------------------
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];
#------------ACTION: Add after------------------------------
//Excerption Mod by Howard
if ($topic_rowset[$i]['topic_excerption'] == 1)
{
[color=red]$topic_title .= "<font color=red >[精華]</font>";[/color]
}
//Excerption Mod end
#------------Action: Save and Close viewforum.php-----------
