Forums / Cotonti / Bugs / Archive / PFS Upload Problem (-1 filesize)

dervan
#9768 2009-03-11 18:27
please find function sed_get_uploadmax() in system/functions.php, and replace
		$val_a[] = isset($opt_a[$opt]) ? $val * $opt_a[$opt] : (int)$val;
with code
		$val = isset($opt_a[$opt]) ? $val * $opt_a[$opt] : (int)$val;
		if ($val > 0)
		{
			$val_a[] = $val;
		}
[/][/]