@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | 'MENU_ID' => $menu_id, |
| 93 | 93 | 'ICON_PICKER' => $this->icon->picker(), |
| 94 | 94 | 'T_PATH' => $this->phpbb_root_path, |
| 95 | - 'UA_AJAX_URL' => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '') . '/', |
|
| 95 | + 'UA_AJAX_URL' => $this->controller_helper->route('blitze_sitemaker_menus_admin', array(), true, '').'/', |
|
| 96 | 96 | )); |
| 97 | 97 | |
| 98 | 98 | $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 | |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | $this->phpbb_dispatcher->trigger_event('blitze.sitemaker.acp_save_settings'); |
| 151 | 151 | |
| 152 | - $this->trigger_error($this->translator->lang('SETTINGS_SAVED') . adm_back_link($this->u_action)); |
|
| 152 | + $this->trigger_error($this->translator->lang('SETTINGS_SAVED').adm_back_link($this->u_action)); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | { |
| 173 | 173 | $style_prefs = (array) json_decode($this->config_text->get('sm_layout_prefs'), true); |
| 174 | 174 | |
| 175 | - $result = $this->db->sql_query('SELECT style_id, style_name FROM ' . STYLES_TABLE); |
|
| 175 | + $result = $this->db->sql_query('SELECT style_id, style_name FROM '.STYLES_TABLE); |
|
| 176 | 176 | |
| 177 | 177 | $styles = array(); |
| 178 | 178 | while ($row = $this->db->sql_fetchrow($result)) |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | $path = dirname($path); |
| 240 | 240 | $name = basename($path); |
| 241 | 241 | |
| 242 | - $layouts[$name] = $this->phpbb_root_path . $path . '/'; |
|
| 242 | + $layouts[$name] = $this->phpbb_root_path.$path.'/'; |
|
| 243 | 243 | } |
| 244 | 244 | ksort($layouts); |
| 245 | 245 | |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | $id = $entity->get_menu_id(); |
| 293 | 293 | $name = $entity->get_menu_name(); |
| 294 | 294 | $selected = ($id == $this->config['sm_navbar_menu']) ? ' selected="selected"' : ''; |
| 295 | - $options .= '<option value="' . $id . '"' . $selected . '>' . $name . '</option>'; |
|
| 295 | + $options .= '<option value="'.$id.'"'.$selected.'>'.$name.'</option>'; |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | return $options; |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $this->config_path = $config_path; |
| 40 | 40 | $this->php_ext = $php_ext; |
| 41 | 41 | |
| 42 | - $this->config_template = __DIR__ . '/default.config'; |
|
| 42 | + $this->config_template = __DIR__.'/default.config'; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | $config_file = $this->get_config_file(); |
| 52 | 52 | |
| 53 | 53 | // credit: http://jafty.com/blog/quick-way-to-check-if-string-exists-in-a-file-with-php/ |
| 54 | - if (!$this->filesystem->exists($config_file) || !exec('grep ' . escapeshellarg($searcString) . ' ' . $config_file)) |
|
| 54 | + if (!$this->filesystem->exists($config_file) || !exec('grep '.escapeshellarg($searcString).' '.$config_file)) |
|
| 55 | 55 | { |
| 56 | 56 | $this->filesystem->copy($this->config_template, $config_file, true); |
| 57 | 57 | } |
@@ -123,6 +123,6 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | protected function get_config_file() |
| 125 | 125 | { |
| 126 | - return $this->config_path . 'config.' . $this->php_ext; |
|
| 126 | + return $this->config_path.'config.'.$this->php_ext; |
|
| 127 | 127 | } |
| 128 | 128 | } |
@@ -59,6 +59,6 @@ |
||
| 59 | 59 | */ |
| 60 | 60 | public function get_access_key() |
| 61 | 61 | { |
| 62 | - return sha1($this->user->data['user_form_salt'] . 'filemanager'); |
|
| 62 | + return sha1($this->user->data['user_form_salt'].'filemanager'); |
|
| 63 | 63 | } |
| 64 | 64 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | if (sizeof($query_ids)) |
| 85 | 85 | { |
| 86 | - $sql_where .= (($sql_where) ? ' AND ' : '') . $this->db->sql_in_set('user_id', $query_ids); |
|
| 86 | + $sql_where .= (($sql_where) ? ' AND ' : '').$this->db->sql_in_set('user_id', $query_ids); |
|
| 87 | 87 | $this->query($sql_where); |
| 88 | 88 | } |
| 89 | 89 | |
@@ -160,8 +160,8 @@ discard block |
||
| 160 | 160 | public function get_profile_fields() |
| 161 | 161 | { |
| 162 | 162 | $sql = 'SELECT l.lang_name, f.field_ident |
| 163 | - FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f |
|
| 164 | - WHERE l.lang_id = ' . (int) $this->user->get_iso_lang_id() . ' |
|
| 163 | + FROM ' . PROFILE_LANG_TABLE.' l, '.PROFILE_FIELDS_TABLE.' f |
|
| 164 | + WHERE l.lang_id = ' . (int) $this->user->get_iso_lang_id().' |
|
| 165 | 165 | AND f.field_active = 1 |
| 166 | 166 | AND f.field_no_view = 0 |
| 167 | 167 | AND f.field_hide = 0 |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | */ |
| 220 | 220 | protected function get_search_url($user_id) |
| 221 | 221 | { |
| 222 | - return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path . 'search.' . $this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 222 | + return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path.'search.'.$this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | /** |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | { |
| 231 | 231 | if (!function_exists('phpbb_get_user_rank')) |
| 232 | 232 | { |
| 233 | - include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext); |
|
| 233 | + include($this->phpbb_root_path.'includes/functions_display.'.$this->php_ext); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | $user_rank_data = phpbb_get_user_rank($row, $row['user_posts']); |
@@ -304,8 +304,8 @@ discard block |
||
| 304 | 304 | protected function get_sql_statement($sql_where = '', $order_by = '') |
| 305 | 305 | { |
| 306 | 306 | 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_email, user_allow_viewemail, user_allow_pm, user_jabber, user_inactive_reason |
| 307 | - FROM ' . USERS_TABLE . |
|
| 308 | - (($sql_where) ? ' WHERE ' . $sql_where : '') . |
|
| 309 | - (($order_by) ? ' ORDER BY ' . $order_by : ''); |
|
| 307 | + FROM ' . USERS_TABLE. |
|
| 308 | + (($sql_where) ? ' WHERE '.$sql_where : ''). |
|
| 309 | + (($order_by) ? ' ORDER BY '.$order_by : ''); |
|
| 310 | 310 | } |
| 311 | 311 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | { |
| 80 | 80 | $sql = "SELECT * |
| 81 | 81 | FROM $this->items_table |
| 82 | - WHERE $this->pk = " . (int) $node_id ; |
|
| 82 | + WHERE $this->pk = ".(int) $node_id; |
|
| 83 | 83 | $result = $this->db->sql_query($sql); |
| 84 | 84 | $row = $this->db->sql_fetchrow($result); |
| 85 | 85 | $this->db->sql_freeresult($result); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $this->items_table => 'i' |
| 109 | 109 | ), |
| 110 | 110 | 'WHERE' => array( |
| 111 | - 'i.depth ' . (($max_depth) ? ' BETWEEN ' . (int) $start . ' AND ' . (int) ($start + $max_depth) : ' >= ' . (int) $start), |
|
| 111 | + 'i.depth '.(($max_depth) ? ' BETWEEN '.(int) $start.' AND '.(int) ($start + $max_depth) : ' >= '.(int) $start), |
|
| 112 | 112 | $this->sql_where, |
| 113 | 113 | ), |
| 114 | 114 | 'ORDER_BY' => 'i.left_id ASC', |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @param \phpbb\template\twig\twig $template |
| 156 | 156 | * @param string $handle |
| 157 | 157 | */ |
| 158 | - public function display_list(array $data, \phpbb\template\twig\twig &$template, $handle = 'tree') |
|
| 158 | + public function display_list(array $data, \phpbb\template\twig\twig & $template, $handle = 'tree') |
|
| 159 | 159 | { |
| 160 | 160 | $prev_depth = 0; |
| 161 | 161 | $parental_depth = array(0 => -1); |
@@ -164,22 +164,22 @@ discard block |
||
| 164 | 164 | for ($i = 0, $size = sizeof($data); $i < $size; $i++) |
| 165 | 165 | { |
| 166 | 166 | $row = $data[$i]; |
| 167 | - $this_depth = $parental_depth[$row['parent_id']] + 1; |
|
| 168 | - $repeat = abs($prev_depth - $this_depth); |
|
| 167 | + $this_depth = $parental_depth[$row['parent_id']] + 1; |
|
| 168 | + $repeat = abs($prev_depth - $this_depth); |
|
| 169 | 169 | |
| 170 | - $tpl_data = array( |
|
| 170 | + $tpl_data = array( |
|
| 171 | 171 | 'PREV_DEPTH' => $prev_depth, |
| 172 | 172 | 'THIS_DEPTH' => $this_depth, |
| 173 | 173 | 'NUM_KIDS' => $this->count_descendants($row), |
| 174 | 174 | ); |
| 175 | 175 | |
| 176 | 176 | $template->assign_block_vars($handle, array_merge($tpl_data, array_change_key_case($row, CASE_UPPER))); |
| 177 | - $this->recursively_close_tags($repeat, $handle . '.close', $template); |
|
| 177 | + $this->recursively_close_tags($repeat, $handle.'.close', $template); |
|
| 178 | 178 | |
| 179 | 179 | $prev_depth = $this_depth; |
| 180 | 180 | $parental_depth[$row[$this->pk]] = $this_depth; |
| 181 | 181 | } |
| 182 | - $this->recursively_close_tags($prev_depth, 'close_' . $handle, $template); |
|
| 182 | + $this->recursively_close_tags($prev_depth, 'close_'.$handle, $template); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -188,11 +188,11 @@ discard block |
||
| 188 | 188 | * @param \phpbb\template\twig\twig $template |
| 189 | 189 | * @return void |
| 190 | 190 | */ |
| 191 | - protected function recursively_close_tags($repeat, $handle, \phpbb\template\twig\twig &$template) |
|
| 191 | + protected function recursively_close_tags($repeat, $handle, \phpbb\template\twig\twig & $template) |
|
| 192 | 192 | { |
| 193 | 193 | for ($i = 0; $i < $repeat; $i++) |
| 194 | 194 | { |
| 195 | - $template->assign_block_vars('close_' . $handle, array()); |
|
| 195 | + $template->assign_block_vars('close_'.$handle, array()); |
|
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | 198 | |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | */ |
| 259 | 259 | protected function get_padded_title($padding, $title) |
| 260 | 260 | { |
| 261 | - return (($padding) ? $padding . '⤷ ' : '') . $title; |
|
| 261 | + return (($padding) ? $padding.'⤷ ' : '').$title; |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -270,6 +270,6 @@ discard block |
||
| 270 | 270 | protected function get_html_option(array $row, array $selected_ids, $title) |
| 271 | 271 | { |
| 272 | 272 | $selected = (in_array($row[$this->pk], $selected_ids)) ? ' selected="selected' : ''; |
| 273 | - return '<option value="' . $row[$this->pk] . '"' . $selected . '>' . $title . '</option>'; |
|
| 273 | + return '<option value="'.$row[$this->pk].'"'.$selected.'>'.$title.'</option>'; |
|
| 274 | 274 | } |
| 275 | 275 | } |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | $this->store['sql_array']['SELECT'][] = 'ws.notify_status'; |
| 166 | 166 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 167 | 167 | 'FROM' => array($keys[$type]['table'] => 'ws'), |
| 168 | - 'ON' => $keys[$type]['cond'] . ' AND ws.user_id = ' . (int) $this->user->data['user_id'], |
|
| 168 | + 'ON' => $keys[$type]['cond'].' AND ws.user_id = '.(int) $this->user->data['user_id'], |
|
| 169 | 169 | ); |
| 170 | 170 | } |
| 171 | 171 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | $this->store['sql_array']['SELECT'][] = 'bm.topic_id as bookmarked'; |
| 185 | 185 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 186 | 186 | 'FROM' => array(BOOKMARKS_TABLE => 'bm'), |
| 187 | - 'ON' => 'bm.user_id = ' . (int) $this->user->data['user_id'] . ' AND t.topic_id = bm.topic_id' |
|
| 187 | + 'ON' => 'bm.user_id = '.(int) $this->user->data['user_id'].' AND t.topic_id = bm.topic_id' |
|
| 188 | 188 | ); |
| 189 | 189 | } |
| 190 | 190 | |
@@ -205,12 +205,12 @@ discard block |
||
| 205 | 205 | $this->store['sql_array']['SELECT'][] = 'tt.mark_time, ft.mark_time as forum_mark_time'; |
| 206 | 206 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 207 | 207 | 'FROM' => array(TOPICS_TRACK_TABLE => 'tt'), |
| 208 | - 'ON' => 'tt.user_id = ' . (int) $this->user->data['user_id'] . ' AND t.topic_id = tt.topic_id' |
|
| 208 | + 'ON' => 'tt.user_id = '.(int) $this->user->data['user_id'].' AND t.topic_id = tt.topic_id' |
|
| 209 | 209 | ); |
| 210 | 210 | |
| 211 | 211 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 212 | 212 | 'FROM' => array(FORUMS_TRACK_TABLE => 'ft'), |
| 213 | - 'ON' => 'ft.user_id = ' . (int) $this->user->data['user_id'] . ' AND t.forum_id = ft.forum_id' |
|
| 213 | + 'ON' => 'ft.user_id = '.(int) $this->user->data['user_id'].' AND t.forum_id = ft.forum_id' |
|
| 214 | 214 | ); |
| 215 | 215 | } |
| 216 | 216 | |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | { |
| 230 | 230 | if ($unix_start_time && $unix_stop_time) |
| 231 | 231 | { |
| 232 | - $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time') . " BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 232 | + $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time')." BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 233 | 233 | } |
| 234 | 234 | |
| 235 | 235 | return $this; |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | */ |
| 269 | 269 | public function set_sorting($sort_key, $sort_dir = 'DESC') |
| 270 | 270 | { |
| 271 | - $this->store['sql_array']['ORDER_BY'] = $sort_key . ' ' . $sort_dir; |
|
| 271 | + $this->store['sql_array']['ORDER_BY'] = $sort_key.' '.$sort_dir; |
|
| 272 | 272 | |
| 273 | 273 | return $this; |
| 274 | 274 | } |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | { |
| 337 | 337 | if (!empty($column_id)) |
| 338 | 338 | { |
| 339 | - $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column . ' = ' . (int) $column_id; |
|
| 339 | + $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column.' = '.(int) $column_id; |
|
| 340 | 340 | } |
| 341 | 341 | } |
| 342 | 342 | |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | { |
| 349 | 349 | if ($check_visibility) |
| 350 | 350 | { |
| 351 | - $this->store['sql_array']['WHERE'][] = 't.topic_time <= ' . (int) $this->time(); |
|
| 351 | + $this->store['sql_array']['WHERE'][] = 't.topic_time <= '.(int) $this->time(); |
|
| 352 | 352 | $this->store['sql_array']['WHERE'][] = $this->content_visibility->get_global_visibility_sql('topic', array_map('intval', $this->ex_fid_ary), 't.'); |
| 353 | 353 | } |
| 354 | 354 | } |
@@ -110,8 +110,8 @@ discard block |
||
| 110 | 110 | $this->ptemplate->assign_block_vars('wordgraph', array( |
| 111 | 111 | 'WORD' => $this->show_word($word, $words_array[$word], $settings['show_word_count']), |
| 112 | 112 | 'WORD_SIZE' => $settings['min_word_size'] + (($words_array[$word] - $params['min_count']) * $params['size_step']), |
| 113 | - 'WORD_COLOR' => $r . $g . $b, |
|
| 114 | - 'WORD_URL' => append_sid("{$this->phpbb_root_path}search.$this->php_ext", 'keywords=' . urlencode($word)), |
|
| 113 | + 'WORD_COLOR' => $r.$g.$b, |
|
| 114 | + 'WORD_URL' => append_sid("{$this->phpbb_root_path}search.$this->php_ext", 'keywords='.urlencode($word)), |
|
| 115 | 115 | )); |
| 116 | 116 | } |
| 117 | 117 | } |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | AND m.word_id = l.word_id |
| 189 | 189 | AND m.post_id = p.post_id |
| 190 | 190 | AND t.topic_id = p.topic_id |
| 191 | - AND t.topic_time <= ' . time() . ' |
|
| 192 | - AND ' . $this->content_visibility->get_global_visibility_sql('topic', array_map('intval', array_keys($this->auth->acl_getf('!f_read', true))), 't.') . |
|
| 191 | + AND t.topic_time <= ' . time().' |
|
| 192 | + AND ' . $this->content_visibility->get_global_visibility_sql('topic', array_map('intval', array_keys($this->auth->acl_getf('!f_read', true))), 't.'). |
|
| 193 | 193 | $sql_where, |
| 194 | 194 | 'GROUP_BY' => 'l.word_text, l.word_count', |
| 195 | 195 | 'ORDER_BY' => 'l.word_count DESC' |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | if ($exclude_words) |
| 207 | 207 | { |
| 208 | 208 | $exclude_words = array_filter(explode(',', str_replace(' ', '', strtolower($exclude_words)))); |
| 209 | - $sql_where = (sizeof($exclude_words)) ? ' AND ' . $this->db->sql_in_set('l.word_text', $exclude_words, true) : ''; |
|
| 209 | + $sql_where = (sizeof($exclude_words)) ? ' AND '.$this->db->sql_in_set('l.word_text', $exclude_words, true) : ''; |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | return $sql_where; |
@@ -220,6 +220,6 @@ discard block |
||
| 220 | 220 | */ |
| 221 | 221 | private function show_word($word, $count, $show_count) |
| 222 | 222 | { |
| 223 | - return censor_text(($show_count) ? $word . '(' . $count . ')' : $word); |
|
| 223 | + return censor_text(($show_count) ? $word.'('.$count.')' : $word); |
|
| 224 | 224 | } |
| 225 | 225 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | $this->ptemplate->assign_block_vars('topicrow', array( |
| 101 | 101 | 'TOPIC_TITLE' => censor_text($row['topic_title']), |
| 102 | - 'U_VIEWTOPIC' => append_sid($this->phpbb_root_path . 'viewtopic.' . $this->php_ext, "f=$forum_id&t=$topic_id"), |
|
| 102 | + 'U_VIEWTOPIC' => append_sid($this->phpbb_root_path.'viewtopic.'.$this->php_ext, "f=$forum_id&t=$topic_id"), |
|
| 103 | 103 | )); |
| 104 | 104 | unset($topic_data[$i]); |
| 105 | 105 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | { |
| 141 | 141 | return array( |
| 142 | 142 | 'WHERE' => array( |
| 143 | - 't.topic_last_post_time > ' . (int) $this->user->data['user_lastvisit'], |
|
| 143 | + 't.topic_last_post_time > '.(int) $this->user->data['user_lastvisit'], |
|
| 144 | 144 | 't.topic_moved_id = 0', |
| 145 | 145 | ), |
| 146 | 146 | ); |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | POSTS_TABLE => 'p', |
| 157 | 157 | ), |
| 158 | 158 | 'WHERE' => array( |
| 159 | - 't.topic_id = p.topic_id AND p.post_time > ' . (int) $this->user->data['user_lastvisit'], |
|
| 159 | + 't.topic_id = p.topic_id AND p.post_time > '.(int) $this->user->data['user_lastvisit'], |
|
| 160 | 160 | ), |
| 161 | 161 | ); |
| 162 | 162 | } |