diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index eb6a958dfb..3aa8cc942f 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -119,7 +119,6 @@
[Fix] Fix native full text search on postgresql while using excluding keyword matches. (Bug #19195)
[Fix] Pass S_SEARCH_ACTION through append_sid() in search.php. (Bug #21585)
[Fix] Correctly delete message attachments. (Bug #23755)
- [Fix] Support (and retain) tabs in code blocks. (Bug #25445)
[Fix] Correctly handle unread status of subforums (that are not shown on the index) of forums that are shown on the index. (Bug #14589)
[Fix] Stop users from deleting posts after the edit time has passed or they have been locked. (Bug #19115)
[Fix] Split posts target forum requires 'f_post' now instead of 'm_split'. (Bug #31015)
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php
index 09830ac97e..fd8fadf3a7 100644
--- a/phpBB/includes/bbcode.php
+++ b/phpBB/includes/bbcode.php
@@ -581,10 +581,10 @@ class bbcode
// no break;
default:
-/* $code = str_replace("\t", ' ', $code);
+ $code = str_replace("\t", ' ', $code);
$code = str_replace(' ', ' ', $code);
$code = str_replace(' ', ' ', $code);
-*/
+
// remove newline at the beginning
if (!empty($code) && $code[0] == "\n")
{
diff --git a/phpBB/styles/prosilver/template/bbcode.html b/phpBB/styles/prosilver/template/bbcode.html
index 9c6a640ef4..bb90c46ced 100644
--- a/phpBB/styles/prosilver/template/bbcode.html
+++ b/phpBB/styles/prosilver/template/bbcode.html
@@ -12,8 +12,8 @@
-- {L_CODE}: {L_SELECT_ALL_CODE}
-
+- {L_CODE}: {L_SELECT_ALL_CODE}
+
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index 98c5d3fbb3..936b53f78a 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -467,11 +467,12 @@ blockquote dl.codebox {
}
dl.codebox code {
+ /* Also see tweaks.css */
overflow: auto;
display: block;
height: auto;
max-height: 200px;
- /* white-space: normal; */
+ white-space: normal;
padding-top: 5px;
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
line-height: 1.3em;
diff --git a/phpBB/styles/subsilver2/template/bbcode.html b/phpBB/styles/subsilver2/template/bbcode.html
index 0e95fdbcf3..50162740d0 100644
--- a/phpBB/styles/subsilver2/template/bbcode.html
+++ b/phpBB/styles/subsilver2/template/bbcode.html
@@ -21,11 +21,11 @@
-{L_CODE}: