Fix #1299
This commit is contained in:
parent
e27740fa28
commit
a4e3b72507
|
@ -54,10 +54,10 @@ if (! ($confirmed = ($_GET['submit'] == _("Confirm")) ) ) {
|
|||
__("The following domains will be deactivated and redirected to the URL entered in the following box. A backup of the domain configuration will be displayed as a serie of SQL request that you can run to restore the current configuration if you want. Click confirm if you are sure you want to deactivate all this user's domains.");
|
||||
|
||||
?>
|
||||
<form action="<?=$PHP_SELF?>" method="GET">
|
||||
<input type="hidden" name="uid" value="<?=$uid?>" />
|
||||
<? __("Redirection URL:") ?> <input type="text" name="redirect" class="int" value="http://example.com/" />
|
||||
<input type="submit" name="submit" class="inb" value="<?=_("Confirm")?>" />
|
||||
<form action="<?php echo $PHP_SELF?>" method="GET">
|
||||
<input type="hidden" name="uid" value="<?php echo $uid?>" />
|
||||
<?php __("Redirection URL:") ?> <input type="text" name="redirect" class="int" value="http://example.com/" />
|
||||
<input type="submit" name="submit" class="inb" value="<?php __("Confirm")?>" />
|
||||
<input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='adm_list.php'"/>
|
||||
</form><?php
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ while ($db->next_record()) {
|
|||
<td><input type="text" name="<?php ehe($vars['name']); ?>" value="<?php ehe($vars['value']); ?>" /></td>
|
||||
<td><?php echo $vars['comment']; ?></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
</table>
|
||||
<p><input type="submit" class="inb" value="<?php __("Save variables"); ?>" /></p>
|
||||
</form>
|
||||
|
|
|
@ -54,7 +54,7 @@ if (!$dom->del_sub_domain($domain,$sub,$type,$value)) {
|
|||
$dom->unlock();
|
||||
|
||||
?>
|
||||
<h3><?=sprintf(_("Deleting the subdomain %s:"),"http://".(($sub)?$sub.".":$sub).$domain); ?></h3>
|
||||
<h3><?php echo sprintf(_("Deleting the subdomain %s:"),"http://".(($sub)?$sub.".":$sub).$domain); ?></h3>
|
||||
<hr id="topbar"/>
|
||||
<br />
|
||||
<?php
|
||||
|
|
|
@ -151,7 +151,7 @@ toogle_properties('globalmail_');
|
|||
<?php
|
||||
foreach ($lst_toggle as $t) { ?>
|
||||
toogle_properties('<?php echo $t ?>');
|
||||
<? } //foreach toggle ?>
|
||||
<?php } //foreach toggle ?>
|
||||
|
||||
toggle_mailadv();
|
||||
</script>
|
||||
|
|
|
@ -37,7 +37,7 @@ if ($q['t'] > 0) {
|
|||
<div class="menu-box">
|
||||
<div class="menu-title">
|
||||
<a href="cron.php">
|
||||
<img src="images/schedule.png" alt="<?php __("Scheduled tasks"); ?>" width=16px height=16px/> <?php __("Scheduled tasks"); ?> (<?= $q["u"]; ?>/<?= $q["t"]; ?>)
|
||||
<img src="images/schedule.png" alt="<?php __("Scheduled tasks"); ?>" width=16px height=16px/> <?php __("Scheduled tasks"); ?> (<?php echo $q["u"].'/'.$q["t"]; ?>)
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -50,7 +50,7 @@ if (isset($error) && $error) {
|
|||
<span class="ina"><a href="quotas_users.php?mode=<?php echo $mode; ?>&sd=0&usr=<?php echo $usr; ?>"><?php __("Hide the domain names"); ?></a></span>
|
||||
<?php } } ?>
|
||||
<?php if ($usr) { ?>
|
||||
<span class="ina"><a href="quotas_users.php?mode=<?php echo $mode; ?>&sd=<? echo $sd; ?>"><?php __("All accounts"); ?></a></span>
|
||||
<span class="ina"><a href="quotas_users.php?mode=<?php echo $mode; ?>&sd=<?php echo $sd; ?>"><?php __("All accounts"); ?></a></span>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue