文章由 psycho » 2005-09-11, 16:10
我的修改內容:
posting.php,第679行附近:
// psycho edit chang
$username = str_replace("\'", "''", $username);
$subject = str_replace("\'", "''", $subject);
$message = str_replace("\'", "''", $message);
$poll_title = str_replace("\'", "''", $poll_title);
// END of psycho
submit_post($mode, $post_data, $return_message, $return_meta, $forum_id, $topic_id, $post_id, $poll_id, $topic_type, $bbcode_on, $html_on, $smilies_on, $attach_sig, $bbcode_uid, $username, $subject, $message, $poll_title, $poll_options, $poll_length);
functions_search.php,第679行附近:
$search_raw_words = array();
// CHANG BY PSYCHO
$search_raw_words['text'] = clean_words('post', $post_text, $stopword_array, $synonym_array);
$search_raw_words['title'] = clean_words('post', $post_title, $stopword_array, $synonym_array);
$search_raw_words['text'] = split_words($search_raw_words['text']);
$search_raw_words['title'] = split_words($search_raw_words['title']);
//
// $search_raw_words['text'] = split_words(clean_words('post', $post_text, $stopword_array, $synonym_array));
// $search_raw_words['title'] = split_words(clean_words('post', $post_title, $stopword_array, $synonym_array));
//