blob: 6bece9ed63e73e4848d35f91a9af9fdbac68b302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* @version $Revision: 1.4 $
* @package liberty
* @subpackage functions
*
* 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 );
?>
|