]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Update generated files from Symfony
authorJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 19 Sep 2016 09:35:35 +0000 (11:35 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 19 Sep 2016 09:35:35 +0000 (11:35 +0200)
var/SymfonyRequirements.php

index f3e8ca8eb2489934b375c08501cf11204848f567..7e7723af3180037f9311d0d99394c8f6751d5adf 100644 (file)
@@ -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 "<strong>realpath_cache_size</strong>" to e.g. "<strong>5242880</strong>" or "<strong>5000k</strong>" in php.ini<a href="#phpini">*</a> 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 "<strong>realpath_cache_size</strong>" to e.g. "<strong>5242880</strong>" or "<strong>5M</strong>" in php.ini<a href="#phpini">*</a> may improve performance on Windows significantly in some cases.'
             );
         }