mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Blah, making list bbcode button work again.
git-svn-id: file:///svn/phpbb/trunk@6632 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
1551f13bb2
commit
d416503a39
1 changed files with 12 additions and 12 deletions
|
@ -305,17 +305,17 @@ function bbstyle(bbnumber)
|
||||||
if (donotinsert)
|
if (donotinsert)
|
||||||
{
|
{
|
||||||
document.forms[form_name].addbbcode12.value = 'List=';
|
document.forms[form_name].addbbcode12.value = 'List=';
|
||||||
tmp_help = o_help;
|
tmp_help = help_line['o'];
|
||||||
o_help = e_help;
|
help_line['o'] = help_line['e'];
|
||||||
e_help = tmp_help;
|
help_line['e'] = tmp_help;
|
||||||
bbtags[12] = '[list=]';
|
bbtags[12] = '[list=]';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
document.forms[form_name].addbbcode12.value = '[*]';
|
document.forms[form_name].addbbcode12.value = '[*]';
|
||||||
tmp_help = o_help;
|
tmp_help = help_line['o'];
|
||||||
o_help = e_help;
|
help_line['o'] = help_line['e'];
|
||||||
e_help = tmp_help;
|
help_line['e'] = tmp_help;
|
||||||
bbtags[12] = '[*]';
|
bbtags[12] = '[*]';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -325,17 +325,17 @@ function bbstyle(bbnumber)
|
||||||
if (donotinsert)
|
if (donotinsert)
|
||||||
{
|
{
|
||||||
document.forms[form_name].addbbcode10.value = 'List';
|
document.forms[form_name].addbbcode10.value = 'List';
|
||||||
tmp_help = l_help;
|
tmp_help = help_line['l'];
|
||||||
l_help = e_help;
|
help_line['l'] = help_line['e'];
|
||||||
e_help = tmp_help;
|
help_line['e'] = tmp_help;
|
||||||
bbtags[10] = '[list]';
|
bbtags[10] = '[list]';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
document.forms[form_name].addbbcode10.value = '[*]';
|
document.forms[form_name].addbbcode10.value = '[*]';
|
||||||
tmp_help = l_help;
|
tmp_help = help_line['l'];
|
||||||
l_help = e_help;
|
help_line['l'] = help_line['e'];
|
||||||
e_help = tmp_help;
|
help_line['e'] = tmp_help;
|
||||||
bbtags[10] = '[*]';
|
bbtags[10] = '[*]';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue