* finish task #2380,2389,2390.

This commit is contained in:
wangyidong
2015-11-11 11:07:59 +08:00
parent 8746d7bc64
commit 45fb1f0c92
18 changed files with 71 additions and 49 deletions
+2 -2
View File
@@ -29,14 +29,14 @@ include '../../common/view/header.html.php';
<th><?php echo $lang->mail->accessKey; ?></th>
<td>
<div class='required required-wrapper'></div>
<?php echo html::input('accessKey', $mailConfig->accessKey, "class='form-control'");?>
<?php echo html::input('accessKey', isset($mailConfig->accessKey) ? $mailConfig->accessKey : '', "class='form-control'");?>
</td>
</tr>
<tr>
<th><?php echo $lang->mail->secretKey; ?></th>
<td>
<div class='required required-wrapper'></div>
<?php echo html::input('secretKey', $mailConfig->secretKey, "class='form-control'");?>
<?php echo html::input('secretKey', isset($mailConfig->secretKey) ? $mailConfig->secretKey : '', "class='form-control'");?>
</td>
</tr>
<tr>