* Task#4006

This commit is contained in:
滔哥
2018-05-11 09:50:13 +08:00
parent 725c676d5c
commit 1b1a03a334
+10 -9
View File
@@ -61,15 +61,16 @@
</td>
</tr>
<tr>
<td colspan='2' class='text-center'>
<?php
echo html::submitButton();
if($this->config->mail->turnon and $mailExist) echo html::linkButton($lang->mail->test, inlink('test'));
echo html::linkButton($lang->mail->reset, inlink('reset'));
if(common::hasPriv('mail', 'browse') and !empty($config->mail->async) and !empty($config->global->cron)) echo html::linkButton($lang->mail->browse, inlink('browse'));
?>
</td>
</tr>
<td></td>
<td colspan='4' class='text-left'>
<?php
echo html::submitButton('', '', 'btn btn-primary btn-wide');
if($this->config->mail->turnon and $mailExist) echo html::linkButton($lang->mail->test, inlink('test'), '', '', 'btn btn-wide');
echo html::linkButton($lang->mail->reset, inlink('reset'), '', '', 'btn btn-wide');
if(common::hasPriv('mail', 'browse') and !empty($config->mail->async) and !empty($config->global->cron)) echo html::linkButton($lang->mail->browse, inlink('browse'), '', '', 'btn btn-wide');
?>
</td>
</tr>
</table>
</form>
<?php endif;?>