diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/SymfonyRequirements.php | 6 |
1 files changed, 3 insertions, 3 deletions
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 | |||
739 | 739 | ||
740 | if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { | 740 | if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
741 | $this->addRecommendation( | 741 | $this->addRecommendation( |
742 | $this->getRealpathCacheSize() > 5 * 1024 * 1024, | 742 | $this->getRealpathCacheSize() >= 5 * 1024 * 1024, |
743 | 'realpath_cache_size should be above 5242880 in php.ini', | 743 | 'realpath_cache_size should be at least 5M in php.ini', |
744 | '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.' | 744 | '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.' |
745 | ); | 745 | ); |
746 | } | 746 | } |
747 | 747 | ||