Skip to content
Snippets Groups Projects
Commit cdc8e952 authored by Roland Waldner's avatar Roland Waldner Committed by Georg Ringer
Browse files

[TASK] Fix very last CGL violation "SemicolonSpacingIncorrect"

Change-Id: I26bb40d7d55c03c0cbca16987c4c09995b29e67d
Resolves: #37983
Releases: 6.0
Reviewed-on: http://review.typo3.org/12013
Reviewed-by: Oliver Klee
Reviewed-by: Georg Ringer
Tested-by: Georg Ringer
parent fad6966c
No related merge requests found
......@@ -52,7 +52,7 @@ if ($day == -1) {
if ($day == date('w')) {
$son = mktime(0, 0, 0, date('m'), date('d'), date('Y'));
} else {
for ($i = 1; ; $i++) {
for ($i = 1;; $i++) {
$son = mktime(0, 0, 0, date('m'), date('d') - $i, date('Y'));
if ($day == date('w', $son)) break;
// Security that it's not an eternal loop.
......
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