blob: 72a1f5222af282abf4130191b4467516a71e9b4b (
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
25
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_liberty/calculate_max_upload_inc.php,v 1.5 2008/06/19 07:28:49 lsces Exp $
*
* settings that are useful to know about at upload time
*
* @package liberty
* @subpackage functions
*/
$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 );
?>
|