aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2007-07-02 16:33:20 +0000
committerHenry Sudhof <kellanved@phpbb.com>2007-07-02 16:33:20 +0000
commitfbb8ae601ad3ca52faaa965b5b89c45c7f0ca409 (patch)
treee997441143ceb716498d5d168ec59d5b331d1233 /phpBB
parent4aa578c73de276a7ed05f842825409009576bd92 (diff)
downloadforums-fbb8ae601ad3ca52faaa965b5b89c45c7f0ca409.tar
forums-fbb8ae601ad3ca52faaa965b5b89c45c7f0ca409.tar.gz
forums-fbb8ae601ad3ca52faaa965b5b89c45c7f0ca409.tar.bz2
forums-fbb8ae601ad3ca52faaa965b5b89c45c7f0ca409.tar.xz
forums-fbb8ae601ad3ca52faaa965b5b89c45c7f0ca409.zip
#11349
git-svn-id: file:///svn/phpbb/trunk@7823 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/CHANGELOG.html5
-rw-r--r--phpBB/posting.php2
2 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index ad71833aa1..336e58b885 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -212,6 +212,11 @@ p a {
<li>[Fix] Simulate recache of theme data on automatic update finished page - recaching it if css data changed</li>
<li>[Feature] Allow dropping in custom &quot;info_[module class]_*.php&quot; files to language/*/mods directory for inclusion into the menu structure without the need to modify phpBB language files for menu placements</li>
<li>[Fix] Added login box to egosearch (Bug #12941)</li>
+ <li>[Fix] Deal with slashed quotes during quote bbcode conversion (Bug #12607)</li>
+ <li>[Fix] Minor language and style fixes (Bugs #12235, #12493, #11949)</li>
+ <li>[Feature] Added backlinks to mcp_report (Bug #12905)</li>
+ <li>[Fix] Only check usernames in guest posts upon edit (Bug #11349)</li>
+
</ul>
diff --git a/phpBB/posting.php b/phpBB/posting.php
index d2087df1f8..88de7fe2d4 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -720,7 +720,7 @@ if ($submit || $preview || $refresh)
}
// Validate username
- if (($post_data['username'] && !$user->data['is_registered']) || ($mode == 'edit' && $post_data['username'] && $post_data['post_username'] && $post_data['post_username'] != $post_data['username']))
+ if (($post_data['username'] && !$user->data['is_registered']) || ($mode == 'edit' && $post_data['poster_id'] == ANONYMOUS && $post_data['username'] && $post_data['post_username'] && $post_data['post_username'] != $post_data['username']))
{
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);