aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2009-02-15 18:47:00 +0000
committerChris Smith <toonarmy@phpbb.com>2009-02-15 18:47:00 +0000
commit7d848718a4c7586dc3b0dc4ae455069085f3d856 (patch)
tree9f7866bc1850c431407c1ad16beac58094063ed1 /phpBB
parent07523011d2a31459ae480def55240f73248cd301 (diff)
downloadforums-7d848718a4c7586dc3b0dc4ae455069085f3d856.tar
forums-7d848718a4c7586dc3b0dc4ae455069085f3d856.tar.gz
forums-7d848718a4c7586dc3b0dc4ae455069085f3d856.tar.bz2
forums-7d848718a4c7586dc3b0dc4ae455069085f3d856.tar.xz
forums-7d848718a4c7586dc3b0dc4ae455069085f3d856.zip
tiny tiny changes to r9328
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9329 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/CHANGELOG.html2
-rw-r--r--phpBB/includes/functions_display.php2
2 files changed, 2 insertions, 2 deletions
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 @@
<li>[Change] Default difference view is now 'inline' instead of 'side by side'</li>
<li>[Change] Added new option for merging differences to conflicting files in automatic updater</li>
<li>[Change] Added new options for visual confirmation.</li>
- <li>[Feature] Allow translation of Custom BBCode help messages. (Patch by bantu)</li>
+ <li>[Feature] Allow translation of custom BBCode help messages. (Patch by bantu)</li>
</ul>
<a name="v303"></a><h3>1.ii. Changes since 3.0.3</h3>
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'])];