blob: bfe16746532fbb1563f5d7d3910b226b6966c057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
// settings that are useful to know about at upload time
$postMax = str_replace( 'M', '', ini_get( 'post_max_size' ));
$uploadMax = str_replace( 'M', '', ini_get( 'upload_max_filesize' ) );
if( $postMax < $uploadMax ) {
$uploadMax = $postMax;
}
// calculate user quota
if( $gBitSystem->isPackageActive( 'quota' ) ) {
require_once( QUOTA_PKG_PATH.'calculate_quota_inc.php' );
}
$gBitSmarty->assign_by_ref( 'uploadMax', $uploadMax );
?>
|