fix a bug for async mail.

This commit is contained in:
wangyidong
2015-03-13 13:33:30 +08:00
parent be5b818787
commit c4ade54fc3
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ include '../../common/view/header.html.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'));
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>