Added file_repository option

This commit is contained in:
zone 2001-07-31 07:13:49 +00:00
parent 136100fff8
commit b90e0c4bf6

View File

@ -35,6 +35,17 @@
</tr> </tr>
<?php $selected = array(); ?> <?php $selected = array(); ?>
<?php $selected[$current_config["file_repository"]] = " selected"; ?>
<tr bgcolor="e6e6e6">
<td>Select where you want to store/retrieve filesystem information.</td>
<td>
<select name="newsettings[file_repository]">
<option value="sql"<?php echo $selected["sql"]; ?>>SQL</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<tr bgcolor="e6e6e6"> <tr bgcolor="e6e6e6">
<td>Minimum account id (e.g. 500 or 100, etc.):</td> <td>Minimum account id (e.g. 500 or 100, etc.):</td>
<td><input name="newsettings[account_min_id]" value="<?php echo $current_config["account_min_id"]; ?>"></td> <td><input name="newsettings[account_min_id]" value="<?php echo $current_config["account_min_id"]; ?>"></td>