@@ -49,7 +49,7 @@ |
||
49 | 49 | $new_list = trim($new_list, ','); |
50 | 50 | |
51 | 51 | $new_userlist = self::_get_userlist($new_list); |
52 | - $current_user =& $new_userlist[$curr_key - 1]; |
|
52 | + $current_user = & $new_userlist[$curr_key - 1]; |
|
53 | 53 | $settings['current_user'] = (int) $current_user; |
54 | 54 | $settings['userlist'] = trim($new_list); |
55 | 55 | $settings['last_changed'] = 0; |
@@ -162,7 +162,7 @@ |
||
162 | 162 | |
163 | 163 | $is_current_item = $this->is_current_item($row); |
164 | 164 | $is_parent = $this->is_parent_of_current_item($row); |
165 | - $this_depth = $this->parental_depth[$row[$this->column_parent_id]] + 1; |
|
165 | + $this_depth = $this->parental_depth[$row[$this->column_parent_id]] + 1; |
|
166 | 166 | $leaf = $this->get_leaf_node($row, $is_current_item, $is_parent); |
167 | 167 | |
168 | 168 | $this->parental_depth[$row[$this->pk]] = $this_depth; |
@@ -200,7 +200,7 @@ |
||
200 | 200 | list($controller_service, $controller_method) = explode(':', $controller); |
201 | 201 | $controller_params = $symfony_request->attributes->get('_route_params'); |
202 | 202 | $controller_object = $this->phpbb_container->get($controller_service); |
203 | - $controller_class = get_class($controller_object); |
|
203 | + $controller_class = get_class($controller_object); |
|
204 | 204 | |
205 | 205 | $r = new \ReflectionMethod($controller_class, $controller_method); |
206 | 206 | $class_params = $r->getParameters(); |
@@ -341,9 +341,9 @@ discard block |
||
341 | 341 | { |
342 | 342 | $vars['method'] = 'build_select'; |
343 | 343 | $vars['params'][] = $field; |
344 | - $vars['params'][] = $type[1] ?: 1; // size |
|
345 | - $vars['params'][] = (bool) $type[2] ?: false; // multi select |
|
346 | - $vars['params'][] = $type[3] ?: ''; // togggle key |
|
344 | + $vars['params'][] = $type[1] ?: 1; // size |
|
345 | + $vars['params'][] = (bool) $type[2] ?: false; // multi select |
|
346 | + $vars['params'][] = $type[3] ?: ''; // togggle key |
|
347 | 347 | $type[0] = 'custom'; |
348 | 348 | } |
349 | 349 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | { |
384 | 384 | $this->prep_checkbox_field_for_display($vars, $type, $field); |
385 | 385 | |
386 | - $vars['method'] ='build_multi_select'; |
|
386 | + $vars['method'] = 'build_multi_select'; |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | /** |
@@ -151,7 +151,7 @@ |
||
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 | } |