diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index c0df48416c..d8a5432113 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -135,7 +135,6 @@
[Fix] Sort backups by date, newest first (Bug #14818)
[Fix] Prevent incomplete backups stored if option "store and download" is selected and admin cancel download by removing the option. (Bug #20325)
[Fix] Enforce correct case for template variables
- [Fix] "Select all" selects much too much in Opera (Bug #42885 - Patch by TerraFrost)
[Change] Allow download of conflicting file for later reference in automatic updater
[Change] Default difference view is now 'inline' instead of 'side by side'
[Change] Added new option for merging differences to conflicting files in automatic updater
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index 2f72ad8fdc..ed09cfa6bd 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -453,7 +453,7 @@ class bbcode_firstpass extends bbcode
break;
default:
- return '[code:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars(trim($code)) . '[/code:' . $this->bbcode_uid . ']';
+ return '[code:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($code) . '[/code:' . $this->bbcode_uid . ']';
break;
}
}