Completed
Pull Request — master (#26)
by Daniel
14:36 queued 12:14
created
acp/menu_module.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 			'MENU_ID'		=> $menu_id,
97 97
 			'ICON_PICKER'	=> $this->icon->picker(),
98 98
 			'T_PATH'		=> $this->phpbb_root_path,
99
-			'UA_AJAX_URL'   => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '') . '/',
99
+			'UA_AJAX_URL'   => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '').'/',
100 100
 		));
101 101
 
102 102
 		$this->tpl_name = 'acp_menu';
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 		$vars = array('bulk_options', 'forumslist');
151 151
 		extract($this->phpbb_dispatcher->trigger_event('blitze.sitemaker.acp_add_bulk_menu_options', compact($vars)));
152 152
 
153
-		$bulk_options['FORUMS']	= $this->get_forums_string($forumslist);
153
+		$bulk_options['FORUMS'] = $this->get_forums_string($forumslist);
154 154
 
155 155
 		$this->template->assign_var('bulk_options', $bulk_options);
156 156
 	}
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
 	 */
162 162
 	protected function get_forums_string(array $forumslist)
163 163
 	{
164
-		$text = $this->language->lang('FORUM') . "|app.{$this->php_ext}/forum\n";
164
+		$text = $this->language->lang('FORUM')."|app.{$this->php_ext}/forum\n";
165 165
 		foreach ($forumslist as $forum_id => $row)
166 166
 		{
167
-			$text .= "\t" . str_replace('   ', "\t", $row['padding']);
168
-			$text .= $row['forum_name'] . '|';
167
+			$text .= "\t".str_replace('   ', "\t", $row['padding']);
168
+			$text .= $row['forum_name'].'|';
169 169
 			$text .= "viewforum.{$this->php_ext}?f=$forum_id\n";
170 170
 		}
171 171
 
Please login to merge, or discard this patch.