mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
- allow to set _enableLargeFileUpload and _enablePasswordForgotten
This commit is contained in:
parent
a94d45b111
commit
77ff174228
|
@ -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 -->
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user