Completed
Push — develop ( fd370c...e87922 )
by Daniel
09:46 queued 07:22
created
services/template/loader.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,8 +127,7 @@
 block discarded – undo
127 127
 		{
128 128
 			$data = $this->blocks_data[$id];
129 129
 			$column_name = 'block_tpl';
130
-		}
131
-		else
130
+		} else
132 131
 		{
133 132
 			$data = $this->content_types[$id];
134 133
 			$column_name = $view . '_tpl';
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 		else
132 132
 		{
133 133
 			$data = $this->content_types[$id];
134
-			$column_name = $view . '_tpl';
134
+			$column_name = $view.'_tpl';
135 135
 		}
136 136
 
137 137
 		$return = array(
Please login to merge, or discard this patch.
services/topic.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 		$l_edited_by = $edit_reason = '';
212 212
 		if (($row['post_edit_count'] && $this->config['display_last_edited']) || $row['post_edit_reason'])
213 213
 		{
214
-			$display_username	= $users_cache[$row['poster_id']]['username_full'];
214
+			$display_username = $users_cache[$row['poster_id']]['username_full'];
215 215
 			$l_edited_by = $this->language->lang('EDITED_TIMES_TOTAL', (int) $row['post_edit_count'], $display_username, $this->user->format_date($row['post_edit_time'], false, true));
216 216
 			$edit_reason = $row['post_edit_reason'];
217 217
 		}
@@ -232,8 +232,8 @@  discard block
 block discarded – undo
232 232
 		$l_deleted_by = $delete_reason = $l_deleted_message = '';
233 233
 		if ($row['post_visibility'] === ITEM_DELETED && $row['post_delete_user'])
234 234
 		{
235
-			$display_postername	= $users_cache[$row['poster_id']]['username_full'];
236
-			$display_username	= $users_cache[$row['post_delete_user']]['username_full'];
235
+			$display_postername = $users_cache[$row['poster_id']]['username_full'];
236
+			$display_username = $users_cache[$row['post_delete_user']]['username_full'];
237 237
 
238 238
 			if ($row['post_delete_reason'])
239 239
 			{
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -238,8 +238,7 @@
 block discarded – undo
238 238
 			if ($row['post_delete_reason'])
239 239
 			{
240 240
 				$l_deleted_message = $this->language->lang('POST_DELETED_BY_REASON', $display_postername, $display_username, $this->user->format_date($row['post_delete_time'], false, true), $row['post_delete_reason']);
241
-			}
242
-			else
241
+			} else
243 242
 			{
244 243
 				$l_deleted_message = $this->language->lang('POST_DELETED_BY', $display_postername, $display_username, $this->user->format_date($row['post_delete_time'], false, true));
245 244
 			}
Please login to merge, or discard this patch.
services/fields.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,8 +122,7 @@
 block discarded – undo
122 122
 			)), CASE_UPPER));
123 123
 			$this->template->set_filenames(array('content' => $this->tpl_name));
124 124
 			$tpl_data['CUSTOM_DISPLAY'] = $this->template->assign_display('content');
125
-		}
126
-		else
125
+		} else
127 126
 		{
128 127
 			$tpl_data['SEQ_DISPLAY'] = join('<br />', $fields_data);
129 128
 		}
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 		if (!empty($custom_tpl))
76 76
 		{
77
-			$this->tpl_name	= ($tpl_name) ? $tpl_name : $content_type . '_' . $view_mode;
77
+			$this->tpl_name	= ($tpl_name) ? $tpl_name : $content_type.'_'.$view_mode;
78 78
 		}
79 79
 
