Passed
Push — develop-webpack ( e566d9...314792 )
by Daniel
05:18
created
acp/menu_module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
 		$vars = array('bulk_options', 'forumslist');
152 152
 		extract($this->phpbb_dispatcher->trigger_event('blitze.sitemaker.acp_add_bulk_menu_options', compact($vars)));
153 153
 
154
-		$bulk_options['FORUMS']	= $this->get_forums_string($forumslist);
154
+		$bulk_options['FORUMS'] = $this->get_forums_string($forumslist);
155 155
 
156 156
 		$this->template->assign_var('bulk_options', $bulk_options);
157 157
 	}
Please login to merge, or discard this patch.
services/tree/display.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	{
90 90
 		$sql = "SELECT *
91 91
 			FROM $this->items_table
92
-			WHERE $this->pk = " . (int) $node_id ;
92
+			WHERE $this->pk = " . (int) $node_id;
93 93
 		$result = $this->db->sql_query($sql);
94 94
 		$row = $this->db->sql_fetchrow($result);
95 95
 		$this->db->sql_freeresult($result);
@@ -174,10 +174,10 @@  discard block
 block discarded – undo
174 174
 		for ($i = 0, $size = sizeof($data); $i < $size; $i++)
175 175
 		{
176 176
 			$row 		= $data[$i];
177
-			$this_depth	= $parental_depth[$row[$this->column_parent_id]] + 1;
178
-			$repeat		= (int) abs($prev_depth - $this_depth);
177
+			$this_depth = $parental_depth[$row[$this->column_parent_id]] + 1;
178
+			$repeat = (int) abs($prev_depth - $this_depth);
179 179
 
180
-			$tpl_data	= array(
180
+			$tpl_data = array(
181 181
 				'PREV_DEPTH'	=> $prev_depth,
182 182
 				'THIS_DEPTH'	=> $this_depth,
183 183
 				'NUM_KIDS'		=> $this->count_descendants($row),
Please login to merge, or discard this patch.
services/blocks/cfg_handler.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -351,9 +351,9 @@  discard block
 block discarded – undo
351 351
 
352 352
 		$vars['method'] = 'build_select';
353 353
 		$vars['params'][] = $field;
354
-		$vars['params'][] = (int) $type[1];		// size
355
-		$vars['params'][] = (bool) $type[2];	// multi select
356
-		$vars['params'][] = (string) $type[3];	// togggle key
354
+		$vars['params'][] = (int) $type[1]; // size
355
+		$vars['params'][] = (bool) $type[2]; // multi select
356
+		$vars['params'][] = (string) $type[3]; // togggle key
357 357
 		$type[0] = 'custom';
358 358
 	}
359 359
 
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
 	{
394 394
 		$this->prep_checkbox_field_for_display($vars, $type, $field);
395 395
 
396
-		$vars['method'] ='build_multi_select';
396
+		$vars['method'] = 'build_multi_select';
397 397
 	}
398 398
 
399 399
 	/**
Please login to merge, or discard this patch.
services/blocks/action/set_route_prefs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
 			$entity = $this->force_get_route($route_data);
44 44
 			$this->update_route($entity, $route_prefs);
45 45
 
46
-			$ex_positions	= $entity->get_ex_positions();
47
-			$hide_blocks	= $entity->get_hide_blocks();
46
+			$ex_positions = $entity->get_ex_positions();
47
+			$hide_blocks = $entity->get_hide_blocks();
48 48
 		}
49 49
 		// user has made choices that match defaults, and route prefs exist in db
50 50
 		else if ($entity = $this->route_mapper->load($this->get_condition($route_data)))
Please login to merge, or discard this patch.