added AdminEdit button text

This commit is contained in:
mischa 2022-09-03 09:53:43 +00:00
parent 577680b10d
commit b3e5c8350e
2 changed files with 8 additions and 0 deletions

View File

@ -39,7 +39,11 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<?php if ($action == 'edit') { ?>
<td colspan="2" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminEdit_admin_button']; ?>" /></td>
<?php } else { ?>
<td colspan="2" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminAdd_admin_button']; ?>" /></td> <td colspan="2" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminAdd_admin_button']; ?>" /></td>
<?php } ?>
</tr> </tr>
<tr> <tr>
<td colspan="2" class="standout"><?php echo $message ?? '&nbsp;'; ?></td> <td colspan="2" class="standout"><?php echo $message ?? '&nbsp;'; ?></td>

View File

@ -33,7 +33,11 @@
<td><?php echo $LANG['AdminAdd_domain_mailboxes_text']; ?></td> <td><?php echo $LANG['AdminAdd_domain_mailboxes_text']; ?></td>
</tr> </tr>
<tr> <tr>
<?php if ($action == 'edit') { ?>
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminEdit_domain_button']; ?>" /></td>
<?php } else { ?>
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminAdd_domain_button']; ?>" /></td> <td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php echo $LANG['AdminAdd_domain_button']; ?>" /></td>
<?php } ?>
</tr> </tr>
<tr> <tr>
<td colspan="3" class="standout"><?php echo $message ?? '&nbsp;'; ?></td> <td colspan="3" class="standout"><?php echo $message ?? '&nbsp;'; ?></td>