hello,
how can one add reply button next to the delete button
regard
hello,
how can one add reply button next to the delete button
regard |
Are you testing with a message sent to yourself? if($aRow['Sender'] != $this -> aMailBoxSettings['member_id']){
$aForm['inputs']['actions'][0] = array(
'type' => 'button',
'value' => $aLanguageKeys['reply_message'],
'attrs' => array('onclick' => 'oMailBoxViewMessage.replyMessage(' . $this -> aMailBoxSettings['messageID'] . ', ' . $aRow['Sender'] . ');', 'class' => 'bx-btn-small'),
);
}
|
ok thank's so much |