mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
When making a Jabber message, the page says the message has been sent when loading the page for the first time, This message should only be shown after the message has actually been sent PHPBB3-14046
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!-- INCLUDE simple_header.html -->
|
|
|
|
<br clear="all" />
|
|
|
|
<form method="post" action="{S_IM_ACTION}">
|
|
<table class="tablebg" width="95%" cellspacing="1" cellpadding="4" border="0" align="center">
|
|
<tr>
|
|
<th colspan="2">{L_SEND_IM}</th>
|
|
</tr>
|
|
<!-- IF S_SENT_JABBER -->
|
|
<tr>
|
|
<td class="row1" colspan="2" align="center"><span class="gen">{L_IM_SENT_JABBER}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td class="row3" colspan="2"><span class="gensmall">{L_SEND_IM_EXPLAIN}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1"><b class="genmed">{L_IM_RECIPIENT}{L_COLON} </b></td>
|
|
<td class="row2"><span class="gen"><b>{USERNAME}</b><!-- IF S_NO_SEND_JABBER --> [ {IM_CONTACT} ]<!-- ENDIF --></span> <!-- IF PRESENCE_IMG -->{PRESENCE_IMG}<!-- ENDIF --></td>
|
|
</tr>
|
|
|
|
<!-- IF S_SEND_JABBER -->
|
|
<tr>
|
|
<td class="row1"><b class="genmed">{L_IM_MESSAGE}{L_COLON} </b></td>
|
|
<td class="row2"><textarea class="post" name="message" rows="5" cols="45"></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" colspan="2" align="center"><input class="btnmain" name="submit" type="submit" value="{L_IM_SEND}" /></td>
|
|
</tr>
|
|
<!-- ELSEIF S_NO_SEND_JABBER -->
|
|
<tr>
|
|
<td class="row1" colspan="2"><span class="genmed">{L_IM_NO_JABBER}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
|
|
</table>
|
|
{S_FORM_TOKEN}
|
|
</form>
|
|
|
|
<a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
|
|
|
<!-- INCLUDE simple_footer.html -->
|