phpBB 2.0.20 [ 只包含修改檔案 ]
phpBB 2.0.20 [ 只包含 Patch 檔案 ]
phpBB 2.0.20 [ 代碼差異指示 ] 1.0.1 版
# [修正] Prevent login attempts from incrementing for inactive users
# [修正] Do not check maximum login attempts on re-authentication to the admin panel - tomknight
# [修正] Regenerate session keys on password change
# [修正] retrieving category rows in index.php (Bug #90)
# [修正] improved index performance by determining the permissions before iterating through all forums (Bug #91)
# [修正] Better handling of short usernames within the search (bug #105)
# [修正] Send a no-cache header on admin pages as well as normal board pages (Bug #149)
# [修正] Apply word censors to the message when quoting it (Bug #405)
# [修正] Improved performance of query in admin_groups (Bug #753)
# [修正] Workaround for an issue in either PHP or MSSQL resulting in a space being returned instead of an empty string (bug #830)
# [修正] Correct use of default_style config value (Bug #861)
# [修正] Replace unneeded unset calls in admin_db_utilities.php - vanderaj
# [修正] Improved error handling in modcp.php
# [修正] Improved handling of forums to which the user does not have any explicit permissions - vanderaj
# [修正] Assorted fixes and cleanup of admin_ranks.php, now requires confirmation of deletions
# [修正] Assorted fixes and cleanup of admin_words.php, now requires confirmation of deletions
# [修正] Addition and editing of smilies can no longer be performed via GET, now requires confirmation of deletions
# [修正] Escape group names in admin_groups.php
# [改變] Changed handling of the case where a selected style doesn't exist in the database
# [改變] Changed handling of topic pruning to improve performance
# [改變] Changed default forum permissions to only allow registered users to post in new forums
# [安全修正] Replace strip_tags with htmlspecialchars in private message subject
# [安全修正] Some changes to HTML handling if enabled
# [安全修正] Escape any special characters in reverse dns - Anthrax101
# [安全修正] Typecast poll id values - Anthrax101
# [安全修正] Added configurable search flood control to reduce the effect of DoS style attacks
# [安全修正] Changed the way we create "random" values for use as keys - chinchilla/Anthrax101
# [安全修正] Enabled Visual Confirmation by default
中文安裝指示網頁版
如果你遇到了引言時出現奇怪亂碼,修正如下:
打開 includes/fucntions_post.php
尋找
代碼: 選擇全部
$message = addslashes($message);
代碼: 選擇全部
$message = str_replace('"', '\\"', $message);