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

revert r8893 - there were massive problems with the display and select all code

git-svn-id: file:///svn/phpbb/trunk@8954 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2008-09-28 17:09:20 +00:00
parent c439b286e9
commit f3844a17f7
4 changed files with 10 additions and 5 deletions

View File

@@ -570,6 +570,10 @@ class bbcode
// no break;
default:
$code = str_replace("\t", '   ', $code);
$code = str_replace(' ', '  ', $code);
$code = str_replace(' ', '  ', $code);
// remove newline at the beginning
if (!empty($code) && $code[0] == "\n")
{