diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index b56435b57b..97de7585f0 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -105,7 +105,7 @@
  • [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
  • [Change] Added new options for visual confirmation.
  • -
  • [Feature] Allow translation of Custom BBCode help messages. (Patch by bantu)
  • +
  • [Feature] Allow translation of custom BBCode help messages. (Patch by bantu)
  • 1.ii. Changes since 3.0.3

    diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index a09434234e..ab003f8c65 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -860,7 +860,7 @@ function display_custom_bbcodes() $i = 0; while ($row = $db->sql_fetchrow($result)) { - // If the helpline is defined within the language file, we will use the localized version, else just use the database entry... + // If the helpline is defined within the language file, we will use the localised version, else just use the database entry... if (isset($user->lang[strtoupper($row['bbcode_helpline'])])) { $row['bbcode_helpline'] = $user->lang[strtoupper($row['bbcode_helpline'])];