diff options
| author | Nils Adermann <naderman@naderman.de> | 2006-05-06 15:15:40 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2006-05-06 15:15:40 +0000 |
| commit | 2ee2701eb1740d6f908e1ba905c8f7ab78ded061 (patch) | |
| tree | d208b7b763e7293f71e013c69a00cd4ff78dde52 /phpBB/styles/subSilver/template/posting_body.html | |
| parent | 3640410cc0d753ab81612c7e5c914ecfb47b27fe (diff) | |
| download | forums-2ee2701eb1740d6f908e1ba905c8f7ab78ded061.tar forums-2ee2701eb1740d6f908e1ba905c8f7ab78ded061.tar.gz forums-2ee2701eb1740d6f908e1ba905c8f7ab78ded061.tar.bz2 forums-2ee2701eb1740d6f908e1ba905c8f7ab78ded061.tar.xz forums-2ee2701eb1740d6f908e1ba905c8f7ab78ded061.zip | |
- introduce LA_, UA_ and A_ template variables (they allow styles to use template variables used for javascript in subSilver outside javascript in their own template while they won't break our javascript if they contain quotes) also fixes [Bug #1116]
- corrected page title for search indexing progress bar [Bug #1695]
- correct poster name for the anonymous user in mcp_queue and mcp_reports
git-svn-id: file:///svn/phpbb/trunk@5888 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subSilver/template/posting_body.html')
| -rw-r--r-- | phpBB/styles/subSilver/template/posting_body.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/phpBB/styles/subSilver/template/posting_body.html b/phpBB/styles/subSilver/template/posting_body.html index 077e60270e..a0246e7b3a 100644 --- a/phpBB/styles/subSilver/template/posting_body.html +++ b/phpBB/styles/subSilver/template/posting_body.html @@ -16,24 +16,24 @@ bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]',' imageTag = false; // Helpline messages -b_help = "{L_BBCODE_B_HELP}"; -i_help = "{L_BBCODE_I_HELP}"; -u_help = "{L_BBCODE_U_HELP}"; -q_help = "{L_BBCODE_Q_HELP}"; -c_help = "{L_BBCODE_C_HELP}"; -l_help = "{L_BBCODE_L_HELP}"; -o_help = "{L_BBCODE_O_HELP}"; -p_help = "{L_BBCODE_P_HELP}"; -w_help = "{L_BBCODE_W_HELP}"; -a_help = "{L_BBCODE_A_HELP}"; -s_help = "{L_BBCODE_S_HELP}"; -f_help = "{L_BBCODE_F_HELP}"; -e_help = "{L_BBCODE_E_HELP}"; +b_help = "{LA_BBCODE_B_HELP}"; +i_help = "{LA_BBCODE_I_HELP}"; +u_help = "{LA_BBCODE_U_HELP}"; +q_help = "{LA_BBCODE_Q_HELP}"; +c_help = "{LA_BBCODE_C_HELP}"; +l_help = "{LA_BBCODE_L_HELP}"; +o_help = "{LA_BBCODE_O_HELP}"; +p_help = "{LA_BBCODE_P_HELP}"; +w_help = "{LA_BBCODE_W_HELP}"; +a_help = "{LA_BBCODE_A_HELP}"; +s_help = "{LA_BBCODE_S_HELP}"; +f_help = "{LA_BBCODE_F_HELP}"; +e_help = "{LA_BBCODE_E_HELP}"; function checkForm() { if (document.post.message.value.length < 2) { - alert('{L_EMPTY_MESSAGE}'); + alert('{LA_EMPTY_MESSAGE}'); return false; } else { // document.post.post.disabled = true; @@ -217,7 +217,7 @@ function checkForm() <td class="gensmall" align="center"><b>{L_SMILIES}</b></td> </tr> <tr> - <td align="center"><!-- BEGIN smiley --><a href="javascript:smiley('{smiley.SMILEY_CODE}')" style="line-height: 20px;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" border="0" alt="{smiley.SMILEY_DESC}" title="{smiley.SMILEY_DESC}" onclick="smiley('{smiley.SMILEY_CODE}');return false" hspace="2" vspace="2" /></a> <!-- END smiley --></td> + <td align="center"><!-- BEGIN smiley --><a href="javascript:smiley('{smiley.A_SMILEY_CODE}')" style="line-height: 20px;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" border="0" alt="{smiley.SMILEY_DESC}" title="{smiley.SMILEY_DESC}" onclick="smiley('{smiley.A_SMILEY_CODE}');return false" hspace="2" vspace="2" /></a> <!-- END smiley --></td> </tr> <!-- IF S_SHOW_SMILEY_LINK --> |
