@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | // @codeCoverageIgnoreStart |
23 | 23 | if (!function_exists('make_forum_select')) |
24 | 24 | { |
25 | - include($phpbb_root_path . 'includes/functions_admin.' . $php_ext); |
|
25 | + include($phpbb_root_path.'includes/functions_admin.'.$php_ext); |
|
26 | 26 | } |
27 | 27 | // @codeCoverageIgnoreEnd |
28 | 28 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $forum_options = array('' => 'ALL_FORUMS'); |
44 | 44 | foreach ($forumlist as $row) |
45 | 45 | { |
46 | - $forum_options[$row['forum_id']] = $row['padding'] . $row['forum_name']; |
|
46 | + $forum_options[$row['forum_id']] = $row['padding'].$row['forum_name']; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | return $forum_options; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | { |
65 | 65 | if (!class_exists('acp_forums')) |
66 | 66 | { |
67 | - include($this->phpbb_root_path . 'includes/acp/acp_forums.' . $this->php_ext); |
|
67 | + include($this->phpbb_root_path.'includes/acp/acp_forums.'.$this->php_ext); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | $this->translator->add_lang('acp/forums'); |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | /** @type \blitze\sitemaker\model\entity\menu $entity */ |
22 | 22 | $entity = $menu_mapper->create_entity(array( |
23 | - 'menu_name' => $this->translator->lang('MENU') . '-' . mt_rand(1000, 9999), |
|
23 | + 'menu_name' => $this->translator->lang('MENU').'-'.mt_rand(1000, 9999), |
|
24 | 24 | )); |
25 | 25 | |
26 | 26 | $entity = $menu_mapper->save($entity); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | $this->ptemplate->assign_block_vars('topicrow', array( |
104 | 104 | 'TOPIC_TITLE' => censor_text($row['topic_title']), |
105 | - 'U_VIEWTOPIC' => append_sid($this->phpbb_root_path . 'viewtopic.' . $this->php_ext, "f=$forum_id&t=$topic_id"), |
|
105 | + 'U_VIEWTOPIC' => append_sid($this->phpbb_root_path.'viewtopic.'.$this->php_ext, "f=$forum_id&t=$topic_id"), |
|
106 | 106 | )); |
107 | 107 | unset($topic_data[$i]); |
108 | 108 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | BOOKMARKS_TABLE => 'b', |
121 | 121 | ), |
122 | 122 | 'WHERE' => array( |
123 | - 'b.user_id = ' . (int) $this->user->data['user_id'], |
|
123 | + 'b.user_id = '.(int) $this->user->data['user_id'], |
|
124 | 124 | 'b.topic_id = t.topic_id', |
125 | 125 | ), |
126 | 126 | ); |
@@ -68,11 +68,11 @@ discard block |
||
68 | 68 | 'USER_POSTS' => $this->user->data['user_posts'], |
69 | 69 | 'NEW_POSTS' => $this->get_new_posts_count(), |
70 | 70 | |
71 | - 'U_PROFILE' => append_sid($this->phpbb_root_path . 'memberlist.' . $this->php_ext, 'mode=viewprofile&u=' . $this->user->data['user_id']), |
|
72 | - 'U_SEARCH_NEW' => append_sid($this->phpbb_root_path . 'search.' . $this->php_ext, 'search_id=newposts'), |
|
73 | - 'U_SEARCH_SELF' => append_sid($this->phpbb_root_path . 'search.' . $this->php_ext, 'search_id=egosearch'), |
|
74 | - 'U_PRIVATE_MSG' => append_sid($this->phpbb_root_path . 'ucp.' . $this->php_ext, 'i=pm&folder=inbox'), |
|
75 | - 'U_LOGOUT' => append_sid($this->phpbb_root_path . 'ucp.' . $this->php_ext, 'mode=logout', true, $this->user->session_id), |
|
71 | + 'U_PROFILE' => append_sid($this->phpbb_root_path.'memberlist.'.$this->php_ext, 'mode=viewprofile&u='.$this->user->data['user_id']), |
|
72 | + 'U_SEARCH_NEW' => append_sid($this->phpbb_root_path.'search.'.$this->php_ext, 'search_id=newposts'), |
|
73 | + 'U_SEARCH_SELF' => append_sid($this->phpbb_root_path.'search.'.$this->php_ext, 'search_id=egosearch'), |
|
74 | + 'U_PRIVATE_MSG' => append_sid($this->phpbb_root_path.'ucp.'.$this->php_ext, 'i=pm&folder=inbox'), |
|
75 | + 'U_LOGOUT' => append_sid($this->phpbb_root_path.'ucp.'.$this->php_ext, 'mode=logout', true, $this->user->session_id), |
|
76 | 76 | 'U_MCP' => $this->get_mcp_url(), |
77 | 77 | 'U_ACP' => $this->get_acp_url(), |
78 | 78 | )); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | protected function get_mcp_url() |
101 | 101 | { |
102 | - return ($this->auth->acl_get('m_')) ? append_sid($this->phpbb_root_path . 'mcp.' . $this->php_ext, false, true, $this->user->session_id) : ''; |
|
102 | + return ($this->auth->acl_get('m_')) ? append_sid($this->phpbb_root_path.'mcp.'.$this->php_ext, false, true, $this->user->session_id) : ''; |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | protected function get_acp_url() |
109 | 109 | { |
110 | - return ($this->auth->acl_get('a_')) ? append_sid($this->phpbb_root_path . 'adm/index.' . $this->php_ext, 'i=-blitze-sitemaker-acp-menu_module', true, $this->user->session_id) : ''; |
|
110 | + return ($this->auth->acl_get('a_')) ? append_sid($this->phpbb_root_path.'adm/index.'.$this->php_ext, 'i=-blitze-sitemaker-acp-menu_module', true, $this->user->session_id) : ''; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | POSTS_TABLE => 'p', |
121 | 121 | ), |
122 | 122 | 'WHERE' => array( |
123 | - 't.topic_id = p.topic_id AND p.post_time > ' . (int) $this->user->data['user_lastvisit'], |
|
123 | + 't.topic_id = p.topic_id AND p.post_time > '.(int) $this->user->data['user_lastvisit'], |
|
124 | 124 | ), |
125 | 125 | ); |
126 | 126 |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | $this->config->set('sm_show_forum_nav', $this->request->variable('show_forum_nav', 0)); |
136 | 136 | $this->config->set('sm_forum_icon', $this->request->variable('forum_icon', '')); |
137 | 137 | |
138 | - $this->trigger_error($this->translator->lang('SETTINGS_SAVED') . adm_back_link($this->u_action)); |
|
138 | + $this->trigger_error($this->translator->lang('SETTINGS_SAVED').adm_back_link($this->u_action)); |
|
139 | 139 | } |
140 | 140 | } |
141 | 141 | |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | { |
148 | 148 | $style_prefs = (array) json_decode($this->config_text->get('sm_layout_prefs'), true); |
149 | 149 | |
150 | - $result = $this->db->sql_query('SELECT style_id, style_name FROM ' . STYLES_TABLE); |
|
150 | + $result = $this->db->sql_query('SELECT style_id, style_name FROM '.STYLES_TABLE); |
|
151 | 151 | |
152 | 152 | $styles = array(); |
153 | 153 | while ($row = $this->db->sql_fetchrow($result)) |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | $path = dirname($path); |
226 | 226 | $name = basename($path); |
227 | 227 | |
228 | - $layouts[$name] = $this->phpbb_root_path . $path . '/'; |
|
228 | + $layouts[$name] = $this->phpbb_root_path.$path.'/'; |
|
229 | 229 | } |
230 | 230 | ksort($layouts); |
231 | 231 |