From: Jeremy Benoist Date: Mon, 19 Sep 2016 09:35:35 +0000 (+0200) Subject: Update generated files from Symfony X-Git-Tag: 2.1.0~32 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=sidebyside;h=05d2d62f128df5dafa3be17d9848fb9b5b146836;p=github%2Fwallabag%2Fwallabag.git Update generated files from Symfony --- diff --git a/var/SymfonyRequirements.php b/var/SymfonyRequirements.php index f3e8ca8e..7e7723af 100644 --- a/var/SymfonyRequirements.php +++ b/var/SymfonyRequirements.php @@ -739,9 +739,9 @@ class SymfonyRequirements extends RequirementCollection if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { $this->addRecommendation( - $this->getRealpathCacheSize() > 5 * 1024 * 1024, - 'realpath_cache_size should be above 5242880 in php.ini', - 'Setting "realpath_cache_size" to e.g. "5242880" or "5000k" in php.ini* may improve performance on Windows significantly in some cases.' + $this->getRealpathCacheSize() >= 5 * 1024 * 1024, + 'realpath_cache_size should be at least 5M in php.ini', + 'Setting "realpath_cache_size" to e.g. "5242880" or "5M" in php.ini* may improve performance on Windows significantly in some cases.' ); }