@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | 'MENU_ID' => $menu_id, |
94 | 94 | 'ICON_PICKER' => $this->icon->picker(), |
95 | 95 | 'T_PATH' => $this->phpbb_root_path, |
96 | - 'UA_AJAX_URL' => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '') . '/', |
|
96 | + 'UA_AJAX_URL' => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '').'/', |
|
97 | 97 | )); |
98 | 98 | |
99 | 99 | $this->tpl_name = 'acp_menu'; |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $vars = array('bulk_options', 'forumslist'); |
147 | 147 | extract($this->phpbb_dispatcher->trigger_event('blitze_sitemaker.acp_add_bulk_menu_options', compact($vars))); |
148 | 148 | |
149 | - $bulk_options['FORUMS'] = $this->get_forums_string($forumslist); |
|
149 | + $bulk_options['FORUMS'] = $this->get_forums_string($forumslist); |
|
150 | 150 | |
151 | 151 | $this->template->assign_var('bulk_options', $bulk_options); |
152 | 152 | } |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | foreach ($forumslist as $forum_id => $row) |
162 | 162 | { |
163 | 163 | $text .= str_replace(' ', "\t", $row['padding']); |
164 | - $text .= $row['forum_name'] . '|'; |
|
164 | + $text .= $row['forum_name'].'|'; |
|
165 | 165 | $text .= "viewforum.{$this->php_ext}?f=$forum_id\n"; |
166 | 166 | } |
167 | 167 |