@@ -54,7 +54,7 @@ |
||
| 54 | 54 | |
| 55 | 55 | if (!class_exists('acp_forums')) |
| 56 | 56 | { |
| 57 | - include($this->phpbb_root_path . 'includes/acp/acp_forums.' . $this->php_ext); |
|
| 57 | + include($this->phpbb_root_path.'includes/acp/acp_forums.'.$this->php_ext); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | $translator->add_lang('acp/forums'); |
@@ -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); // @codeCoverageIgnore |
|
| 25 | + include($phpbb_root_path.'includes/functions_admin.'.$php_ext); // @codeCoverageIgnore |
|
| 26 | 26 | } |
| 27 | 27 | // @codeCoverageIgnoreEnd |
| 28 | 28 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $forum_options = array('' => 'ALL'); |
| 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; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | |
| 143 | 143 | if (in_array($topic_type, array(POST_STICKY, POST_ANNOUNCE))) |
| 144 | 144 | { |
| 145 | - $this->store['sql_array']['WHERE'][] = '(t.topic_time_limit > 0 AND (t.topic_time + t.topic_time_limit) < ' . time() . ')'; |
|
| 145 | + $this->store['sql_array']['WHERE'][] = '(t.topic_time_limit > 0 AND (t.topic_time + t.topic_time_limit) < '.time().')'; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | return $this; |
@@ -207,12 +207,12 @@ discard block |
||
| 207 | 207 | $this->store['sql_array']['SELECT'][] = 'tt.mark_time, ft.mark_time as forum_mark_time'; |
| 208 | 208 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 209 | 209 | 'FROM' => array(TOPICS_TRACK_TABLE => 'tt'), |
| 210 | - 'ON' => 'tt.user_id = ' . $this->user->data['user_id'] . ' AND t.topic_id = tt.topic_id' |
|
| 210 | + 'ON' => 'tt.user_id = '.$this->user->data['user_id'].' AND t.topic_id = tt.topic_id' |
|
| 211 | 211 | ); |
| 212 | 212 | |
| 213 | 213 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 214 | 214 | 'FROM' => array(FORUMS_TRACK_TABLE => 'ft'), |
| 215 | - 'ON' => 'ft.user_id = ' . $this->user->data['user_id'] . ' AND t.forum_id = ft.forum_id' |
|
| 215 | + 'ON' => 'ft.user_id = '.$this->user->data['user_id'].' AND t.forum_id = ft.forum_id' |
|
| 216 | 216 | ); |
| 217 | 217 | } |
| 218 | 218 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | { |
| 232 | 232 | if ($unix_start_time && $unix_stop_time) |
| 233 | 233 | { |
| 234 | - $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time') . " BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 234 | + $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time')." BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | return $this; |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | */ |
| 264 | 264 | public function set_sorting($sort_key, $sort_dir = 'DESC') |
| 265 | 265 | { |
| 266 | - $this->store['sql_array']['ORDER_BY'] = $sort_key . ' ' . $sort_dir; |
|
| 266 | + $this->store['sql_array']['ORDER_BY'] = $sort_key.' '.$sort_dir; |
|
| 267 | 267 | |
| 268 | 268 | return $this; |
| 269 | 269 | } |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | { |
| 325 | 325 | if (!empty($column_id)) |
| 326 | 326 | { |
| 327 | - $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column . ' = ' . (int) $column_id; |
|
| 327 | + $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column.' = '.(int) $column_id; |
|
| 328 | 328 | } |
| 329 | 329 | } |
| 330 | 330 | |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | { |
| 336 | 336 | if ($check_visibility) |
| 337 | 337 | { |
| 338 | - $this->store['sql_array']['WHERE'][] = 't.topic_time <= ' . time(); |
|
| 338 | + $this->store['sql_array']['WHERE'][] = 't.topic_time <= '.time(); |
|
| 339 | 339 | $this->store['sql_array']['WHERE'][] = $this->content_visibility->get_global_visibility_sql('topic', $this->ex_fid_ary, 't.'); |
| 340 | 340 | } |
| 341 | 341 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | if (sizeof($query_ids)) |
| 77 | 77 | { |
| 78 | - $sql_where .= (($sql_where) ? ' AND ' : '') . $this->db->sql_in_set('user_id', $query_ids); |
|
| 78 | + $sql_where .= (($sql_where) ? ' AND ' : '').$this->db->sql_in_set('user_id', $query_ids); |
|
| 79 | 79 | $this->query($sql_where); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -150,8 +150,8 @@ discard block |
||
| 150 | 150 | public function get_profile_fields() |
| 151 | 151 | { |
| 152 | 152 | $sql = 'SELECT l.lang_name, f.field_ident |
| 153 | - FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f |
|
| 154 | - WHERE l.lang_id = ' . $this->user->get_iso_lang_id() . ' |
|
| 153 | + FROM ' . PROFILE_LANG_TABLE.' l, '.PROFILE_FIELDS_TABLE.' f |
|
| 154 | + WHERE l.lang_id = ' . $this->user->get_iso_lang_id().' |
|
| 155 | 155 | AND f.field_active = 1 |
| 156 | 156 | AND f.field_no_view = 0 |
| 157 | 157 | AND f.field_hide = 0 |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | */ |
| 204 | 204 | protected function get_search_url($user_id) |
| 205 | 205 | { |
| 206 | - return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path . 'search.' . $this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 206 | + return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path.'search.'.$this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | { |
| 215 | 215 | if (!function_exists('phpbb_get_user_rank')) |
| 216 | 216 | { |
| 217 | - include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext); |
|
| 217 | + include($this->phpbb_root_path.'includes/functions_display.'.$this->php_ext); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $user_rank_data = phpbb_get_user_rank($row, $row['user_posts']); |
@@ -288,8 +288,8 @@ discard block |
||
| 288 | 288 | protected function get_sql_statement($sql_where = '', $order_by = '') |
| 289 | 289 | { |
| 290 | 290 | return 'SELECT user_id, username, user_type, user_colour, user_avatar, user_avatar_type, user_avatar_height, user_avatar_width, user_regdate, user_lastvisit, user_birthday, user_posts, user_rank, user_allow_viewemail, user_allow_pm, user_jabber, user_inactive_reason |
| 291 | - FROM ' . USERS_TABLE . |
|
| 292 | - (($sql_where) ? ' WHERE ' . $sql_where : '') . |
|
| 293 | - (($order_by) ? ' ORDER BY ' . $order_by : ''); |
|
| 291 | + FROM ' . USERS_TABLE. |
|
| 292 | + (($sql_where) ? ' WHERE '.$sql_where : ''). |
|
| 293 | + (($order_by) ? ' ORDER BY '.$order_by : ''); |
|
| 294 | 294 | } |
| 295 | 295 | } |
@@ -45,11 +45,11 @@ |
||
| 45 | 45 | $curr_key = (int) array_search($settings['current_user'], $userlist); |
| 46 | 46 | |
| 47 | 47 | // Remove the invalid user from the list |
| 48 | - $new_list = str_replace($settings['current_user'] . ',', '', $settings['userlist'] . ','); |
|
| 48 | + $new_list = str_replace($settings['current_user'].',', '', $settings['userlist'].','); |
|
| 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; |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | protected function get_email_url(array $row) |
| 98 | 98 | { |
| 99 | - return ($this->email_form_allowed) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&u=' . $row['user_id']) : (($this->mailto_allowed) ? 'mailto:' . $row['user_email'] : ''); |
|
| 99 | + return ($this->email_form_allowed) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&u='.$row['user_id']) : (($this->mailto_allowed) ? 'mailto:'.$row['user_email'] : ''); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $jabber = array( |
| 128 | 128 | 'ID' => 'jabber', |
| 129 | 129 | 'NAME' => $this->translator->lang('JABBER'), |
| 130 | - 'U_CONTACT' => append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=contact&action=jabber&u=' . $row['user_id']), |
|
| 130 | + 'U_CONTACT' => append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=contact&action=jabber&u='.$row['user_id']), |
|
| 131 | 131 | ); |
| 132 | 132 | } |
| 133 | 133 | |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $pm = array( |
| 157 | 157 | 'ID' => 'pm', |
| 158 | 158 | 'NAME' => $this->translator->lang('SEND_PRIVATE_MESSAGE'), |
| 159 | - 'U_CONTACT' => append_sid("{$this->phpbb_root_path}ucp.{$this->php_ext}", 'i=pm&mode=compose&u=' . $row['user_id']), |
|
| 159 | + 'U_CONTACT' => append_sid("{$this->phpbb_root_path}ucp.{$this->php_ext}", 'i=pm&mode=compose&u='.$row['user_id']), |
|
| 160 | 160 | ); |
| 161 | 161 | } |
| 162 | 162 | |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | { |
| 220 | 220 | if (!function_exists('phpbb_get_banned_user_ids')) |
| 221 | 221 | { |
| 222 | - include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); |
|
| 222 | + include($this->phpbb_root_path.'includes/functions_user.'.$this->php_ext); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | return phpbb_get_banned_user_ids($user_ids, false); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | public function get_users_groups() |
| 41 | 41 | { |
| 42 | 42 | $sql = 'SELECT group_id |
| 43 | - FROM ' . USER_GROUP_TABLE . ' |
|
| 43 | + FROM ' . USER_GROUP_TABLE.' |
|
| 44 | 44 | WHERE user_id = ' . (int) $this->user->data['user_id']; |
| 45 | 45 | $result = $this->db->sql_query($sql); |
| 46 | 46 | |
@@ -83,13 +83,13 @@ discard block |
||
| 83 | 83 | $sql = $this->_get_group_sql($mode); |
| 84 | 84 | $result = $this->db->sql_query($sql); |
| 85 | 85 | |
| 86 | - $options = '<option value="0">' . $this->translator->lang('ALL') . '</option>'; |
|
| 86 | + $options = '<option value="0">'.$this->translator->lang('ALL').'</option>'; |
|
| 87 | 87 | while ($row = $this->db->sql_fetchrow($result)) |
| 88 | 88 | { |
| 89 | 89 | $group_name = $this->_get_group_name($row); |
| 90 | 90 | $group_class = $this->_get_group_class($row['group_type']); |
| 91 | 91 | $selected_option = $this->_get_selected_option($row['group_id'], $selected); |
| 92 | - $options .= '<option' . $group_class . ' value="' . $row['group_id'] . '"' . $selected_option . '>' . $group_name . '</option>'; |
|
| 92 | + $options .= '<option'.$group_class.' value="'.$row['group_id'].'"'.$selected_option.'>'.$group_name.'</option>'; |
|
| 93 | 93 | } |
| 94 | 94 | $this->db->sql_freeresult($result); |
| 95 | 95 | |
@@ -103,8 +103,8 @@ discard block |
||
| 103 | 103 | private function _get_group_sql($mode) |
| 104 | 104 | { |
| 105 | 105 | return 'SELECT group_id, group_name, group_type |
| 106 | - FROM ' . GROUPS_TABLE . |
|
| 107 | - (($mode === 'special') ? ' WHERE group_type = ' . GROUP_SPECIAL : '') . ' |
|
| 106 | + FROM ' . GROUPS_TABLE. |
|
| 107 | + (($mode === 'special') ? ' WHERE group_type = '.GROUP_SPECIAL : '').' |
|
| 108 | 108 | ORDER BY group_type DESC, group_name ASC'; |
| 109 | 109 | } |
| 110 | 110 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | private function _get_group_name(array $row) |
| 116 | 116 | { |
| 117 | - return ($row['group_type'] == GROUP_SPECIAL) ? $this->translator->lang('G_' . $row['group_name']) : ucfirst($row['group_name']); |
|
| 117 | + return ($row['group_type'] == GROUP_SPECIAL) ? $this->translator->lang('G_'.$row['group_name']) : ucfirst($row['group_name']); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $content = $this->request->variable('content', '', true); |
| 70 | 70 | $cblocks = $this->get_custom_blocks(); |
| 71 | 71 | |
| 72 | - $sql_data = $this->get_default_fields($block_id); |
|
| 72 | + $sql_data = $this->get_default_fields($block_id); |
|
| 73 | 73 | $sql_data['block_content'] = $content; |
| 74 | 74 | |
| 75 | 75 | generate_text_for_storage($sql_data['block_content'], $sql_data['bbcode_uid'], $sql_data['bbcode_bitfield'], $sql_data['bbcode_options'], true, true, true); |
@@ -130,11 +130,11 @@ discard block |
||
| 130 | 130 | { |
| 131 | 131 | if (!$block_exists) |
| 132 | 132 | { |
| 133 | - $sql = 'INSERT INTO ' . $this->cblocks_table . ' ' . $this->db->sql_build_array('INSERT', $sql_data); |
|
| 133 | + $sql = 'INSERT INTO '.$this->cblocks_table.' '.$this->db->sql_build_array('INSERT', $sql_data); |
|
| 134 | 134 | } |
| 135 | 135 | else |
| 136 | 136 | { |
| 137 | - $sql = 'UPDATE ' . $this->cblocks_table . ' SET ' . $this->db->sql_build_array('UPDATE', $sql_data) . ' WHERE block_id = ' . (int) $sql_data['block_id']; |
|
| 137 | + $sql = 'UPDATE '.$this->cblocks_table.' SET '.$this->db->sql_build_array('UPDATE', $sql_data).' WHERE block_id = '.(int) $sql_data['block_id']; |
|
| 138 | 138 | } |
| 139 | 139 | $this->db->sql_query($sql); |
| 140 | 140 | $this->cache->destroy('pt_cblocks'); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | if ($edit_mode !== false) |
| 152 | 152 | { |
| 153 | 153 | decode_message($cblock['block_content'], $cblock['bbcode_uid']); |
| 154 | - $content = '<div id="block-editor-' . $cblock['block_id'] . '" class="editable editable-block" data-service="blitze.sitemaker.block.custom" data-method="edit" data-raw="' . $cblock['block_content'] . '">' . $content . '</div>'; |
|
| 154 | + $content = '<div id="block-editor-'.$cblock['block_id'].'" class="editable editable-block" data-service="blitze.sitemaker.block.custom" data-method="edit" data-raw="'.$cblock['block_content'].'">'.$content.'</div>'; |
|
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | 157 | |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | private function change_user() |
| 148 | 148 | { |
| 149 | 149 | $change = false; |
| 150 | - if ($this->settings['rotation'] == 'pageload' || $this->settings['last_changed'] < strtotime('-1 ' . self::$rotations[$this->settings['rotation']])) |
|
| 150 | + if ($this->settings['rotation'] == 'pageload' || $this->settings['last_changed'] < strtotime('-1 '.self::$rotations[$this->settings['rotation']])) |
|
| 151 | 151 | { |
| 152 | 152 | $this->settings['last_changed'] = time(); |
| 153 | 153 | $change = true; |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | private function get_settings(array $bdata) |
| 164 | 164 | { |
| 165 | - $cached_settings = $this->cache->get('pt_block_data_' . $bdata['bid']); |
|
| 165 | + $cached_settings = $this->cache->get('pt_block_data_'.$bdata['bid']); |
|
| 166 | 166 | $settings = ($cached_settings && $cached_settings['hash'] === $bdata['hash']) ? $cached_settings : $bdata['settings']; |
| 167 | 167 | $settings['hash'] = $bdata['hash']; |
| 168 | 168 | |
@@ -182,8 +182,8 @@ discard block |
||
| 182 | 182 | $sql_data = array( |
| 183 | 183 | 'settings' => json_encode($settings) |
| 184 | 184 | ); |
| 185 | - $this->db->sql_query('UPDATE ' . $this->blocks_table . ' SET ' . $this->db->sql_build_array('UPDATE', $sql_data) . ' WHERE bid = ' . (int) $bid); |
|
| 186 | - $this->cache->put('pt_block_data_' . $bid, $this->settings); |
|
| 185 | + $this->db->sql_query('UPDATE '.$this->blocks_table.' SET '.$this->db->sql_build_array('UPDATE', $sql_data).' WHERE bid = '.(int) $bid); |
|
| 186 | + $this->cache->put('pt_block_data_'.$bid, $this->settings); |
|
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
@@ -235,8 +235,8 @@ discard block |
||
| 235 | 235 | $rotation = $this->settings['rotation']; |
| 236 | 236 | |
| 237 | 237 | $this->ptemplate->assign_vars(array( |
| 238 | - 'QTYPE_EXPLAIN' => ($query_type == 'posts' || $query_type == 'recent') ? $this->translator->lang('QTYPE_' . strtoupper($query_type)) : '', |
|
| 239 | - 'TITLE_EXPLAIN' => ($rotation != 'pageload') ? $this->translator->lang(strtoupper($rotation) . '_MEMBER') : '', |
|
| 238 | + 'QTYPE_EXPLAIN' => ($query_type == 'posts' || $query_type == 'recent') ? $this->translator->lang('QTYPE_'.strtoupper($query_type)) : '', |
|
| 239 | + 'TITLE_EXPLAIN' => ($rotation != 'pageload') ? $this->translator->lang(strtoupper($rotation).'_MEMBER') : '', |
|
| 240 | 240 | )); |
| 241 | 241 | } |
| 242 | 242 | |