Skip to content

Commit 65d44bf

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: CS: recover no_break_comment
2 parents c13dae2 + a7aa983 commit 65d44bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Util/ServerParams.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ public function getPostMaxSize()
6262

6363
switch (substr($iniMax, -1)) {
6464
case 't': $max *= 1024;
65+
// no break
6566
case 'g': $max *= 1024;
67+
// no break
6668
case 'm': $max *= 1024;
69+
// no break
6770
case 'k': $max *= 1024;
6871
}
6972

0 commit comments

Comments
 (0)