80 80
 		$this->view_mode = (in_array($view_mode, array('summary', 'detail'))) ? $view_mode : 'summary';
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	public function show($type, array $topic_data, array $post_data, array $users_cache, array $attachments, array &$update_count, array $topic_tracking_info, array $topic_data_overwrite = array(), $mode = '')
98 98
 	{
99
-		$callable = 'get_' . $this->view_mode . '_template_data';
99
+		$callable = 'get_'.$this->view_mode.'_template_data';
100 100
 		$tpl_data = array_merge(
101 101
 			$this->{$callable}($type, $topic_data, $post_data, $users_cache, $attachments, $update_count, $topic_tracking_info, $mode),
102 102
 			$topic_data_overwrite
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 		{
167 167
 			$field_type		= $row['field_type'];
168 168
 			$field_value	= &$post_field_data[$field_name];
169
-			$field_contents	= $this->form_fields[$field_type]->display_field($field_value, $this->view_mode, $tpl_data, $row);
169
+			$field_contents = $this->form_fields[$field_type]->display_field($field_value, $this->view_mode, $tpl_data, $row);
170 170
 
171 171
 			// this essentially hides other fields if the field returns an array
172 172
 			if (is_array($field_contents))
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 				break;
176 176
 			}
177 177
 
178
-			$fields_data[$field_name] = '<div class="field-label ' . $this->label[$row['field_' . $this->view_mode . '_ldisp']] . '">' . $row['field_label'] . ': </div>' . $field_contents;
178
+			$fields_data[$field_name] = '<div class="field-label '.$this->label[$row['field_'.$this->view_mode.'_ldisp']].'">'.$row['field_label'].': </div>'.$field_contents;
179 179
 		}
180 180
 
181 181
 		return $fields_data;
Please login to merge, or discard this patch.
services/helper.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	 * @param \phpbb\user			$user				User object
35 35
 	 * @param string				$phpbb_root_path	Path to the phpbb includes directory.
36 36
 	 * @param string				$php_ext			php file extension
37
-	*/
37
+	 */
38 38
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\config\db $config, \phpbb\user $user, $phpbb_root_path, $php_ext)
39 39
 	{
40 40
 		$this->auth = $auth;
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	public function edit_post(array $topic_data, array $post_data, $cp_class = '')
138 138
 	{
139 139
 		$cp_class = $this->get_cp_class($post_data['poster_id'], $cp_class);
140
-		$callable = $cp_class . '_can_edit_topic';
140
+		$callable = $cp_class.'_can_edit_topic';
141 141
 		$edit_url = '';
142 142
 
143 143
 		if ($this->user->data['is_registered'] &&
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 	public function delete_post(array $topic_data, array $post_data)
205 205
 	{
206 206
 		$cp_class = $this->get_cp_class($post_data['poster_id']);
207
-		$callable = $cp_class . '_can_delete_topic';
207
+		$callable = $cp_class.'_can_delete_topic';
208 208
 		$u_delete = '';
209 209
 
210 210
 		if ($this->user->data['is_registered'] &&
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 	 */
224 224
 	public function mini_post($post_id)
225 225
 	{
226
-		return append_sid("{$this->phpbb_root_path}viewtopic.$this->php_ext", 'p=' . $post_id) . '#p' . $post_id;
226
+		return append_sid("{$this->phpbb_root_path}viewtopic.$this->php_ext", 'p='.$post_id).'#p'.$post_id;
227 227
 	}
228 228
 
229 229
 	/**
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 */
234 234
 	public function report_topic($forum_id, $post_id)
235 235
 	{
236
-		return ($this->auth->acl_get('f_report', $forum_id)) ? append_sid("{$this->phpbb_root_path}report.$this->php_ext", 'f=' . $forum_id . '&amp;p=' . $post_id) : '';
236
+		return ($this->auth->acl_get('f_report', $forum_id)) ? append_sid("{$this->phpbb_root_path}report.$this->php_ext", 'f='.$forum_id.'&amp;p='.$post_id) : '';
237 237
 	}
238 238
 
239 239
 	/**
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 	 */
255 255
 	public function mcp_report($forum_id, $post_id)
256 256
 	{
257
-		return ($this->auth->acl_get('m_report', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&amp;mode=report_details&amp;f=' . $forum_id . '&amp;p=' . $post_id, true, $this->user->session_id) : '';
257
+		return ($this->auth->acl_get('m_report', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&amp;mode=report_details&amp;f='.$forum_id.'&amp;p='.$post_id, true, $this->user->session_id) : '';
258 258
 	}
259 259
 
260 260
 	/**
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 	 */
265 265
 	public function mcp_approve($forum_id, $post_id)
266 266
 	{
267
-		return ($this->auth->acl_get('m_approve', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode=approve_details&amp;f=' . $forum_id . '&amp;p=' . $post_id, true, $this->user->session_id) : '';
267
+		return ($this->auth->acl_get('m_approve', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode=approve_details&amp;f='.$forum_id.'&amp;p='.$post_id, true, $this->user->session_id) : '';
268 268
 	}
269 269
 
270 270
 	/**
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 */
276 276
 	public function mcp_approve_action($forum_id, $post_id, $viewtopic_url)
277 277
 	{
278
-		return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&amp;p=$post_id&amp;f=$forum_id&amp;redirect=" . urlencode(str_replace('&amp;', '&', $viewtopic_url . '&amp;p=' . $post_id . '#p' . $post_id)));
278
+		return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&amp;p=$post_id&amp;f=$forum_id&amp;redirect=".urlencode(str_replace('&amp;', '&', $viewtopic_url.'&amp;p='.$post_id.'#p'.$post_id)));
279 279
 	}
280 280
 
281 281
 	/**
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	 */
287 287
 	public function mcp_restore($forum_id, $post_id, $topic_visibility)
288 288
 	{
289
-		return ($this->auth->acl_get('m_approve', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode=' . (($topic_visibility !== ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics') . '&amp;f=' . $forum_id . '&amp;p=' . $post_id, true, $this->user->session_id) : '';
289
+		return ($this->auth->acl_get('m_approve', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode='.(($topic_visibility !== ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics').'&amp;f='.$forum_id.'&amp;p='.$post_id, true, $this->user->session_id) : '';
290 290
 	}
291 291
 
292 292
 	/**
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
 	 */
296 296
 	public function mcp_notes($poster_id)
297 297
 	{
298
-		return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&amp;mode=user_notes&amp;u=' . $poster_id, true, $this->user->session_id) : '';
298
+		return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&amp;mode=user_notes&amp;u='.$poster_id, true, $this->user->session_id) : '';
299 299
 	}
300 300
 
301 301
 	/**
@@ -306,6 +306,6 @@  discard block
 block discarded – undo
306 306
 	 */
307 307
 	public function mcp_warn($forum_id, $post_id, $poster_id)
308 308
 	{
309
-		return ($this->auth->acl_get('m_warn') && $poster_id !== $this->user->data['user_id'] && $poster_id !== ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&amp;mode=warn_post&amp;f=' . $forum_id . '&amp;p=' . $post_id, true, $this->user->session_id) : '';
309
+		return ($this->auth->acl_get('m_warn') && $poster_id !== $this->user->data['user_id'] && $poster_id !== ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&amp;mode=warn_post&amp;f='.$forum_id.'&amp;p='.$post_id, true, $this->user->session_id) : '';
310 310
 	}
311 311
 }
Please login to merge, or discard this patch.
services/template_loader.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
 		return new \Twig_Source($source, $name);
90 90
 	}
91
-	*/
91
+	 */
92 92
 
93 93
 	/**
94 94
 	 * Twig_ExistsLoaderInterface as of Twig 1.11
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,8 +127,7 @@
 block discarded – undo
127 127
 		{
128 128
 			$data = $this->blocks_data[$id];
129 129
 			$column_name = 'block_tpl';
130
-		}
131
-		else
130
+		} else
132 131
 		{
133 132
 			$data = $this->content_types[$id];
134 133
 			$column_name = $view . '_tpl';
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 		else
132 132
 		{
133 133
 			$data = $this->content_types[$id];
134
-			$column_name = $view . '_tpl';
134
+			$column_name = $view.'_tpl';
135 135
 		}
136 136
 
137 137
 		$return = array(
Please login to merge, or discard this patch.
services/actions/type/pre_delete.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * @param \phpbb\language\language					$language			Language Object
33 33
 	 * @param \phpbb\template\template					$template			Template object
34 34
 	 * @param \blitze\content\services\types			$content_types		Content types object
35
-	*/
35
+	 */
36 36
 	public function __construct(\phpbb\config\db $config, \phpbb\language\language $language, \phpbb\template\template $template, \blitze\content\services\types $content_types)
37 37
 	{
38 38
 		$this->config = $config;
Please login to merge, or discard this patch.
services/actions/type/add.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	 * @param \blitze\sitemaker\services\auto_lang				$auto_lang				Auto add lang file
44 44
 	 * @param \blitze\content\services\form\fields_factory		$fields_factory			Fields factory  object
45 45
 	 * @param \blitze\content\services\views\views_factory		$views_factory			Views factory object
46
-	*/
46
+	 */
47 47
 	public function __construct(\phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, \blitze\sitemaker\services\auto_lang $auto_lang, \blitze\content\services\form\fields_factory $fields_factory, \blitze\content\services\views\views_factory $views_factory)
48 48
 	{
49 49
 		$this->language = $language;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 			'POST_DATE'			=> $this->user->format_date(time()),
73 73
 			'ITEMS_PER_PAGE'	=> 10,
74 74
 			'TOPICS_PER_GROUP'	=> 4,
75
-			'U_ACTION'			=> $u_action . "&amp;do=save&amp;type=$type",
75
+			'U_ACTION'			=> $u_action."&amp;do=save&amp;type=$type",
76 76
 
77 77
 			'S_TYPE_OPS'				=> $this->get_field_options(),
78 78
 			'S_FORUM_OPTIONS'			=> make_forum_select(false, $forum_id, true, false, false),
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 		$options = '';
111 111
 		foreach ($fields as $object)
112 112
 		{
113
-			$options .= '<option value="' . $object->get_name() . '">' . $this->language->lang($object->get_langname()) . "</option>\n";
113
+			$options .= '<option value="'.$object->get_name().'">'.$this->language->lang($object->get_langname())."</option>\n";
114 114
 		}
115 115
 
116 116
 		return $options;
Please login to merge, or discard this patch.
services/actions/type/index.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 	 * @param string								$phpbb_root_path		Path to the phpbb includes directory.
45 45
 	 * @param string								$relative_admin_path	Relative admin root path
46 46
 	 * @param string								$php_ext				php file extension
47
-	*/
47
+	 */
48 48
 	public function __construct(\phpbb\controller\helper $helper, \phpbb\language\language $language, \phpbb\template\template $template, \blitze\content\services\types $content_types, $phpbb_root_path, $relative_admin_path, $php_ext)
49 49
 	{
50 50
 		$this->helper = $helper;
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 		$this->template = $template;
53 53
 		$this->content_types = $content_types;
54 54
 		$this->phpbb_root_path = $phpbb_root_path;
55
-		$this->phpbb_admin_path = $this->phpbb_root_path . $relative_admin_path;
55
+		$this->phpbb_admin_path = $this->phpbb_root_path.$relative_admin_path;
56 56
 		$this->php_ext = $php_ext;
57 57
 	}
58 58
 
@@ -74,16 +74,16 @@  discard block
 block discarded – undo
74 74
 				'L_FORUM_PERMS'	=> $this->language->lang('EDIT_FORUM_PERMISSIONS', $langname),
75 75
 				'S_ENABLED'		=> $entity->get_content_enabled(),
76 76
 
77
-				'U_DELETE'		=> $u_action . '&amp;do=pre_delete&amp;type=' . $type,
78
-				'U_EDIT'		=> $u_action . '&amp;do=edit&amp;type=' . $type,
79
-				'U_STATUS'		=> $u_action . '&amp;do=toggle_status&amp;type=' . $type,
77
+				'U_DELETE'		=> $u_action.'&amp;do=pre_delete&amp;type='.$type,
78
+				'U_EDIT'		=> $u_action.'&amp;do=edit&amp;type='.$type,
79
+				'U_STATUS'		=> $u_action.'&amp;do=toggle_status&amp;type='.$type,
80 80
 				'U_VIEW'		=> $this->helper->route('blitze_content_index', array('type' => $type)),
81
-				'U_POST'		=> append_sid("{$this->phpbb_root_path}ucp." . $this->php_ext, "i=-blitze-content-ucp-content_module&amp;mode=content&amp;action=post&amp;type={$type}"),
82
-				'U_GROUP_PERMS'	=> append_sid("{$this->phpbb_admin_path}index." . $this->php_ext, "i=acp_permissions&amp;mode=setting_group_global"),
83
-				'U_FORUM_PERMS'	=> append_sid("{$this->phpbb_admin_path}index." . $this->php_ext, "i=acp_permissions&amp;mode=setting_forum_local&amp;forum_id[]=$forum_id"),
81
+				'U_POST'		=> append_sid("{$this->phpbb_root_path}ucp.".$this->php_ext, "i=-blitze-content-ucp-content_module&amp;mode=content&amp;action=post&amp;type={$type}"),
82
+				'U_GROUP_PERMS'	=> append_sid("{$this->phpbb_admin_path}index.".$this->php_ext, "i=acp_permissions&amp;mode=setting_group_global"),
83
+				'U_FORUM_PERMS'	=> append_sid("{$this->phpbb_admin_path}index.".$this->php_ext, "i=acp_permissions&amp;mode=setting_forum_local&amp;forum_id[]=$forum_id"),
84 84
 			));
85 85
 		}
86 86
 
87
-		$this->template->assign_var('U_ADD_TYPE', $u_action . "&amp;do=add");
87
+		$this->template->assign_var('U_ADD_TYPE', $u_action."&amp;do=add");
88 88
 	}
89 89
 }
Please login to merge, or discard this patch.
services/actions/type/save.php 3 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,8 +121,7 @@  discard block
 block discarded – undo
121 121
 			$unsaved_entity->set_content_id($entity->get_content_id());
122 122
 			$this->handle_langname_change($forum_id, $entity->get_content_langname(), $unsaved_entity->get_content_langname());
123 123
 			$this->copy_forum_permissions($forum_id, $forum_perm_from);
124
-		}
125
-		else
124
+		} else
126 125
 		{
127 126
 			$forum_id = $this->create_content_forum($unsaved_entity->get_content_langname(), $forum_perm_from);
128 127
 			$unsaved_entity->set_forum_id($forum_id);
@@ -189,8 +188,7 @@  discard block
 block discarded – undo
189 188
 		{
190 189
 			$u_set_permission = append_sid("{$this->phpbb_admin_path}index.$this->php_ext", 'i=permissions&mode=setting_forum_local&forum_id[]=' . $forum_id, true);
191 190
 			$message = $this->language->lang('CONTENT_TYPE_CREATED', '<a href="' . $u_set_permission . '">', '</a>');
192
-		}
193
-		else
191
+		} else
194 192
 		{
195 193
 			meta_refresh(3, $u_action);
196 194
 			$message = $this->language->lang('CONTENT_TYPE_UPDATED');
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * @param \blitze\content\model\entity\type $unsaved_entity
109 109
 	 * @return void
110 110
 	 */
111
-	protected function handle_content_type($type, \blitze\content\model\entity\type &$unsaved_entity)
111
+	protected function handle_content_type($type, \blitze\content\model\entity\type & $unsaved_entity)
112 112
 	{
113 113
 		$forum_perm_from = $this->request->variable('copy_forum_perm', 0);
114 114
 
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
 	{
188 188
 		if (!$type)
189 189
 		{
190
-			$u_set_permission = append_sid("{$this->phpbb_admin_path}index.$this->php_ext", 'i=permissions&mode=setting_forum_local&forum_id[]=' . $forum_id, true);
191
-			$message = $this->language->lang('CONTENT_TYPE_CREATED', '<a href="' . $u_set_permission . '">', '</a>');
190
+			$u_set_permission = append_sid("{$this->phpbb_admin_path}index.$this->php_ext", 'i=permissions&mode=setting_forum_local&forum_id[]='.$forum_id, true);
191
+			$message = $this->language->lang('CONTENT_TYPE_CREATED', '<a href="'.$u_set_permission.'">', '</a>');
192 192
 		}
193 193
 		else
194 194
 		{
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 			$message = $this->language->lang('CONTENT_TYPE_UPDATED');
197 197
 		}
198 198
 
199
-		trigger_error($message . adm_back_link($u_action));
199
+		trigger_error($message.adm_back_link($u_action));
200 200
 	}
201 201
 
202 202
 	/**
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 		if ($old_langname !== $new_langname)
236 236
 		{
237 237
 			$forum_name = $this->language->lang($new_langname);
238
-			$sql = 'UPDATE ' . FORUMS_TABLE . " SET forum_name = '" . $this->db->sql_escape($forum_name) . "' WHERE forum_id = " . (int) $forum_id;
238
+			$sql = 'UPDATE '.FORUMS_TABLE." SET forum_name = '".$this->db->sql_escape($forum_name)."' WHERE forum_id = ".(int) $forum_id;
239 239
 			$this->db->sql_query($sql);
240 240
 		}
241 241
 	}
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 	 */
307 307
 	protected function get_field_settings($field, array $fields_settings, array $fields_defaults)
308 308
 	{
309
-		$field_options = $this->request->variable($field . '_options', array(''), true);
309
+		$field_options = $this->request->variable($field.'_options', array(''), true);
310 310
 
311 311
 		if (sizeof($field_options))
312 312
 		{
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 * @param \blitze\content\model\mapper_factory		$mapper_factory			Mapper factory object
63 63
 	 * @param string									$phpbb_admin_path       Relative admin root path
64 64
 	 * @param string									$php_ext				php file extension
65
-	*/
65
+	 */
66 66
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\cache\driver\driver_interface $cache, \phpbb\config\db $config, \phpbb\db\driver\driver_interface $db, \phpbb\language\language $language, \phpbb\request\request_interface $request, \phpbb\template\template $template, \blitze\content\services\types $content_types, \blitze\sitemaker\services\forum\manager $forum, \blitze\content\model\mapper_factory $mapper_factory, $phpbb_admin_path, $php_ext)
67 67
 	{
68 68
 		$this->auth = $auth;
Please login to merge, or discard this patch.