@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | * @param \phpbb\user $user User object |
| 35 | 35 | * @param string $phpbb_root_path Path to the phpbb includes directory. |
| 36 | 36 | * @param string $php_ext php file extension |
| 37 | - */ |
|
| 37 | + */ |
|
| 38 | 38 | public function __construct(\phpbb\auth\auth $auth, \phpbb\config\db $config, \phpbb\user $user, $phpbb_root_path, $php_ext) |
| 39 | 39 | { |
| 40 | 40 | $this->auth = $auth; |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | { |
| 117 | 117 | return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&mode=approve_details&f=' . $post_data['forum_id'] . '&p=' . $post_data['post_id'], true, $this->user->session_id); |
| 118 | 118 | } |
| 119 | - */ |
|
| 119 | + */ |
|
| 120 | 120 | |
| 121 | 121 | /** |
| 122 | 122 | * @param array $post_data |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | public function get_edit_url(array $post_data, array $topic_data, $cp_mode = '') |
| 54 | 54 | { |
| 55 | 55 | $cp_param = $this->get_cp_param($post_data, $topic_data, $cp_mode); |
| 56 | - return ($this->edit_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", "mode=edit&f={$topic_data['forum_id']}&p={$post_data['post_id']}" . $cp_param) : ''; |
|
| 56 | + return ($this->edit_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", "mode=edit&f={$topic_data['forum_id']}&p={$post_data['post_id']}".$cp_param) : ''; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | /** |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function get_delete_url(array $post_data, array $topic_data, $cp_mode = '') |
| 66 | 66 | { |
| 67 | 67 | $cp_param = $this->get_cp_param($post_data, $topic_data, $cp_mode); |
| 68 | - return ($this->delete_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", 'mode=' . (($this->softdelete_allowed($topic_data, $post_data)) ? 'soft_delete' : 'delete') . "&f={$post_data['forum_id']}&p={$post_data['post_id']}" . $cp_param) : ''; |
|
| 68 | + return ($this->delete_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", 'mode='.(($this->softdelete_allowed($topic_data, $post_data)) ? 'soft_delete' : 'delete')."&f={$post_data['forum_id']}&p={$post_data['post_id']}".$cp_param) : ''; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | */ |
| 94 | 94 | public function get_print_topic_url(array $topic_data) |
| 95 | 95 | { |
| 96 | - return ($this->auth->acl_get('f_print', $topic_data['forum_id'])) ? $topic_data['topic_url'] . '?view=print' : ''; |
|
| 96 | + return ($this->auth->acl_get('f_print', $topic_data['forum_id'])) ? $topic_data['topic_url'].'?view=print' : ''; |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function get_email_topic_url(array $topic_data) |
| 104 | 104 | { |
| 105 | - return ($this->auth->acl_get('f_email', $topic_data['forum_id']) && $this->config['email_enable']) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&t=' . $topic_data['topic_id']) : ''; |
|
| 105 | + return ($this->auth->acl_get('f_email', $topic_data['forum_id']) && $this->config['email_enable']) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&t='.$topic_data['topic_id']) : ''; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | /** |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function get_search_users_posts_url($forum_id, $username) |
| 114 | 114 | { |
| 115 | - return append_sid("{$this->phpbb_root_path}search.{$this->php_ext}", "author={$username}&" . urlencode('fid[]') . "=$forum_id&sc=0&sf=titleonly&sr=topics"); |
|
| 115 | + return append_sid("{$this->phpbb_root_path}search.{$this->php_ext}", "author={$username}&".urlencode('fid[]')."=$forum_id&sc=0&sf=titleonly&sr=topics"); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | public function get_info_url(array $post_data) |
| 123 | 123 | { |
| 124 | 124 | $forum_id = $post_data['forum_id']; |
| 125 | - return ($this->auth->acl_get('m_info', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=main&mode=post_details&f=$forum_id&p=" . $post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 125 | + return ($this->auth->acl_get('m_info', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=main&mode=post_details&f=$forum_id&p=".$post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | */ |
| 133 | 133 | public function get_approve_url(array $post_data, $viewtopic_url) |
| 134 | 134 | { |
| 135 | - return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&p={$post_data['post_id']}&f={$post_data['forum_id']}&redirect=" . urlencode(str_replace('&', '&', $viewtopic_url . '&p=' . $post_data['post_id'] . '#p' . $post_data['post_id']))); |
|
| 135 | + return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&p={$post_data['post_id']}&f={$post_data['forum_id']}&redirect=".urlencode(str_replace('&', '&', $viewtopic_url.'&p='.$post_data['post_id'].'#p'.$post_data['post_id']))); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function get_mcp_report_url(array $post_data) |
| 163 | 163 | { |
| 164 | - return ($this->auth->acl_get('m_report', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&mode=report_details&f=' . $post_data['forum_id'] . '&p=' . $post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 164 | + return ($this->auth->acl_get('m_report', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&mode=report_details&f='.$post_data['forum_id'].'&p='.$post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | /** |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | public function get_mcp_restore_url(array $post_data, array $topic_data) |
| 173 | 173 | { |
| 174 | - return ($this->auth->acl_get('m_approve', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&mode=' . (($topic_data['topic_visibility'] != ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics') . '&f=' . $post_data['forum_id'] . '&p=' . $post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 174 | + return ($this->auth->acl_get('m_approve', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&mode='.(($topic_data['topic_visibility'] != ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics').'&f='.$post_data['forum_id'].'&p='.$post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | public function get_notes_url(array $post_data) |
| 182 | 182 | { |
| 183 | - return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&mode=user_notes&u=' . $post_data['poster_id'], true, $this->user->session_id) : ''; |
|
| 183 | + return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&mode=user_notes&u='.$post_data['poster_id'], true, $this->user->session_id) : ''; |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | /** |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | */ |
| 190 | 190 | public function get_warning_url(array $post_data) |
| 191 | 191 | { |
| 192 | - return ($this->auth->acl_get('m_warn') && !$this->user_is_poster($post_data['poster_id']) && $post_data['poster_id'] != ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&mode=warn_post&f=' . $post_data['forum_id'] . '&p=' . $post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 192 | + return ($this->auth->acl_get('m_warn') && !$this->user_is_poster($post_data['poster_id']) && $post_data['poster_id'] != ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&mode=warn_post&f='.$post_data['forum_id'].'&p='.$post_data['post_id'], true, $this->user->session_id) : ''; |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | $cp_param = ''; |
| 296 | 296 | if ($topic_data['topic_first_post_id'] == $post_data['post_id']) |
| 297 | 297 | { |
| 298 | - $cp_param = '&cp=' . ((!$cp_mode) ? (($this->user_is_poster($post_data['poster_id'])) ? 'ucp' : 'mcp') : $cp_mode); |
|
| 298 | + $cp_param = '&cp='.((!$cp_mode) ? (($this->user_is_poster($post_data['poster_id'])) ? 'ucp' : 'mcp') : $cp_mode); |
|
| 299 | 299 | } |
| 300 | 300 | return $cp_param; |
| 301 | 301 | } |
@@ -117,7 +117,7 @@ |
||
| 117 | 117 | |
| 118 | 118 | foreach ($posts_data as $topic_id => $post_data) |
| 119 | 119 | { |
| 120 | - $topic_data = $topics_data[$topic_id]; |
|
| 120 | + $topic_data = $topics_data[$topic_id]; |
|
| 121 | 121 | $topic = $this->fields->show($content_type, $topic_data, $post_data, $users_cache, $attachments, $update_count, $topic_tracking_info); |
| 122 | 122 | |
| 123 | 123 | $this->template->assign_block_vars('topicrow', $topic); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | * @param \blitze\content\services\quickmod $quickmod Quick moderator tools |
| 31 | 31 | * @param \phpbb\config\config $config Config object |
| 32 | 32 | * @param \blitze\content\services\types $content_types Content types object |
| 33 | - */ |
|
| 33 | + */ |
|
| 34 | 34 | public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, \phpbb\config\config $config, \blitze\content\services\types $content_types) |
| 35 | 35 | { |
| 36 | 36 | parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod); |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * @param \phpbb\user $user User object |
| 35 | 35 | * @param string $phpbb_root_path Path to the phpbb includes directory. |
| 36 | 36 | * @param string $php_ext php file extension |
| 37 | - */ |
|
| 37 | + */ |
|
| 38 | 38 | public function __construct(\phpbb\auth\auth $auth, \phpbb\template\template $template, \phpbb\user $user, $phpbb_root_path, $php_ext) |
| 39 | 39 | { |
| 40 | 40 | $this->auth = $auth; |
@@ -124,7 +124,7 @@ |
||
| 124 | 124 | */ |
| 125 | 125 | protected function allow_topic_delete(array $topic_data) |
| 126 | 126 | { |
| 127 | - return ($this->auth->acl_get('m_delete', $topic_data['forum_id'])) || (($topic_data['topic_visibility'] != ITEM_DELETED) && $this->auth->acl_get('m_softdelete', $topic_data['forum_id'])); |
|
| 127 | + return ($this->auth->acl_get('m_delete', $topic_data['forum_id'])) || (($topic_data['topic_visibility'] != ITEM_DELETED) && $this->auth->acl_get('m_softdelete', $topic_data['forum_id'])); |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | * |
| 23 | 23 | * @param \blitze\sitemaker\services\poll $poll Poll Object |
| 24 | 24 | * @param \blitze\sitemaker\services\template $ptemplate Sitemaker Template Object |
| 25 | - */ |
|
| 25 | + */ |
|
| 26 | 26 | public function __construct(\blitze\sitemaker\services\poll $poll, \blitze\sitemaker\services\template $ptemplate) |
| 27 | 27 | { |
| 28 | 28 | $this->poll = $poll; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | $value = $this->request->variable($name, $value); |
| 20 | 20 | $value = $this->get_image_src($value); |
| 21 | 21 | |
| 22 | - return ($value) ? '[img]' . $value . '[/img]' : ''; |
|
| 22 | + return ($value) ? '[img]'.$value.'[/img]' : ''; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $data['field_value'] = $this->get_image_src($bbcode_value); |
| 35 | 35 | |
| 36 | 36 | $this->ptemplate->assign_vars($data); |
| 37 | - $field = $this->ptemplate->render_view('blitze/content', "fields/image.html", $field . '_field'); |
|
| 37 | + $field = $this->ptemplate->render_view('blitze/content', "fields/image.html", $field.'_field'); |
|
| 38 | 38 | |
| 39 | 39 | $data['field_value'] = $bbcode_value; |
| 40 | 40 | |
@@ -49,10 +49,10 @@ discard block |
||
| 49 | 49 | $image = ''; |
| 50 | 50 | if ($data['field_value']) |
| 51 | 51 | { |
| 52 | - $image = '<figure class="img-ui">' . $data['field_value'] . '</figure>'; |
|
| 52 | + $image = '<figure class="img-ui">'.$data['field_value'].'</figure>'; |
|
| 53 | 53 | if ($mode !== 'block') |
| 54 | 54 | { |
| 55 | - $image = '<div class="' . join(' ', array_filter($data['field_props'])) . '">' . $image . '</div>'; |
|
| 55 | + $image = '<div class="'.join(' ', array_filter($data['field_props'])).'">'.$image.'</div>'; |
|
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | return $image; |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | */ |
| 37 | 37 | public function display_field(array $data) |
| 38 | 38 | { |
| 39 | - return $data['field_value'] ? '<a href="tel:' . $data['field_value'] . '">' . preg_replace("/^1?(\d{3})(\d{3})(\d{4})$/", "$1-$2-$3", $data['field_value']) . '</a>' : ''; |
|
| 39 | + return $data['field_value'] ? '<a href="tel:'.$data['field_value'].'">'.preg_replace("/^1?(\d{3})(\d{3})(\d{4})$/", "$1-$2-$3", $data['field_value']).'</a>' : ''; |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | /** |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | public function get_field_value($name, $default) |
| 30 | 30 | { |
| 31 | 31 | $default = is_array($default) ? $default : explode("\n", $default); |
| 32 | - $value = $this->request->variable($name, $default, true); |
|
| 32 | + $value = $this->request->variable($name, $default, true); |
|
| 33 | 33 | |
| 34 | 34 | if (empty($value) && $this->request->server('REQUEST_METHOD') !== 'POST') |
| 35 | 35 | { |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $this->ptemplate->assign_vars($data); |
| 63 | 63 | |
| 64 | 64 | $tpl_name = ($data['field_type'] === 'select') ? 'select' : 'pickem'; |
| 65 | - return $this->ptemplate->render_view('blitze/content', "fields/$tpl_name.html", $data['field_type'] . '_field'); |
|
| 65 | + return $this->ptemplate->render_view('blitze/content', "fields/$tpl_name.html", $data['field_type'].'_field'); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | foreach ($choices as $value => $option) |
| 86 | 86 | { |
| 87 | 87 | $options[] = array( |
| 88 | - 'id' => 'smc-'. $name . '-' . $count, |
|
| 88 | + 'id' => 'smc-'.$name.'-'.$count, |
|
| 89 | 89 | 'label' => $this->language->lang($option), |
| 90 | 90 | 'selected' => (int) (in_array($value, $selected)), |
| 91 | 91 | 'value' => $value, |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | * @param \phpbb\user $user User object |
| 43 | 43 | * @param string $root_path Path to the phpbb includes directory. |
| 44 | 44 | * @param string $php_ext php file extension |
| 45 | - */ |
|
| 45 | + */ |
|
| 46 | 46 | public function __construct(\phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, $root_path, $php_ext) |
| 47 | 47 | { |
| 48 | 48 | $this->auth = $auth; |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | 'L_QUICKREPLY' => $this->language->lang('NEW_COMMENT'), |
| 82 | 82 | 'U_QR_ACTION' => append_sid("{$this->phpbb_root_path}posting.{$this->php_ext}", "mode=reply&f={$topic_data['forum_id']}&t={$topic_data['topic_id']}"), |
| 83 | 83 | 'QR_HIDDEN_FIELDS' => build_hidden_fields($qr_hidden_fields), |
| 84 | - 'SUBJECT' => 'Re: ' . censor_text($topic_data['topic_title']), |
|
| 84 | + 'SUBJECT' => 'Re: '.censor_text($topic_data['topic_title']), |
|
| 85 | 85 | )); |
| 86 | 86 | } |
| 87 | 87 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * @param \blitze\content\services\topic $topic Topic object |
| 59 | 59 | * @param string $root_path Path to the phpbb directory. |
| 60 | 60 | * @param string $php_ext php file extension |
| 61 | - */ |
|
| 61 | + */ |
|
| 62 | 62 | public function __construct(\phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\content_visibility $content_visibility, \phpbb\db\driver\driver_interface $db, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\request\request_interface $request, \phpbb\template\template $template, \phpbb\template\context $template_context, \phpbb\user $user, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\topic $topic, $root_path, $php_ext) |
| 63 | 63 | { |
| 64 | 64 | parent::__construct($auth, $config, $language, $template, $user, $root_path, $php_ext); |
@@ -258,8 +258,7 @@ discard block |
||
| 258 | 258 | $prev_posts_count = $this->content_visibility->get_count('topic_posts', $topic_data, $topic_data['forum_id']) - 1; |
| 259 | 259 | } |
| 260 | 260 | return $prev_posts_count; |
| 261 | - } |
|
| 262 | - else |
|
| 261 | + } else |
|
| 263 | 262 | { |
| 264 | 263 | return $this->get_prev_posts_count($topic_data['forum_id'], $topic_data['topic_id'], $post_id, $sort_dir) - 1; |
| 265 | 264 | } |
@@ -290,8 +289,7 @@ discard block |
||
| 290 | 289 | if ($sort_dir == 'd') |
| 291 | 290 | { |
| 292 | 291 | $sql .= " AND (p.post_time > {$row['post_time']} OR (p.post_time = {$row['post_time']} AND p.post_id >= {$row['post_id']}))"; |
| 293 | - } |
|
| 294 | - else |
|
| 292 | + } else |
|
| 295 | 293 | { |
| 296 | 294 | $sql .= " AND (p.post_time < {$row['post_time']} OR (p.post_time = {$row['post_time']} AND p.post_id <= {$row['post_id']}))"; |
| 297 | 295 | } |
@@ -87,9 +87,9 @@ discard block |
||
| 87 | 87 | { |
| 88 | 88 | if ($topic_data['total_comments']) |
| 89 | 89 | { |
| 90 | - $view = $this->request->variable('view', ''); |
|
| 91 | - $start = $this->request->variable('start', 0); |
|
| 92 | - $post_id = $this->request->variable('p', 0); |
|
| 90 | + $view = $this->request->variable('view', ''); |
|
| 91 | + $start = $this->request->variable('start', 0); |
|
| 92 | + $post_id = $this->request->variable('p', 0); |
|
| 93 | 93 | |
| 94 | 94 | $this->find_unread($view, $topic_data); |
| 95 | 95 | |
@@ -104,10 +104,10 @@ discard block |
||
| 104 | 104 | ->build(); |
| 105 | 105 | $posts_data = $this->forum->get_post_data(false, array(), $this->config['posts_per_page'], $start, array( |
| 106 | 106 | 'WHERE' => array( |
| 107 | - 'p.topic_id = ' . (int) $topic_data['topic_id'], |
|
| 108 | - 'p.post_id <> ' . (int) $topic_data['topic_first_post_id'], |
|
| 107 | + 'p.topic_id = '.(int) $topic_data['topic_id'], |
|
| 108 | + 'p.post_id <> '.(int) $topic_data['topic_first_post_id'], |
|
| 109 | 109 | ), |
| 110 | - 'ORDER_BY' => $this->sort_by_sql[$sort_key] . ' ' . $this->sort_dir_sql[$sort_dir], |
|
| 110 | + 'ORDER_BY' => $this->sort_by_sql[$sort_key].' '.$this->sort_dir_sql[$sort_dir], |
|
| 111 | 111 | )); |
| 112 | 112 | |
| 113 | 113 | $topic_tracking_info = $this->forum->get_topic_tracking_info(); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | $attachments = $this->forum->get_attachments($topic_data['forum_id']); |
| 134 | 134 | |
| 135 | 135 | $this->template->assign_vars(array( |
| 136 | - 'S_TOPIC_ACTION' => append_sid($topic_data['topic_url'], (($start == 0) ? '' : "?start=$start")) . '#comments', |
|
| 136 | + 'S_TOPIC_ACTION' => append_sid($topic_data['topic_url'], (($start == 0) ? '' : "?start=$start")).'#comments', |
|
| 137 | 137 | )); |
| 138 | 138 | |
| 139 | 139 | for ($i = 0, $size = sizeof($posts_data); $i < $size; $i++) |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | 'S_POST_REPORTED' => ($row['post_reported'] && $this->auth->acl_get('m_report', $row['forum_id'])) ? true : false, |
| 151 | 151 | 'S_TOPIC_POSTER' => ($topic_data['topic_poster'] == $poster_id) ? true : false, |
| 152 | 152 | 'S_POST_HIDDEN' => $row['hide_post'], |
| 153 | - 'L_POST_DISPLAY' => ($row['hide_post']) ? $this->language->lang('POST_DISPLAY', '<a class="display_post" data-post-id="' . $row['post_id'] . '" href="' . $viewtopic_url . "&p={$row['post_id']}&view=show#p{$row['post_id']}" . '">', '</a>') : '', |
|
| 153 | + 'L_POST_DISPLAY' => ($row['hide_post']) ? $this->language->lang('POST_DISPLAY', '<a class="display_post" data-post-id="'.$row['post_id'].'" href="'.$viewtopic_url."&p={$row['post_id']}&view=show#p{$row['post_id']}".'">', '</a>') : '', |
|
| 154 | 154 | ))); |
| 155 | 155 | |
| 156 | 156 | $this->topic->show_attachments($attachments, $row['post_id'], 'postrow.attachment'); |
@@ -174,9 +174,9 @@ discard block |
||
| 174 | 174 | $topic_last_read = (isset($topic_tracking_info[$topic_id])) ? $topic_tracking_info[$topic_id] : 0; |
| 175 | 175 | |
| 176 | 176 | $sql = 'SELECT post_id, topic_id, forum_id |
| 177 | - FROM ' . POSTS_TABLE . " |
|
| 177 | + FROM ' . POSTS_TABLE." |
|
| 178 | 178 | WHERE topic_id = $topic_id |
| 179 | - AND " . $this->content_visibility->get_visibility_sql('post', $forum_id) . " |
|
| 179 | + AND ".$this->content_visibility->get_visibility_sql('post', $forum_id)." |
|
| 180 | 180 | AND post_time > $topic_last_read |
| 181 | 181 | AND forum_id = $forum_id |
| 182 | 182 | ORDER BY post_time ASC, post_id ASC"; |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | |
| 187 | 187 | if ($row) |
| 188 | 188 | { |
| 189 | - redirect(append_sid($topic_data['topic_url'], 'p=' . $row['post_id']) . '#p' . $row['post_id']); |
|
| 189 | + redirect(append_sid($topic_data['topic_url'], 'p='.$row['post_id']).'#p'.$row['post_id']); |
|
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | } |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | $start = $this->pagination->validate_start($start, $this->config['posts_per_page'], $topic_data['total_comments']); |
| 214 | 214 | $this->pagination->generate_template_pagination($base_url, 'pagination', 'start', $topic_data['total_comments'], $this->config['posts_per_page'], $start); |
| 215 | 215 | |
| 216 | - $data =& $this->template_context->get_data_ref(); |
|
| 216 | + $data = & $this->template_context->get_data_ref(); |
|
| 217 | 217 | foreach ($data['pagination'] as &$row) |
| 218 | 218 | { |
| 219 | 219 | $row['PAGE_URL'] .= '#comments'; |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | protected function get_prev_posts_count($forum_id, $topic_id, $post_id, $sort_dir) |
| 276 | 276 | { |
| 277 | 277 | $sql = 'SELECT post_id, post_time, post_visibility |
| 278 | - FROM ' . POSTS_TABLE . " p |
|
| 278 | + FROM ' . POSTS_TABLE." p |
|
| 279 | 279 | WHERE p.topic_id = $topic_id |
| 280 | 280 | AND p.post_id = $post_id"; |
| 281 | 281 | $result = $this->db->sql_query($sql); |
@@ -283,9 +283,9 @@ discard block |
||
| 283 | 283 | $this->db->sql_freeresult($result); |
| 284 | 284 | |
| 285 | 285 | $sql = 'SELECT COUNT(p.post_id) AS prev_posts |
| 286 | - FROM ' . POSTS_TABLE . " p |
|
| 286 | + FROM ' . POSTS_TABLE." p |
|
| 287 | 287 | WHERE p.topic_id = $topic_id |
| 288 | - AND " . $this->content_visibility->get_visibility_sql('post', $forum_id, 'p.'); |
|
| 288 | + AND ".$this->content_visibility->get_visibility_sql('post', $forum_id, 'p.'); |
|
| 289 | 289 | |
| 290 | 290 | if ($sort_dir == 'd') |
| 291 | 291 | { |
@@ -312,11 +312,11 @@ discard block |
||
| 312 | 312 | */ |
| 313 | 313 | protected function set_sorting_options(&$sort_days, &$sort_key, &$sort_dir, &$u_sort_param) |
| 314 | 314 | { |
| 315 | - $default_sort_days = (!empty($this->user->data['user_post_show_days'])) ? $this->user->data['user_post_show_days'] : 0; |
|
| 315 | + $default_sort_days = (!empty($this->user->data['user_post_show_days'])) ? $this->user->data['user_post_show_days'] : 0; |
|
| 316 | 316 | $default_sort_key = (!empty($this->user->data['user_post_sortby_type'])) ? $this->user->data['user_post_sortby_type'] : 't'; |
| 317 | 317 | $default_sort_dir = (!empty($this->user->data['user_post_sortby_dir'])) ? $this->user->data['user_post_sortby_dir'] : 'a'; |
| 318 | 318 | |
| 319 | - $sort_days = $this->request->variable('st', $default_sort_days); |
|
| 319 | + $sort_days = $this->request->variable('st', $default_sort_days); |
|
| 320 | 320 | $sort_key = $this->request->variable('sk', $default_sort_key); |
| 321 | 321 | $sort_dir = $this->request->variable('sd', $default_sort_dir); |
| 322 | 322 | |