@@ -73,7 +73,7 @@ |
||
73 | 73 | } |
74 | 74 | else |
75 | 75 | { |
76 | - $message = $this->language->lang('INVALID_REQUEST', $action); |
|
76 | + $message = $this->language->lang('INVALID_REQUEST', $action); |
|
77 | 77 | trigger_error($message . '<br /><br />' . $this->language->lang('RETURN_PAGE', '<a href="' . $u_action . '">', '</a>')); |
78 | 78 | } |
79 | 79 | } |
@@ -206,7 +206,7 @@ |
||
206 | 206 | */ |
207 | 207 | protected function init_ucp_mode(array $content_types, array &$sql_where_array) |
208 | 208 | { |
209 | - $sql_where_array[] = 't.topic_poster = ' . (int) $this->user->data['user_id']; |
|
209 | + $sql_where_array[] = 't.topic_poster = ' . (int) $this->user->data['user_id']; |
|
210 | 210 | |
211 | 211 | // list all content types that the user can post in |
212 | 212 | $postable_forums = array_intersect_key($this->content_forums, $this->auth->acl_getf('f_post', true)); |
@@ -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 | /** |
@@ -309,10 +309,10 @@ |
||
309 | 309 | $detail_fields = $this->get_template_fields($detail_fields, $this->detail_tpl, $fields); |
310 | 310 | |
311 | 311 | $this->summary_fields = array_intersect_key($field_types, array_flip($summary_fields)); |
312 | - $this->detail_fields = array_intersect_key($field_types, array_flip($detail_fields)); |
|
312 | + $this->detail_fields = array_intersect_key($field_types, array_flip($detail_fields)); |
|
313 | 313 | |
314 | 314 | $this->content_fields = $content_fields; |
315 | - $this->field_types = $field_types; |
|
315 | + $this->field_types = $field_types; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | /** |
@@ -56,7 +56,7 @@ |
||
56 | 56 | public function get_field_value(array $data) |
57 | 57 | { |
58 | 58 | $default = is_array($data['field_value']) ? $data['field_value'] : explode("\n", $data['field_value']); |
59 | - $value = $this->request->variable($data['field_name'], array(0 => '')); |
|
59 | + $value = $this->request->variable($data['field_name'], array(0 => '')); |
|
60 | 60 | return $value ?: $default; |
61 | 61 | } |
62 | 62 |
@@ -97,7 +97,7 @@ |
||
97 | 97 | foreach ($choices as $value => $option) |
98 | 98 | { |
99 | 99 | $options[] = array( |
100 | - 'id' => 'smc-'. $name . '-' . $count, |
|
100 | + 'id' => 'smc-' . $name . '-' . $count, |
|
101 | 101 | 'label' => $this->language->lang($option), |
102 | 102 | 'selected' => (int) (in_array($value, $selected)), |
103 | 103 | 'value' => $value, |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | $l_edited_by = $edit_reason = ''; |
268 | 268 | if (($row['post_edit_count'] && $this->config['display_last_edited']) || $row['post_edit_reason']) |
269 | 269 | { |
270 | - $display_username = $users_cache[$row['poster_id']]['username_full']; |
|
270 | + $display_username = $users_cache[$row['poster_id']]['username_full']; |
|
271 | 271 | $l_edited_by = $this->language->lang('EDITED_TIMES_TOTAL', (int) $row['post_edit_count'], $display_username, $this->user->format_date($row['post_edit_time'], false, true)); |
272 | 272 | $edit_reason = $row['post_edit_reason']; |
273 | 273 | } |
@@ -290,8 +290,8 @@ discard block |
||
290 | 290 | |
291 | 291 | if ($s_post_deleted && $row['post_delete_user']) |
292 | 292 | { |
293 | - $display_postername = $users_cache[$row['poster_id']]['username_full']; |
|
294 | - $display_username = $users_cache[$row['post_delete_user']]['username_full']; |
|
293 | + $display_postername = $users_cache[$row['poster_id']]['username_full']; |
|
294 | + $display_username = $users_cache[$row['post_delete_user']]['username_full']; |
|
295 | 295 | |
296 | 296 | $l_deleted_message = $this->get_delete_message($row, $display_postername, $display_username); |
297 | 297 | $l_deleted_by = $this->language->lang('DELETED_INFORMATION', $display_username, $this->user->format_date($row['post_delete_time'], false, true)); |
@@ -125,7 +125,7 @@ |
||
125 | 125 | $content = preg_replace('/((?:\?|&)sid=[a-z0-9]+)/', '', $content); |
126 | 126 | |
127 | 127 | // Remove Comments from inline attachments [ia] |
128 | - $content = preg_replace('#<dd>(.*?)</dd>#','',$content); |
|
128 | + $content = preg_replace('#<dd>(.*?)</dd>#', '', $content); |
|
129 | 129 | |
130 | 130 | // Replace some entities with their unicode counterpart |
131 | 131 | $entities = array( |
@@ -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 | |
@@ -310,11 +310,11 @@ discard block |
||
310 | 310 | */ |
311 | 311 | protected function set_sorting_options(&$sort_days, &$sort_key, &$sort_dir, &$u_sort_param) |
312 | 312 | { |
313 | - $default_sort_days = (!empty($this->user->data['user_post_show_days'])) ? $this->user->data['user_post_show_days'] : 0; |
|
313 | + $default_sort_days = (!empty($this->user->data['user_post_show_days'])) ? $this->user->data['user_post_show_days'] : 0; |
|
314 | 314 | $default_sort_key = (!empty($this->user->data['user_post_sortby_type'])) ? $this->user->data['user_post_sortby_type'] : 't'; |
315 | 315 | $default_sort_dir = (!empty($this->user->data['user_post_sortby_dir'])) ? $this->user->data['user_post_sortby_dir'] : 'a'; |
316 | 316 | |
317 | - $sort_days = $this->request->variable('st', $default_sort_days); |
|
317 | + $sort_days = $this->request->variable('st', $default_sort_days); |
|
318 | 318 | $sort_key = $this->request->variable('sk', $default_sort_key); |
319 | 319 | $sort_dir = $this->request->variable('sd', $default_sort_dir); |
320 | 320 |