- allow to set _enableLargeFileUpload and _enablePasswordForgotten

This commit is contained in:
steinm 2011-10-25 13:38:21 +00:00
parent a94d45b111
commit 77ff174228

View File

@ -237,6 +237,10 @@ if(!is_writeable($settings->_configFilePath)) {
<OPTION VALUE="m" <?php if ($settings->_logFileRotation=="m") echo "SELECTED" ?> ><?php printMLText("monthly");?></OPTION>
</SELECT>
</tr>
<tr title="<?php printMLText("settings_enableLargeFileUpload_desc");?>">
<td><?php printMLText("settings_enableLargeFileUpload");?>:</td>
<td><input name="enableLargeFileUpload" type="checkbox" <?php if ($settings->_enableLargeFileUpload) echo "checked" ?> /></td>
</tr>
<tr title="<?php printMLText("settings_partitionSize_desc");?>">
<td><?php printMLText("settings_partitionSize");?>:</td>
<td><input name="partitionSize" value="<?php echo $settings->_partitionSize ?>" size="100" /></td>
@ -261,6 +265,10 @@ if(!is_writeable($settings->_configFilePath)) {
<td><?php printMLText("settings_disableSelfEdit");?>:</td>
<td><input name="disableSelfEdit" type="checkbox" <?php if ($settings->_disableSelfEdit) echo "checked" ?> /></td>
</tr>
<tr title="<?php printMLText("settings_enablePasswordForgotten_desc");?>">
<td><?php printMLText("settings_enablePasswordForgotten");?>:</td>
<td><input name="enablePasswordForgotten" type="checkbox" <?php if ($settings->_enablePasswordForgotten) echo "checked" ?> /></td>
</tr>
<!-- TODO Connectors -->