Changeset 3184
- Timestamp:
- 06/20/12 11:56:25 (11 months ago)
- Location:
- alternc/trunk/bureau/admin
- Files:
-
- 3 edited
-
adm_defquotas.php (modified) (3 diffs)
-
ftp_add.php (modified) (2 diffs)
-
ftp_list.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
alternc/trunk/bureau/admin/adm_defquotas.php
r3182 r3184 57 57 </form> 58 58 59 <?php 60 ?> 59 61 <form method="post" action="adm_dodefquotas.php"> 62 <table border="0" cellpadding="4" cellspacing="0"> 60 63 <p> 61 64 <input type="hidden" name="action" value="delete" /> 65 <tr class="lst1"> 66 <td> 62 67 <select name="type" id="type" class="inl"> 63 68 <?php … … 65 70 while($db->next_record()) { 66 71 $type = $db->f("type"); 67 echo "<option value=\"$type\">$type</option> ";72 echo "<option value=\"$type\">$type</option>\n"; 68 73 } 69 74 ?></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> 72 78 </form> 73 74 79 <p> 75 80 <?php __("Here is the list of the quotas on the server for the new accounts. If you want to change them, enter new values"); ?> … … 94 99 $key = $type . ":" . $name; 95 100 $col=3-$col; 96 //TODO fix notice97 101 ?> 98 102 -
alternc/trunk/bureau/admin/ftp_add.php
r3149 r3184 53 53 <tr><th><input type="hidden" name="id" value="<?php echo $id ?>" /> 54 54 <label for="login"><?php __("Username"); ?></label></th><td> 55 <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select> <b>_</b> <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> <b>_</b> <input type="text" class="int" name="login" id="login" value="" size="20" maxlength="64" /> 56 56 </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" /> 58 58 <script type="text/javascript"> 59 59 <!-- … … 62 62 </script> 63 63 </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> 66 66 <tr class="trbtn"><td colspan="2"> 67 67 <input type="submit" class="inb" name="submit" value="<?php __("Create this new FTP account."); ?>" /> -
alternc/trunk/bureau/admin/ftp_list.php
r3135 r3184 83 83 84 84 <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> 86 86 </tr> 87 87 <?php
Note: See TracChangeset
for help on using the changeset viewer.
