Passed
Push — master ( 0d33c7...8995ac )
by Nils
05:53
created
includes/language/english.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
  * @see       https://www.teampass.net
29 29
  */
30 30
 
31
- // TO REMOVE
32
- // - selected_items_to_be_imported
31
+    // TO REMOVE
32
+    // - selected_items_to_be_imported
33 33
 
34 34
 return array(
35 35
     'highlight_selected' => 'Highlight selected',
Please login to merge, or discard this patch.
pages/options.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 if ($checkUserAccess->checkSession() === false || $checkUserAccess->userAccessPage('options') === false) {
70 70
     // Not allowed page
71 71
     $session->set('system-error_code', ERR_NOT_ALLOWED);
72
-    include $SETTINGS['cpassman_dir'] . '/error.php';
72
+    include $SETTINGS['cpassman_dir'].'/error.php';
73 73
     exit;
74 74
 }
75 75
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
                                     // get list of all timezones
253 253
                                     foreach ($zones as $key => $zone) {
254 254
                                         echo '
255
-                                <option value="' . $key . '"', isset($SETTINGS['timezone']) === true && (int) $SETTINGS['timezone'] === $key ? ' selected' : '', '>' . $zone . '</option>';
255
+                                <option value="' . $key.'"', isset($SETTINGS['timezone']) === true && (int) $SETTINGS['timezone'] === $key ? ' selected' : '', '>'.$zone.'</option>';
256 256
                                     }
257 257
                                     ?>
258 258
                                 </select>
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
                                     $languagesList = $languagesList ?? [];
305 305
                                     foreach ($languagesList as $teampassLang) {
306 306
                                         echo '
307
-                                <option value="' . $teampassLang . '"', isset($SETTINGS['default_language']) === true && (int) $SETTINGS['default_language'] === $teampassLang ? ' selected' : '', '>' . $teampassLang . '</option>';
307
+                                <option value="' . $teampassLang.'"', isset($SETTINGS['default_language']) === true && (int) $SETTINGS['default_language'] === $teampassLang ? ' selected' : '', '>'.$teampassLang.'</option>';
308 308
                                     }
309 309
                                     ?>
310 310
                                 </select>
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
                                         $roles = getRolesTitles();
930 930
                                         foreach ($roles as $role) {
931 931
                                             echo '
932
-                                    <option value="' . htmlspecialchars($role['id']) . '"', in_array($role['id'], $arrRolesToPrint) === true ? ' selected' : '', '>' . htmlspecialchars(addslashes($role['title'])) . '</option>';
932
+                                    <option value="' . htmlspecialchars($role['id']).'"', in_array($role['id'], $arrRolesToPrint) === true ? ' selected' : '', '>'.htmlspecialchars(addslashes($role['title'])).'</option>';
933 933
                                         }
934 934
                                     }
935 935
                                     ?>
@@ -967,7 +967,7 @@  discard block
 block discarded – undo
967 967
                                     <?php
968 968
                                     foreach (TP_PW_COMPLEXITY as $complex) {
969 969
                                         echo '
970
-                                <option value="' . $complex[0] . '"', isset($SETTINGS['offline_key_level']) === true && (int) $SETTINGS['offline_key_level'] === $complex[0] ? ' selected' : '', '>' . $complex[1] . '</option>';
970
+                                <option value="' . $complex[0].'"', isset($SETTINGS['offline_key_level']) === true && (int) $SETTINGS['offline_key_level'] === $complex[0] ? ' selected' : '', '>'.$complex[1].'</option>';
971 971
                                     }
972 972
                                     ?>
973 973
                                 </select>
Please login to merge, or discard this patch.