allow larger files
This commit is contained in:
parent
9c13d988de
commit
a0e3eec1af
|
@ -188,7 +188,7 @@ function loadSelfServiceProfile($name, $scope) {
|
|||
if (is_file($file) === True) {
|
||||
$file = @fopen($file, "r");
|
||||
if ($file) {
|
||||
$data = fread($file, 100000);
|
||||
$data = fread($file, 10000000);
|
||||
$profile = unserialize($data);
|
||||
fclose($file);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue