Commit ff4df427 by Carsten Brandt

Merge pull request #3496 from LAV45/fix

Tests excess dump removed
parents 55c2ee98 55b8a749
...@@ -287,7 +287,6 @@ class YiiRequirementChecker ...@@ -287,7 +287,6 @@ class YiiRequirementChecker
$minCheckResult = true; $minCheckResult = true;
} }
if ($max !== null) { if ($max !== null) {
var_dump($postMaxSize, $uploadMaxFileSize, $max);
$maxCheckResult = $this->compareByteSize($postMaxSize, $max, '<=') && $this->compareByteSize($uploadMaxFileSize, $max, '<='); $maxCheckResult = $this->compareByteSize($postMaxSize, $max, '<=') && $this->compareByteSize($uploadMaxFileSize, $max, '<=');
} else { } else {
$maxCheckResult = true; $maxCheckResult = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment