mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-31 15:55:06 +01:00
Update deps
This commit is contained in:
parent
a4180d0b8e
commit
e4ccd3effe
@ -780,7 +780,11 @@ class SymfonyRequirements extends RequirementCollection
|
|||||||
{
|
{
|
||||||
$size = ini_get('realpath_cache_size');
|
$size = ini_get('realpath_cache_size');
|
||||||
$size = trim($size);
|
$size = trim($size);
|
||||||
$unit = strtolower(substr($size, -1, 1));
|
$unit = '';
|
||||||
|
if (!ctype_digit($size)) {
|
||||||
|
$unit = strtolower(substr($size, -1, 1));
|
||||||
|
$size = (int) substr($size, 0, -1);
|
||||||
|
}
|
||||||
switch ($unit) {
|
switch ($unit) {
|
||||||
case 'g':
|
case 'g':
|
||||||
return $size * 1024 * 1024 * 1024;
|
return $size * 1024 * 1024 * 1024;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user