Modified:Fixed reply button option on sent messages section
This commit is contained in:
parent
98567268ff
commit
a41879c027
1 changed files with 6 additions and 2 deletions
|
@ -19,7 +19,9 @@
|
||||||
<td>{lang code='subject'}</td>
|
<td>{lang code='subject'}</td>
|
||||||
<td width="100">{lang code='date_sent'}</td>
|
<td width="100">{lang code='date_sent'}</td>
|
||||||
<td>{lang code='date_added'}</td>
|
<td>{lang code='date_added'}</td>
|
||||||
<td>{lang code='Reply'}</td>
|
{if $mode =='inbox'}
|
||||||
|
<td width="75">{lang code='Reply'}</td>
|
||||||
|
{/if}
|
||||||
</tr>
|
</tr>
|
||||||
{section name=msg loop=$user_msgs}
|
{section name=msg loop=$user_msgs}
|
||||||
<tr id="message-{$user_msgs[msg].message_id}">
|
<tr id="message-{$user_msgs[msg].message_id}">
|
||||||
|
@ -36,7 +38,7 @@
|
||||||
<a href="?mode={$mode}&mid={$user_msgs[msg].message_id}">
|
<a href="?mode={$mode}&mid={$user_msgs[msg].message_id}">
|
||||||
{$to_id = $user_msgs[msg].message_to}
|
{$to_id = $user_msgs[msg].message_to}
|
||||||
{$trimed_to = str_replace('#','', $to_id)}
|
{$trimed_to = str_replace('#','', $to_id)}
|
||||||
|
|
||||||
{ucfirst(get_username($trimed_to))}
|
{ucfirst(get_username($trimed_to))}
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
|
@ -51,7 +53,9 @@
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{$user_msgs[msg].date_added}</td>
|
<td>{$user_msgs[msg].date_added}</td>
|
||||||
|
{if $mode =='inbox'}
|
||||||
<td><a href="{$baseurl}/private_message.php?mode=new_msg&to={$user_msgs[msg].message_from_user}" class="btn btn-primary" title="">{lang code=' Reply '}</a></td>
|
<td><a href="{$baseurl}/private_message.php?mode=new_msg&to={$user_msgs[msg].message_from_user}" class="btn btn-primary" title="">{lang code=' Reply '}</a></td>
|
||||||
|
{/if}
|
||||||
</tr>
|
</tr>
|
||||||
{sectionelse}
|
{sectionelse}
|
||||||
<strong><em>{lang code='you_dont_hv_any_pm'}</em></strong>
|
<strong><em>{lang code='you_dont_hv_any_pm'}</em></strong>
|
||||||
|
|
Loading…
Add table
Reference in a new issue