Completed
Pull Request — master (#4281)
by Craig
05:10
created
src/system/GroupsModule/GroupsModuleInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
     {
53 53
         switch ($oldVersion) {
54 54
             case '2.4.0': // shipped with Core-1.4.3
55
-                $this->setVar('mailwarning', (bool)$this->getVar('mailwarning'));
56
-                $this->setVar('hideclosed', (bool)$this->getVar('hideclosed'));
55
+                $this->setVar('mailwarning', (bool) $this->getVar('mailwarning'));
56
+                $this->setVar('hideclosed', (bool) $this->getVar('hideclosed'));
57 57
                 $this->setVar('hidePrivate', false);
58 58
             case '2.4.1':
59 59
                 /** @var UserEntity $anonymousUser */
Please login to merge, or discard this patch.
src/system/SettingsModule/SettingsModuleInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     {
95 95
         switch ($oldVersion) {
96 96
             case '2.9.11': // shipped with Core-1.4.3
97
-                $this->setSystemVar('UseCompression', (bool)$this->getSystemVar('UseCompression'));
97
+                $this->setSystemVar('UseCompression', (bool) $this->getSystemVar('UseCompression'));
98 98
             case '2.9.12': // shipped with Core-1.4.4
99 99
                 // reconfigure TZ settings
100 100
                 $this->setGuestTimeZone();
Please login to merge, or discard this patch.