Changeset 3184


Ignore:
Timestamp:
06/20/12 11:56:25 (11 months ago)
Author:
squidly
Message:

Bugfixes panel

Location:
alternc/trunk/bureau/admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • alternc/trunk/bureau/admin/adm_defquotas.php

    r3182 r3184  
    5757</form> 
    5858 
     59<?php 
     60?> 
    5961<form method="post" action="adm_dodefquotas.php"> 
     62<table border="0" cellpadding="4" cellspacing="0"> 
    6063<p> 
    6164<input type="hidden" name="action" value="delete" /> 
     65<tr class="lst1"> 
     66<td> 
    6267<select name="type" id="type" class="inl"> 
    6368<?php 
     
    6570while($db->next_record()) { 
    6671  $type = $db->f("type"); 
    67   echo "<option value=\"$type\">$type</option>"; 
     72  echo "<option value=\"$type\">$type</option>\n"; 
    6873} 
    6974?></select> 
    70 <input type="submit" class="inb" value="<?php __("Delete account type"); ?>" /> 
    71 </p> 
     75</td><td><input type="submit" class="inb" value="<?php __("Delete account type"); ?>" /></td> 
     76</tr> 
     77</table> 
    7278</form> 
    73  
    7479<p> 
    7580<?php __("Here is the list of the quotas on the server for the new accounts. If you want to change them, enter new values"); ?> 
     
    9499        $key = $type . ":" . $name; 
    95100        $col=3-$col; 
    96         //TODO fix notice 
    97101?> 
    98102 
  • alternc/trunk/bureau/admin/ftp_add.php

    r3149 r3184  
    5353<tr><th><input type="hidden" name="id" value="<?php echo $id ?>" /> 
    5454<label for="login"><?php __("Username"); ?></label></th><td> 
    55         <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select>&nbsp;<b>_</b>&nbsp;<input type="text" class="int" name="login" id="login" value="<?php ehe($login); ?>" size="20" maxlength="64" /> 
     55        <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select>&nbsp;<b>_</b>&nbsp;<input type="text" class="int" name="login" id="login" value="" size="20" maxlength="64" /> 
    5656</td></tr> 
    57 <tr><th><label for="dir"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="dir" id="dir" value="<?php ehe($dir); ?>" size="20" maxlength="255" /> 
     57<tr><th><label for="dir"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="dir" id="dir" value="" size="20" maxlength="255" /> 
    5858<script type="text/javascript"> 
    5959<!-- 
     
    6262</script> 
    6363</td></tr> 
    64 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" value="<?php ehe($pass); ?>" size="20" maxlength="64" /></td></tr> 
    65 <tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" value="<?php ehe($passconf); ?>" size="20" maxlength="64" /></td></tr> 
     64<tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" value="" size="20" maxlength="64" /></td></tr> 
     65<tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" value="" size="20" maxlength="64" /></td></tr> 
    6666<tr class="trbtn"><td colspan="2"> 
    6767  <input type="submit" class="inb" name="submit" value="<?php __("Create this new FTP account."); ?>" /> 
  • alternc/trunk/bureau/admin/ftp_list.php

    r3135 r3184  
    8383 
    8484                <td><label for="del_<?php echo $val["id"]; ?>"><?php echo $val["login"] ?></label></td> 
    85                 <td><code>/<?php echo $val["dir"] ?></code></td> 
     85                <td><code><?php echo $val["dir"] ?></code></td> 
    8686        </tr> 
    8787<?php 
Note: See TracChangeset for help on using the changeset viewer.