diff options
author | David M <davidmj@users.sourceforge.net> | 2007-10-04 04:42:39 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-10-04 04:42:39 +0000 |
commit | eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf (patch) | |
tree | f64ec2515929f1178f132a84847342fe1ffc4459 /phpBB/posting.php | |
parent | 4f094bdb48379d334a87b65b7c71eacad162a841 (diff) | |
download | forums-eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf.tar forums-eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf.tar.gz forums-eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf.tar.bz2 forums-eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf.tar.xz forums-eca02ecbf31ce9d33dc12ac9ea59809e1ad1a7bf.zip |
#i71
#i72
git-svn-id: file:///svn/phpbb/trunk@8128 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index fc401b865d..13b9eeb020 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -674,7 +674,7 @@ if ($submit || $preview || $refresh) $message_md5 = md5($message_parser->message); // Check checksum ... don't re-parse message if the same - $update_message = ($mode != 'edit' || $message_md5 != $post_data['post_checksum'] || $status_switch) ? true : false; + $update_message = ($mode != 'edit' || $message_md5 != $post_data['post_checksum'] || $status_switch || strlen($post_data['bbcode_uid']) < BBCODE_UID_LEN) ? true : false; // Parse message if ($update_message) |