Passed
Push — master ( d0d6cb...9c2172 )
by Roeland
27:32 queued 11s
created
apps/settings/templates/settings/frame.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 
24 24
 style('settings', 'settings');
25
-script('settings', [ 'settings', 'admin', 'log']);
25
+script('settings', ['settings', 'admin', 'log']);
26 26
 script('core', 'setupchecks');
27 27
 script('files', 'jquery.fileupload');
28 28
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 		foreach ($_['forms']['personal'] as $form) {
38 38
 			if (isset($form['anchor'])) {
39 39
 				$anchor = \OC::$server->getURLGenerator()->linkToRoute('settings.PersonalSettings.index', ['section' => $form['anchor']]);
40
-				$class = 'nav-icon-' . $form['anchor'];
40
+				$class = 'nav-icon-'.$form['anchor'];
41 41
 				$sectionName = $form['section-name'];
42 42
 				$active = $form['active'] ? ' class="active"' : ''; ?>
43 43
 				<li <?php print_unescaped($form['active'] ? ' class="active"' : ''); ?>>
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 		foreach ($_['forms']['admin'] as $form) {
65 65
 			if (isset($form['anchor'])) {
66 66
 				$anchor = \OC::$server->getURLGenerator()->linkToRoute('settings.AdminSettings.index', ['section' => $form['anchor']]);
67
-				$class = 'nav-icon-' . $form['anchor'];
67
+				$class = 'nav-icon-'.$form['anchor'];
68 68
 				$sectionName = $form['section-name'];
69 69
 				$active = $form['active'] ? ' class="active"' : ''; ?>
70 70
 				<li <?php print_unescaped($form['active'] ? ' class="active"' : ''); ?>>
Please login to merge, or discard this patch.