summaryrefslogtreecommitdiffstats
path: root/files/templates/admin.php
blob: 8c3ba56ad52fe98dae6c97bce5090f380c81ec22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php OC_Util::addScript('files','admin'); ?>

<form name="filesForm" action='#' method='post'>
	<fieldset class="personalblock">
		<legend><strong><?php echo $l->t('File handling');?></strong></legend>
		<?php if($_['htaccessWorking']):?>
			<label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label><input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/><br/>
		<?php endif;?>
		<label for="maxZipInputSize"><?php echo $l->t( 'Maximum input size for zip files (affects folder- and multi-file download)' ); ?> </label><input name="maxZipInputSize" id="maxZipInputSize" value='<?php echo $_['maxZipInputSize'] ?>'/><br/>
		<input type="submit" value="Save"/>
	</fieldset>
</form>