aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2006-11-22 09:02:06 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2006-11-22 09:02:06 +0000
commitd416503a3984f2c732d151bd9f85d941689eb355 (patch)
treecb76c8e1b8c8471814921375da2a64d6bf36b2da /phpBB
parent1551f13bb239ae1f47176e82c804c0eaaa959623 (diff)
downloadforums-d416503a3984f2c732d151bd9f85d941689eb355.tar
forums-d416503a3984f2c732d151bd9f85d941689eb355.tar.gz
forums-d416503a3984f2c732d151bd9f85d941689eb355.tar.bz2
forums-d416503a3984f2c732d151bd9f85d941689eb355.tar.xz
forums-d416503a3984f2c732d151bd9f85d941689eb355.zip
Blah, making list bbcode button work again.
git-svn-id: file:///svn/phpbb/trunk@6632 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/styles/subSilver/template/editor.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/phpBB/styles/subSilver/template/editor.js b/phpBB/styles/subSilver/template/editor.js
index dcf9d2c2bb..a25c88b21e 100644
--- a/phpBB/styles/subSilver/template/editor.js
+++ b/phpBB/styles/subSilver/template/editor.js
@@ -305,17 +305,17 @@ function bbstyle(bbnumber)
if (donotinsert)
{
document.forms[form_name].addbbcode12.value = 'List=';
- tmp_help = o_help;
- o_help = e_help;
- e_help = tmp_help;
+ tmp_help = help_line['o'];
+ help_line['o'] = help_line['e'];
+ help_line['e'] = tmp_help;
bbtags[12] = '[list=]';
}
else
{
document.forms[form_name].addbbcode12.value = '[*]';
- tmp_help = o_help;
- o_help = e_help;
- e_help = tmp_help;
+ tmp_help = help_line['o'];
+ help_line['o'] = help_line['e'];
+ help_line['e'] = tmp_help;
bbtags[12] = '[*]';
}
}
@@ -325,17 +325,17 @@ function bbstyle(bbnumber)
if (donotinsert)
{
document.forms[form_name].addbbcode10.value = 'List';
- tmp_help = l_help;
- l_help = e_help;
- e_help = tmp_help;
+ tmp_help = help_line['l'];
+ help_line['l'] = help_line['e'];
+ help_line['e'] = tmp_help;
bbtags[10] = '[list]';
}
else
{
document.forms[form_name].addbbcode10.value = '[*]';
- tmp_help = l_help;
- l_help = e_help;
- e_help = tmp_help;
+ tmp_help = help_line['l'];
+ help_line['l'] = help_line['e'];
+ help_line['e'] = tmp_help;
bbtags[10] = '[*]';
}
}