1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 13:30:25 +02:00

Fixed bug # 42885 - "Select all" selects much too much in Opera

Authorised by: acydburn

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9422 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Jim Wigginton
2009-04-01 22:37:50 +00:00
parent 70c7e59f66
commit b9f426355c
2 changed files with 2 additions and 1 deletions

View File

@@ -453,7 +453,7 @@ class bbcode_firstpass extends bbcode
break;
default:
return '[code:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars($code) . '[/code:' . $this->bbcode_uid . ']';
return '[code:' . $this->bbcode_uid . ']' . $this->bbcode_specialchars(trim($code)) . '[/code:' . $this->bbcode_uid . ']';
break;
}
}