mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/8173] Removed some redundant code in the BBCode JavaScript.
The following code can be found in the ACP, when changing a user's
signature:
t: '{ BBCODE_T_HELP }',
The code that uses it and the code that produces it were changed or
removed a while ago, but this code remained. In 2c4c1f9
, the accesskey
for the list item button was changed to y from t, explaining the origin of
the redundant code - although it wasn't being used then, either.
This commit also changes the helpline code of "[*]" to y, as the access
key is y, so this makes it more consistent.
PHPBB3-8173
This commit is contained in:
committed by
callumacrae
parent
e4707a8be7
commit
9c6339fb57
@@ -48,7 +48,7 @@ $lang = array_merge($lang, array(
|
||||
'BBCODE_A_HELP' => 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',
|
||||
'BBCODE_B_HELP' => 'Bold text: [b]text[/b]',
|
||||
'BBCODE_C_HELP' => 'Code display: [code]code[/code]',
|
||||
'BBCODE_E_HELP' => 'List: Add list element',
|
||||
'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash]',
|
||||
'BBCODE_F_HELP' => 'Font size: [size=85]small text[/size]',
|
||||
'BBCODE_IS_OFF' => '%sBBCode%s is <em>OFF</em>',
|
||||
'BBCODE_IS_ON' => '%sBBCode%s is <em>ON</em>',
|
||||
@@ -61,7 +61,7 @@ $lang = array_merge($lang, array(
|
||||
'BBCODE_S_HELP' => 'Font colour: [color=red]text[/color] Tip: you can also use color=#FF0000',
|
||||
'BBCODE_U_HELP' => 'Underline text: [u]text[/u]',
|
||||
'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]',
|
||||
'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash]',
|
||||
'BBCODE_Y_HELP' => 'List: Add list element',
|
||||
'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.',
|
||||
|
||||
'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.',
|
||||
|
Reference in New Issue
Block a user