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.");
|
__("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">
|
<form action="<?php echo $PHP_SELF?>" method="GET">
|
||||||
<input type="hidden" name="uid" value="<?=$uid?>" />
|
<input type="hidden" name="uid" value="<?php echo $uid?>" />
|
||||||
<? __("Redirection URL:") ?> <input type="text" name="redirect" class="int" value="http://example.com/" />
|
<?php __("Redirection URL:") ?> <input type="text" name="redirect" class="int" value="http://example.com/" />
|
||||||
<input type="submit" name="submit" class="inb" value="<?=_("Confirm")?>" />
|
<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'"/>
|
<input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='adm_list.php'"/>
|
||||||
</form><?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><input type="text" name="<?php ehe($vars['name']); ?>" value="<?php ehe($vars['value']); ?>" /></td>
|
||||||
<td><?php echo $vars['comment']; ?></td>
|
<td><?php echo $vars['comment']; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<?php } ?>
|
||||||
</table>
|
</table>
|
||||||
<p><input type="submit" class="inb" value="<?php __("Save variables"); ?>" /></p>
|
<p><input type="submit" class="inb" value="<?php __("Save variables"); ?>" /></p>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -54,7 +54,7 @@ if (!$dom->del_sub_domain($domain,$sub,$type,$value)) {
|
||||||
$dom->unlock();
|
$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"/>
|
<hr id="topbar"/>
|
||||||
<br />
|
<br />
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -151,7 +151,7 @@ toogle_properties('globalmail_');
|
||||||
<?php
|
<?php
|
||||||
foreach ($lst_toggle as $t) { ?>
|
foreach ($lst_toggle as $t) { ?>
|
||||||
toogle_properties('<?php echo $t ?>');
|
toogle_properties('<?php echo $t ?>');
|
||||||
<? } //foreach toggle ?>
|
<?php } //foreach toggle ?>
|
||||||
|
|
||||||
toggle_mailadv();
|
toggle_mailadv();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -37,7 +37,7 @@ if ($q['t'] > 0) {
|
||||||
<div class="menu-box">
|
<div class="menu-box">
|
||||||
<div class="menu-title">
|
<div class="menu-title">
|
||||||
<a href="cron.php">
|
<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>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</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>
|
<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 } } ?>
|
||||||
<?php if ($usr) { ?>
|
<?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 } ?>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue