@@ -89,8 +89,9 @@ discard block |
||
89 | 89 | foreach ($section['areas'] as $i => $area) |
90 | 90 | { |
91 | 91 | // Not supposed to be printed? |
92 | - if (empty($area['label'])) |
|
93 | - continue; |
|
92 | + if (empty($area['label'])) { |
|
93 | + continue; |
|
94 | + } |
|
94 | 95 | |
95 | 96 | echo ' |
96 | 97 | <li', !empty($area['subsections']) ? ' class="subsections"' : '', '>'; |
@@ -99,8 +100,9 @@ discard block |
||
99 | 100 | <a class="', $area['icon_class'], !empty($area['selected']) ? ' chosen ' : '', '" href="', (isset($area['url']) ? $area['url'] : $menu_context['base_url'] . ';area=' . $i), $menu_context['extra_parameters'], '">', $area['icon'], $area['label'], '</a>'; |
100 | 101 | |
101 | 102 | // Is this the current area, or just some area? |
102 | - if (!empty($area['selected']) && empty($context['tabs'])) |
|
103 | - $context['tabs'] = isset($area['subsections']) ? $area['subsections'] : array(); |
|
103 | + if (!empty($area['selected']) && empty($context['tabs'])) { |
|
104 | + $context['tabs'] = isset($area['subsections']) ? $area['subsections'] : array(); |
|
105 | + } |
|
104 | 106 | |
105 | 107 | // Are there any subsections? |
106 | 108 | if (!empty($area['subsections'])) |
@@ -110,8 +112,9 @@ discard block |
||
110 | 112 | |
111 | 113 | foreach ($area['subsections'] as $sa => $sub) |
112 | 114 | { |
113 | - if (!empty($sub['disabled'])) |
|
114 | - continue; |
|
115 | + if (!empty($sub['disabled'])) { |
|
116 | + continue; |
|
117 | + } |
|
115 | 118 | |
116 | 119 | $url = isset($sub['url']) ? $sub['url'] : (isset($area['url']) ? $area['url'] : $menu_context['base_url'] . ';area=' . $i) . ';sa=' . $sa; |
117 | 120 | |
@@ -158,8 +161,9 @@ discard block |
||
158 | 161 | <h3 class="catbg">'; |
159 | 162 | |
160 | 163 | // The function is in Admin.template.php, but since this template is used elsewhere too better check if the function is available |
161 | - if (function_exists('template_admin_quick_search')) |
|
162 | - template_admin_quick_search(); |
|
164 | + if (function_exists('template_admin_quick_search')) { |
|
165 | + template_admin_quick_search(); |
|
166 | + } |
|
163 | 167 | |
164 | 168 | // Exactly how many tabs do we have? |
165 | 169 | if (!empty($context['tabs'])) |
@@ -174,30 +178,36 @@ discard block |
||
174 | 178 | } |
175 | 179 | |
176 | 180 | // Did this not even exist - or do we not have a label? |
177 | - if (!isset($tab_context['tabs'][$id])) |
|
178 | - $tab_context['tabs'][$id] = array('label' => $tab['label']); |
|
179 | - elseif (!isset($tab_context['tabs'][$id]['label'])) |
|
180 | - $tab_context['tabs'][$id]['label'] = $tab['label']; |
|
181 | + if (!isset($tab_context['tabs'][$id])) { |
|
182 | + $tab_context['tabs'][$id] = array('label' => $tab['label']); |
|
183 | + } elseif (!isset($tab_context['tabs'][$id]['label'])) { |
|
184 | + $tab_context['tabs'][$id]['label'] = $tab['label']; |
|
185 | + } |
|
181 | 186 | |
182 | 187 | // Has a custom URL defined in the main admin structure? |
183 | - if (isset($tab['url']) && !isset($tab_context['tabs'][$id]['url'])) |
|
184 | - $tab_context['tabs'][$id]['url'] = $tab['url']; |
|
188 | + if (isset($tab['url']) && !isset($tab_context['tabs'][$id]['url'])) { |
|
189 | + $tab_context['tabs'][$id]['url'] = $tab['url']; |
|
190 | + } |
|
185 | 191 | |
186 | 192 | // Any additional paramaters for the url? |
187 | - if (isset($tab['add_params']) && !isset($tab_context['tabs'][$id]['add_params'])) |
|
188 | - $tab_context['tabs'][$id]['add_params'] = $tab['add_params']; |
|
193 | + if (isset($tab['add_params']) && !isset($tab_context['tabs'][$id]['add_params'])) { |
|
194 | + $tab_context['tabs'][$id]['add_params'] = $tab['add_params']; |
|
195 | + } |
|
189 | 196 | |
190 | 197 | // Has it been deemed selected? |
191 | - if (!empty($tab['is_selected'])) |
|
192 | - $tab_context['tabs'][$id]['is_selected'] = true; |
|
198 | + if (!empty($tab['is_selected'])) { |
|
199 | + $tab_context['tabs'][$id]['is_selected'] = true; |
|
200 | + } |
|
193 | 201 | |
194 | 202 | // Does it have its own help? |
195 | - if (!empty($tab['help'])) |
|
196 | - $tab_context['tabs'][$id]['help'] = $tab['help']; |
|
203 | + if (!empty($tab['help'])) { |
|
204 | + $tab_context['tabs'][$id]['help'] = $tab['help']; |
|
205 | + } |
|
197 | 206 | |
198 | 207 | // Is this the last one? |
199 | - if (!empty($tab['is_last']) && !isset($tab_context['override_last'])) |
|
200 | - $tab_context['tabs'][$id]['is_last'] = true; |
|
208 | + if (!empty($tab['is_last']) && !isset($tab_context['override_last'])) { |
|
209 | + $tab_context['tabs'][$id]['is_last'] = true; |
|
210 | + } |
|
201 | 211 | } |
202 | 212 | |
203 | 213 | // Find the selected tab |
@@ -214,17 +224,18 @@ discard block |
||
214 | 224 | // Show an icon and/or a help item? |
215 | 225 | if (!empty($selected_tab['icon_class']) || !empty($tab_context['icon_class']) || !empty($selected_tab['icon']) || !empty($tab_context['icon']) || !empty($selected_tab['help']) || !empty($tab_context['help'])) |
216 | 226 | { |
217 | - if (!empty($selected_tab['icon_class']) || !empty($tab_context['icon_class'])) |
|
218 | - echo '<span class="', !empty($selected_tab['icon_class']) ? $selected_tab['icon_class'] : $tab_context['icon_class'], ' icon"></span>'; |
|
219 | - elseif (!empty($selected_tab['icon']) || !empty($tab_context['icon'])) |
|
220 | - echo '<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">'; |
|
227 | + if (!empty($selected_tab['icon_class']) || !empty($tab_context['icon_class'])) { |
|
228 | + echo '<span class="', !empty($selected_tab['icon_class']) ? $selected_tab['icon_class'] : $tab_context['icon_class'], ' icon"></span>'; |
|
229 | + } elseif (!empty($selected_tab['icon']) || !empty($tab_context['icon'])) { |
|
230 | + echo '<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">'; |
|
231 | + } |
|
221 | 232 | |
222 | - if (!empty($selected_tab['help']) || !empty($tab_context['help'])) |
|
223 | - echo '<a href="', $scripturl, '?action=helpadmin;help=', !empty($selected_tab['help']) ? $selected_tab['help'] : $tab_context['help'], '" onclick="return reqOverlayDiv(this.href);" class="help"><span class="generic_icons help" title="', $txt['help'], '"></span></a>'; |
|
233 | + if (!empty($selected_tab['help']) || !empty($tab_context['help'])) { |
|
234 | + echo '<a href="', $scripturl, '?action=helpadmin;help=', !empty($selected_tab['help']) ? $selected_tab['help'] : $tab_context['help'], '" onclick="return reqOverlayDiv(this.href);" class="help"><span class="generic_icons help" title="', $txt['help'], '"></span></a>'; |
|
235 | + } |
|
224 | 236 | |
225 | 237 | echo $tab_context['title']; |
226 | - } |
|
227 | - else |
|
238 | + } else |
|
228 | 239 | { |
229 | 240 | echo ' |
230 | 241 | ', $tab_context['title']; |
@@ -237,11 +248,12 @@ discard block |
||
237 | 248 | } |
238 | 249 | |
239 | 250 | // Shall we use the tabs? Yes, it's the only known way! |
240 | - if (!empty($selected_tab['description']) || !empty($tab_context['description'])) |
|
241 | - echo ' |
|
251 | + if (!empty($selected_tab['description']) || !empty($tab_context['description'])) { |
|
252 | + echo ' |
|
242 | 253 | <p class="information"> |
243 | 254 | ', !empty($selected_tab['description']) ? $selected_tab['description'] : $tab_context['description'], ' |
244 | 255 | </p>'; |
256 | + } |
|
245 | 257 | |
246 | 258 | // Print out all the items in this tab (if any). |
247 | 259 | if (!empty($context['tabs'])) |
@@ -253,8 +265,9 @@ discard block |
||
253 | 265 | |
254 | 266 | foreach ($tab_context['tabs'] as $sa => $tab) |
255 | 267 | { |
256 | - if (!empty($tab['disabled'])) |
|
257 | - continue; |
|
268 | + if (!empty($tab['disabled'])) { |
|
269 | + continue; |
|
270 | + } |
|
258 | 271 | |
259 | 272 | if (!empty($tab['is_selected'])) |
260 | 273 | { |
@@ -262,12 +275,12 @@ discard block |
||
262 | 275 | <li> |
263 | 276 | <a class="active" href="', isset($tab['url']) ? $tab['url'] : $menu_context['base_url'] . ';area=' . $menu_context['current_area'] . ';sa=' . $sa, $menu_context['extra_parameters'], isset($tab['add_params']) ? $tab['add_params'] : '', '">', $tab['label'], '</a> |
264 | 277 | </li>'; |
265 | - } |
|
266 | - else |
|
267 | - echo ' |
|
278 | + } else { |
|
279 | + echo ' |
|
268 | 280 | <li> |
269 | 281 | <a href="', isset($tab['url']) ? $tab['url'] : $menu_context['base_url'] . ';area=' . $menu_context['current_area'] . ';sa=' . $sa, $menu_context['extra_parameters'], isset($tab['add_params']) ? $tab['add_params'] : '', '">', $tab['label'], '</a> |
270 | 282 | </li>'; |
283 | + } |
|
271 | 284 | } |
272 | 285 | |
273 | 286 | // the end of tabs |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Entry point function, permission checks, admin bars, etc. |
@@ -99,27 +100,27 @@ discard block |
||
99 | 100 | 'function' => function($rowData) use ($scripturl) |
100 | 101 | { |
101 | 102 | // Since the moderator group has no explicit members, no link is needed. |
102 | - if ($rowData['id_group'] == 3) |
|
103 | - $group_name = $rowData['group_name']; |
|
104 | - else |
|
103 | + if ($rowData['id_group'] == 3) { |
|
104 | + $group_name = $rowData['group_name']; |
|
105 | + } else |
|
105 | 106 | { |
106 | 107 | $color_style = empty($rowData['online_color']) ? '' : sprintf(' style="color: %1$s;"', $rowData['online_color']); |
107 | 108 | |
108 | 109 | if (allowedTo('manage_membergroups')) |
109 | 110 | { |
110 | 111 | $group_name = sprintf('<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
111 | - } |
|
112 | - else |
|
112 | + } else |
|
113 | 113 | { |
114 | 114 | $group_name = sprintf('<a href="%1$s?action=groups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | 118 | // Add a help option for moderator and administrator. |
119 | - if ($rowData['id_group'] == 1) |
|
120 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | - elseif ($rowData['id_group'] == 3) |
|
122 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
119 | + if ($rowData['id_group'] == 1) { |
|
120 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | + } elseif ($rowData['id_group'] == 3) { |
|
122 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
123 | + } |
|
123 | 124 | |
124 | 125 | return $group_name; |
125 | 126 | }, |
@@ -198,8 +199,9 @@ discard block |
||
198 | 199 | $_REQUEST['group'] = isset($_REQUEST['group']) ? (int) $_REQUEST['group'] : 0; |
199 | 200 | |
200 | 201 | // No browsing of guests, membergroup 0 or moderators. |
201 | - if (in_array($_REQUEST['group'], array(-1, 0, 3))) |
|
202 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
202 | + if (in_array($_REQUEST['group'], array(-1, 0, 3))) { |
|
203 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
204 | + } |
|
203 | 205 | |
204 | 206 | // Load up the group details. |
205 | 207 | $request = $smcFunc['db_query']('', ' |
@@ -214,8 +216,9 @@ discard block |
||
214 | 216 | ) |
215 | 217 | ); |
216 | 218 | // Doesn't exist? |
217 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
218 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
219 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
220 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
221 | + } |
|
219 | 222 | $context['group'] = $smcFunc['db_fetch_assoc']($request); |
220 | 223 | $smcFunc['db_free_result']($request); |
221 | 224 | |
@@ -248,21 +251,25 @@ discard block |
||
248 | 251 | 'name' => $row['real_name'] |
249 | 252 | ); |
250 | 253 | |
251 | - if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) |
|
252 | - $context['group']['can_moderate'] = true; |
|
254 | + if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) { |
|
255 | + $context['group']['can_moderate'] = true; |
|
256 | + } |
|
253 | 257 | } |
254 | 258 | $smcFunc['db_free_result']($request); |
255 | 259 | |
256 | 260 | // If this group is hidden then it can only "exists" if the user can moderate it! |
257 | - if ($context['group']['hidden'] && !$context['group']['can_moderate']) |
|
258 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
261 | + if ($context['group']['hidden'] && !$context['group']['can_moderate']) { |
|
262 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
263 | + } |
|
259 | 264 | |
260 | 265 | // You can only assign membership if you are the moderator and/or can manage groups! |
261 | - if (!$context['group']['can_moderate']) |
|
262 | - $context['group']['assignable'] = 0; |
|
266 | + if (!$context['group']['can_moderate']) { |
|
267 | + $context['group']['assignable'] = 0; |
|
268 | + } |
|
263 | 269 | // Non-admins cannot assign admins. |
264 | - elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) |
|
265 | - $context['group']['assignable'] = 0; |
|
270 | + elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) { |
|
271 | + $context['group']['assignable'] = 0; |
|
272 | + } |
|
266 | 273 | |
267 | 274 | // Removing member from group? |
268 | 275 | if (isset($_POST['remove']) && !empty($_REQUEST['rem']) && is_array($_REQUEST['rem']) && $context['group']['assignable']) |
@@ -271,8 +278,9 @@ discard block |
||
271 | 278 | validateToken('mod-mgm'); |
272 | 279 | |
273 | 280 | // Make sure we're dealing with integers only. |
274 | - foreach ($_REQUEST['rem'] as $key => $group) |
|
275 | - $_REQUEST['rem'][$key] = (int) $group; |
|
281 | + foreach ($_REQUEST['rem'] as $key => $group) { |
|
282 | + $_REQUEST['rem'][$key] = (int) $group; |
|
283 | + } |
|
276 | 284 | |
277 | 285 | require_once($sourcedir . '/Subs-Membergroups.php'); |
278 | 286 | removeMembersFromGroups($_REQUEST['rem'], $_REQUEST['group'], true); |
@@ -295,16 +303,18 @@ discard block |
||
295 | 303 | { |
296 | 304 | $member_names[$index] = trim($smcFunc['strtolower']($member_names[$index])); |
297 | 305 | |
298 | - if (strlen($member_names[$index]) == 0) |
|
299 | - unset($member_names[$index]); |
|
306 | + if (strlen($member_names[$index]) == 0) { |
|
307 | + unset($member_names[$index]); |
|
308 | + } |
|
300 | 309 | } |
301 | 310 | |
302 | 311 | // Any passed by ID? |
303 | 312 | $member_ids = array(); |
304 | - if (!empty($_REQUEST['member_add'])) |
|
305 | - foreach ($_REQUEST['member_add'] as $id) |
|
313 | + if (!empty($_REQUEST['member_add'])) { |
|
314 | + foreach ($_REQUEST['member_add'] as $id) |
|
306 | 315 | if ($id > 0) |
307 | 316 | $member_ids[] = (int) $id; |
317 | + } |
|
308 | 318 | |
309 | 319 | // Construct the query pelements. |
310 | 320 | if (!empty($member_ids)) |
@@ -332,8 +342,9 @@ discard block |
||
332 | 342 | 'id_group' => $_REQUEST['group'], |
333 | 343 | )) |
334 | 344 | ); |
335 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
336 | - $members[] = $row['id_member']; |
|
345 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
346 | + $members[] = $row['id_member']; |
|
347 | + } |
|
337 | 348 | $smcFunc['db_free_result']($request); |
338 | 349 | } |
339 | 350 | |
@@ -372,10 +383,11 @@ discard block |
||
372 | 383 | $context['sort_direction'] = isset($_REQUEST['desc']) ? 'down' : 'up'; |
373 | 384 | |
374 | 385 | // The where on the query is interesting. Non-moderators should only see people who are in this group as primary. |
375 | - if ($context['group']['can_moderate']) |
|
376 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
377 | - else |
|
378 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
386 | + if ($context['group']['can_moderate']) { |
|
387 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
388 | + } else { |
|
389 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
390 | + } |
|
379 | 391 | |
380 | 392 | // Count members of the group. |
381 | 393 | $request = $smcFunc['db_query']('', ' |
@@ -416,8 +428,9 @@ discard block |
||
416 | 428 | $last_online = empty($row['last_login']) ? $txt['never'] : timeformat($row['last_login']); |
417 | 429 | |
418 | 430 | // Italicize the online note if they aren't activated. |
419 | - if ($row['is_activated'] % 10 != 1) |
|
420 | - $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
431 | + if ($row['is_activated'] % 10 != 1) { |
|
432 | + $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
433 | + } |
|
421 | 434 | |
422 | 435 | $context['members'][] = array( |
423 | 436 | 'id' => $row['id_member'], |
@@ -437,9 +450,10 @@ discard block |
||
437 | 450 | $context['page_title'] = $txt['membergroups_members_title'] . ': ' . $context['group']['name']; |
438 | 451 | createToken('mod-mgm'); |
439 | 452 | |
440 | - if ($context['group']['assignable']) |
|
441 | - loadJavaScriptFile('suggest.js', array('defer' => false), 'smf_suggest'); |
|
442 | -} |
|
453 | + if ($context['group']['assignable']) { |
|
454 | + loadJavaScriptFile('suggest.js', array('defer' => false), 'smf_suggest'); |
|
455 | + } |
|
456 | + } |
|
443 | 457 | |
444 | 458 | /** |
445 | 459 | * Show and manage all group requests. |
@@ -453,16 +467,18 @@ discard block |
||
453 | 467 | $context['sub_template'] = 'show_list'; |
454 | 468 | |
455 | 469 | // Verify we can be here. |
456 | - if ($user_info['mod_cache']['gq'] == '0=1') |
|
457 | - isAllowedTo('manage_membergroups'); |
|
470 | + if ($user_info['mod_cache']['gq'] == '0=1') { |
|
471 | + isAllowedTo('manage_membergroups'); |
|
472 | + } |
|
458 | 473 | |
459 | 474 | // Normally, we act normally... |
460 | 475 | $where = ($user_info['mod_cache']['gq'] == '1=1' || $user_info['mod_cache']['gq'] == '0=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']); |
461 | 476 | |
462 | - if (isset($_GET['closed'])) |
|
463 | - $where .= ' AND lgr.status != {int:status_open}'; |
|
464 | - else |
|
465 | - $where .= ' AND lgr.status = {int:status_open}'; |
|
477 | + if (isset($_GET['closed'])) { |
|
478 | + $where .= ' AND lgr.status != {int:status_open}'; |
|
479 | + } else { |
|
480 | + $where .= ' AND lgr.status = {int:status_open}'; |
|
481 | + } |
|
466 | 482 | |
467 | 483 | $where_parameters = array( |
468 | 484 | 'status_open' => 0, |
@@ -475,8 +491,9 @@ discard block |
||
475 | 491 | validateToken('mod-gr'); |
476 | 492 | |
477 | 493 | // Clean the values. |
478 | - foreach ($_POST['groupr'] as $k => $request) |
|
479 | - $_POST['groupr'][$k] = (int) $request; |
|
494 | + foreach ($_POST['groupr'] as $k => $request) { |
|
495 | + $_POST['groupr'][$k] = (int) $request; |
|
496 | + } |
|
480 | 497 | |
481 | 498 | $log_changes = array(); |
482 | 499 | |
@@ -513,8 +530,8 @@ discard block |
||
513 | 530 | $request_list = array(); |
514 | 531 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
515 | 532 | { |
516 | - if (!isset($log_changes[$row['id_request']])) |
|
517 | - $log_changes[$row['id_request']] = array( |
|
533 | + if (!isset($log_changes[$row['id_request']])) { |
|
534 | + $log_changes[$row['id_request']] = array( |
|
518 | 535 | 'id_request' => $row['id_request'], |
519 | 536 | 'status' => $_POST['req_action'] == 'approve' ? 1 : 2, // 1 = approved, 2 = rejected |
520 | 537 | 'id_member_acted' => $user_info['id'], |
@@ -522,6 +539,7 @@ discard block |
||
522 | 539 | 'time_acted' => time(), |
523 | 540 | 'act_reason' => $_POST['req_action'] != 'approve' && !empty($_POST['groupreason']) && !empty($_POST['groupreason'][$row['id_request']]) ? $smcFunc['htmlspecialchars']($_POST['groupreason'][$row['id_request']], ENT_QUOTES) : '', |
524 | 541 | ); |
542 | + } |
|
525 | 543 | $request_list[] = $row['id_request']; |
526 | 544 | } |
527 | 545 | $smcFunc['db_free_result']($request); |
@@ -744,21 +762,24 @@ discard block |
||
744 | 762 | $group_requests = array(); |
745 | 763 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
746 | 764 | { |
747 | - if (empty($row['reason'])) |
|
748 | - $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
749 | - else |
|
750 | - $reason = censorText($row['reason']); |
|
765 | + if (empty($row['reason'])) { |
|
766 | + $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
767 | + } else { |
|
768 | + $reason = censorText($row['reason']); |
|
769 | + } |
|
751 | 770 | |
752 | 771 | if (isset($_GET['closed'])) |
753 | 772 | { |
754 | - if ($row['status'] == 1) |
|
755 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
756 | - elseif ($row['status'] == 2) |
|
757 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
773 | + if ($row['status'] == 1) { |
|
774 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
775 | + } elseif ($row['status'] == 2) { |
|
776 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
777 | + } |
|
758 | 778 | |
759 | 779 | $reason .= ' (' . timeformat($row['time_acted']) . ')'; |
760 | - if (!empty($row['act_reason'])) |
|
761 | - $reason .= '<br><br>' . censorText($row['act_reason']); |
|
780 | + if (!empty($row['act_reason'])) { |
|
781 | + $reason .= '<br><br>' . censorText($row['act_reason']); |
|
782 | + } |
|
762 | 783 | } |
763 | 784 | |
764 | 785 | $group_requests[] = array( |
@@ -259,8 +259,8 @@ |
||
259 | 259 | $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
260 | 260 | |
261 | 261 | $js_time_string = str_replace( |
262 | - array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
|
263 | - array('H', 'G', 'h', 'g', 'i', 'A', 'a', 'h:i:s A', 'H:i', 's', 'H:i:s', 'H:i:s'), |
|
262 | + array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
|
263 | + array('H', 'G', 'h', 'g', 'i', 'A', 'a', 'h:i:s A', 'H:i', 's', 'H:i:s', 'H:i:s'), |
|
264 | 264 | $time_string |
265 | 265 | ); |
266 | 266 |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 3 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Handles showing the post screen, loading the post to be modified, and loading any post quoted. |
@@ -35,12 +36,14 @@ discard block |
||
35 | 36 | global $sourcedir, $smcFunc, $language; |
36 | 37 | |
37 | 38 | loadLanguage('Post'); |
38 | - if (!empty($modSettings['drafts_post_enabled'])) |
|
39 | - loadLanguage('Drafts'); |
|
39 | + if (!empty($modSettings['drafts_post_enabled'])) { |
|
40 | + loadLanguage('Drafts'); |
|
41 | + } |
|
40 | 42 | |
41 | 43 | // You can't reply with a poll... hacker. |
42 | - if (isset($_REQUEST['poll']) && !empty($topic) && !isset($_REQUEST['msg'])) |
|
43 | - unset($_REQUEST['poll']); |
|
44 | + if (isset($_REQUEST['poll']) && !empty($topic) && !isset($_REQUEST['msg'])) { |
|
45 | + unset($_REQUEST['poll']); |
|
46 | + } |
|
44 | 47 | |
45 | 48 | // Posting an event? |
46 | 49 | $context['make_event'] = isset($_REQUEST['calendar']); |
@@ -55,8 +58,9 @@ discard block |
||
55 | 58 | $context['auto_notify'] = !empty($context['notify_prefs']['msg_auto_notify']); |
56 | 59 | |
57 | 60 | // You must be posting to *some* board. |
58 | - if (empty($board) && !$context['make_event']) |
|
59 | - fatal_lang_error('no_board', false); |
|
61 | + if (empty($board) && !$context['make_event']) { |
|
62 | + fatal_lang_error('no_board', false); |
|
63 | + } |
|
60 | 64 | |
61 | 65 | require_once($sourcedir . '/Subs-Post.php'); |
62 | 66 | |
@@ -79,10 +83,11 @@ discard block |
||
79 | 83 | array( |
80 | 84 | 'msg' => (int) $_REQUEST['msg'], |
81 | 85 | )); |
82 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
83 | - unset($_REQUEST['msg'], $_POST['msg'], $_GET['msg']); |
|
84 | - else |
|
85 | - list ($topic) = $smcFunc['db_fetch_row']($request); |
|
86 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
87 | + unset($_REQUEST['msg'], $_POST['msg'], $_GET['msg']); |
|
88 | + } else { |
|
89 | + list ($topic) = $smcFunc['db_fetch_row']($request); |
|
90 | + } |
|
86 | 91 | $smcFunc['db_free_result']($request); |
87 | 92 | } |
88 | 93 | |
@@ -109,33 +114,36 @@ discard block |
||
109 | 114 | $smcFunc['db_free_result']($request); |
110 | 115 | |
111 | 116 | // If this topic already has a poll, they sure can't add another. |
112 | - if (isset($_REQUEST['poll']) && $pollID > 0) |
|
113 | - unset($_REQUEST['poll']); |
|
117 | + if (isset($_REQUEST['poll']) && $pollID > 0) { |
|
118 | + unset($_REQUEST['poll']); |
|
119 | + } |
|
114 | 120 | |
115 | 121 | if (empty($_REQUEST['msg'])) |
116 | 122 | { |
117 | - if ($user_info['is_guest'] && !allowedTo('post_reply_any') && (!$modSettings['postmod_active'] || !allowedTo('post_unapproved_replies_any'))) |
|
118 | - is_not_guest(); |
|
123 | + if ($user_info['is_guest'] && !allowedTo('post_reply_any') && (!$modSettings['postmod_active'] || !allowedTo('post_unapproved_replies_any'))) { |
|
124 | + is_not_guest(); |
|
125 | + } |
|
119 | 126 | |
120 | 127 | // By default the reply will be approved... |
121 | 128 | $context['becomes_approved'] = true; |
122 | 129 | if ($id_member_poster != $user_info['id'] || $user_info['is_guest']) |
123 | 130 | { |
124 | - if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any')) |
|
125 | - $context['becomes_approved'] = false; |
|
126 | - else |
|
127 | - isAllowedTo('post_reply_any'); |
|
128 | - } |
|
129 | - elseif (!allowedTo('post_reply_any')) |
|
131 | + if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any')) { |
|
132 | + $context['becomes_approved'] = false; |
|
133 | + } else { |
|
134 | + isAllowedTo('post_reply_any'); |
|
135 | + } |
|
136 | + } elseif (!allowedTo('post_reply_any')) |
|
130 | 137 | { |
131 | - if ($modSettings['postmod_active'] && ((allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own')) || allowedTo('post_unapproved_replies_any'))) |
|
132 | - $context['becomes_approved'] = false; |
|
133 | - else |
|
134 | - isAllowedTo('post_reply_own'); |
|
138 | + if ($modSettings['postmod_active'] && ((allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own')) || allowedTo('post_unapproved_replies_any'))) { |
|
139 | + $context['becomes_approved'] = false; |
|
140 | + } else { |
|
141 | + isAllowedTo('post_reply_own'); |
|
142 | + } |
|
135 | 143 | } |
144 | + } else { |
|
145 | + $context['becomes_approved'] = true; |
|
136 | 146 | } |
137 | - else |
|
138 | - $context['becomes_approved'] = true; |
|
139 | 147 | |
140 | 148 | $context['can_lock'] = allowedTo('lock_any') || ($user_info['id'] == $id_member_poster && allowedTo('lock_own')); |
141 | 149 | $context['can_sticky'] = allowedTo('make_sticky'); |
@@ -147,18 +155,19 @@ discard block |
||
147 | 155 | $context['sticky'] = isset($_REQUEST['sticky']) ? !empty($_REQUEST['sticky']) : $sticky; |
148 | 156 | |
149 | 157 | // Check whether this is a really old post being bumped... |
150 | - if (!empty($modSettings['oldTopicDays']) && $lastPostTime + $modSettings['oldTopicDays'] * 86400 < time() && empty($sticky) && !isset($_REQUEST['subject'])) |
|
151 | - $post_errors[] = array('old_topic', array($modSettings['oldTopicDays'])); |
|
152 | - } |
|
153 | - else |
|
158 | + if (!empty($modSettings['oldTopicDays']) && $lastPostTime + $modSettings['oldTopicDays'] * 86400 < time() && empty($sticky) && !isset($_REQUEST['subject'])) { |
|
159 | + $post_errors[] = array('old_topic', array($modSettings['oldTopicDays'])); |
|
160 | + } |
|
161 | + } else |
|
154 | 162 | { |
155 | 163 | $context['becomes_approved'] = true; |
156 | 164 | if ((!$context['make_event'] || !empty($board))) |
157 | 165 | { |
158 | - if ($modSettings['postmod_active'] && !allowedTo('post_new') && allowedTo('post_unapproved_topics')) |
|
159 | - $context['becomes_approved'] = false; |
|
160 | - else |
|
161 | - isAllowedTo('post_new'); |
|
166 | + if ($modSettings['postmod_active'] && !allowedTo('post_new') && allowedTo('post_unapproved_topics')) { |
|
167 | + $context['becomes_approved'] = false; |
|
168 | + } else { |
|
169 | + isAllowedTo('post_new'); |
|
170 | + } |
|
162 | 171 | } |
163 | 172 | |
164 | 173 | $locked = 0; |
@@ -196,20 +205,24 @@ discard block |
||
196 | 205 | } |
197 | 206 | |
198 | 207 | // Don't allow a post if it's locked and you aren't all powerful. |
199 | - if ($locked && !allowedTo('moderate_board')) |
|
200 | - fatal_lang_error('topic_locked', false); |
|
208 | + if ($locked && !allowedTo('moderate_board')) { |
|
209 | + fatal_lang_error('topic_locked', false); |
|
210 | + } |
|
201 | 211 | // Check the users permissions - is the user allowed to add or post a poll? |
202 | 212 | if (isset($_REQUEST['poll']) && $modSettings['pollMode'] == '1') |
203 | 213 | { |
204 | 214 | // New topic, new poll. |
205 | - if (empty($topic)) |
|
206 | - isAllowedTo('poll_post'); |
|
215 | + if (empty($topic)) { |
|
216 | + isAllowedTo('poll_post'); |
|
217 | + } |
|
207 | 218 | // This is an old topic - but it is yours! Can you add to it? |
208 | - elseif ($user_info['id'] == $id_member_poster && !allowedTo('poll_add_any')) |
|
209 | - isAllowedTo('poll_add_own'); |
|
219 | + elseif ($user_info['id'] == $id_member_poster && !allowedTo('poll_add_any')) { |
|
220 | + isAllowedTo('poll_add_own'); |
|
221 | + } |
|
210 | 222 | // If you're not the owner, can you add to any poll? |
211 | - else |
|
212 | - isAllowedTo('poll_add_any'); |
|
223 | + else { |
|
224 | + isAllowedTo('poll_add_any'); |
|
225 | + } |
|
213 | 226 | |
214 | 227 | require_once($sourcedir . '/Subs-Members.php'); |
215 | 228 | $allowedVoteGroups = groupsAllowedTo('poll_vote', $board); |
@@ -238,8 +251,9 @@ discard block |
||
238 | 251 | if ($context['make_event']) |
239 | 252 | { |
240 | 253 | // They might want to pick a board. |
241 | - if (!isset($context['current_board'])) |
|
242 | - $context['current_board'] = 0; |
|
254 | + if (!isset($context['current_board'])) { |
|
255 | + $context['current_board'] = 0; |
|
256 | + } |
|
243 | 257 | |
244 | 258 | // Start loading up the event info. |
245 | 259 | $context['event'] = array(); |
@@ -253,10 +267,11 @@ discard block |
||
253 | 267 | isAllowedTo('calendar_post'); |
254 | 268 | |
255 | 269 | // We want a fairly compact version of the time, but as close as possible to the user's settings. |
256 | - if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) |
|
257 | - $time_string = '%k:%M'; |
|
258 | - else |
|
259 | - $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
270 | + if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) { |
|
271 | + $time_string = '%k:%M'; |
|
272 | + } else { |
|
273 | + $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
274 | + } |
|
260 | 275 | |
261 | 276 | $js_time_string = str_replace( |
262 | 277 | array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
@@ -278,8 +293,7 @@ discard block |
||
278 | 293 | require_once($sourcedir . '/Subs-Calendar.php'); |
279 | 294 | $eventProperties = getEventProperties($context['event']['id']); |
280 | 295 | $context['event'] = array_merge($context['event'], $eventProperties); |
281 | - } |
|
282 | - else |
|
296 | + } else |
|
283 | 297 | { |
284 | 298 | // Get the current event information. |
285 | 299 | require_once($sourcedir . '/Subs-Calendar.php'); |
@@ -287,15 +301,18 @@ discard block |
||
287 | 301 | $context['event'] = array_merge($context['event'], $eventProperties); |
288 | 302 | |
289 | 303 | // Make sure the year and month are in the valid range. |
290 | - if ($context['event']['month'] < 1 || $context['event']['month'] > 12) |
|
291 | - fatal_lang_error('invalid_month', false); |
|
292 | - if ($context['event']['year'] < $modSettings['cal_minyear'] || $context['event']['year'] > $modSettings['cal_maxyear']) |
|
293 | - fatal_lang_error('invalid_year', false); |
|
304 | + if ($context['event']['month'] < 1 || $context['event']['month'] > 12) { |
|
305 | + fatal_lang_error('invalid_month', false); |
|
306 | + } |
|
307 | + if ($context['event']['year'] < $modSettings['cal_minyear'] || $context['event']['year'] > $modSettings['cal_maxyear']) { |
|
308 | + fatal_lang_error('invalid_year', false); |
|
309 | + } |
|
294 | 310 | |
295 | 311 | // Get a list of boards they can post in. |
296 | 312 | $boards = boardsAllowedTo('post_new'); |
297 | - if (empty($boards)) |
|
298 | - fatal_lang_error('cannot_post_new', 'user'); |
|
313 | + if (empty($boards)) { |
|
314 | + fatal_lang_error('cannot_post_new', 'user'); |
|
315 | + } |
|
299 | 316 | |
300 | 317 | // Load a list of boards for this event in the context. |
301 | 318 | require_once($sourcedir . '/Subs-MessageIndex.php'); |
@@ -414,10 +431,11 @@ discard block |
||
414 | 431 | |
415 | 432 | if (!empty($context['new_replies'])) |
416 | 433 | { |
417 | - if ($context['new_replies'] == 1) |
|
418 | - $txt['error_new_replies'] = isset($_GET['last_msg']) ? $txt['error_new_reply_reading'] : $txt['error_new_reply']; |
|
419 | - else |
|
420 | - $txt['error_new_replies'] = sprintf(isset($_GET['last_msg']) ? $txt['error_new_replies_reading'] : $txt['error_new_replies'], $context['new_replies']); |
|
434 | + if ($context['new_replies'] == 1) { |
|
435 | + $txt['error_new_replies'] = isset($_GET['last_msg']) ? $txt['error_new_reply_reading'] : $txt['error_new_reply']; |
|
436 | + } else { |
|
437 | + $txt['error_new_replies'] = sprintf(isset($_GET['last_msg']) ? $txt['error_new_replies_reading'] : $txt['error_new_replies'], $context['new_replies']); |
|
438 | + } |
|
421 | 439 | |
422 | 440 | $post_errors[] = 'new_replies'; |
423 | 441 | |
@@ -429,9 +447,9 @@ discard block |
||
429 | 447 | // Get a response prefix (like 'Re:') in the default forum language. |
430 | 448 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix'))) |
431 | 449 | { |
432 | - if ($language === $user_info['language']) |
|
433 | - $context['response_prefix'] = $txt['response_prefix']; |
|
434 | - else |
|
450 | + if ($language === $user_info['language']) { |
|
451 | + $context['response_prefix'] = $txt['response_prefix']; |
|
452 | + } else |
|
435 | 453 | { |
436 | 454 | loadLanguage('index', $language, false); |
437 | 455 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -444,8 +462,9 @@ discard block |
||
444 | 462 | // Do we have a body, but an error happened. |
445 | 463 | if (isset($_REQUEST['message']) || isset($_REQUEST['quickReply']) || !empty($context['post_error'])) |
446 | 464 | { |
447 | - if (isset($_REQUEST['quickReply'])) |
|
448 | - $_REQUEST['message'] = $_REQUEST['quickReply']; |
|
465 | + if (isset($_REQUEST['quickReply'])) { |
|
466 | + $_REQUEST['message'] = $_REQUEST['quickReply']; |
|
467 | + } |
|
449 | 468 | |
450 | 469 | // Validate inputs. |
451 | 470 | if (empty($context['post_error'])) |
@@ -453,15 +472,17 @@ discard block |
||
453 | 472 | // This means they didn't click Post and get an error. |
454 | 473 | $really_previewing = true; |
455 | 474 | |
456 | - } |
|
457 | - else |
|
475 | + } else |
|
458 | 476 | { |
459 | - if (!isset($_REQUEST['subject'])) |
|
460 | - $_REQUEST['subject'] = ''; |
|
461 | - if (!isset($_REQUEST['message'])) |
|
462 | - $_REQUEST['message'] = ''; |
|
463 | - if (!isset($_REQUEST['icon'])) |
|
464 | - $_REQUEST['icon'] = 'xx'; |
|
477 | + if (!isset($_REQUEST['subject'])) { |
|
478 | + $_REQUEST['subject'] = ''; |
|
479 | + } |
|
480 | + if (!isset($_REQUEST['message'])) { |
|
481 | + $_REQUEST['message'] = ''; |
|
482 | + } |
|
483 | + if (!isset($_REQUEST['icon'])) { |
|
484 | + $_REQUEST['icon'] = 'xx'; |
|
485 | + } |
|
465 | 486 | |
466 | 487 | // They are previewing if they asked to preview (i.e. came from quick reply). |
467 | 488 | $really_previewing = !empty($_POST['preview']); |
@@ -477,8 +498,9 @@ discard block |
||
477 | 498 | $form_message = $smcFunc['htmlspecialchars']($_REQUEST['message'], ENT_QUOTES); |
478 | 499 | |
479 | 500 | // Make sure the subject isn't too long - taking into account special characters. |
480 | - if ($smcFunc['strlen']($form_subject) > 100) |
|
481 | - $form_subject = $smcFunc['substr']($form_subject, 0, 100); |
|
501 | + if ($smcFunc['strlen']($form_subject) > 100) { |
|
502 | + $form_subject = $smcFunc['substr']($form_subject, 0, 100); |
|
503 | + } |
|
482 | 504 | |
483 | 505 | if (isset($_REQUEST['poll'])) |
484 | 506 | { |
@@ -490,8 +512,9 @@ discard block |
||
490 | 512 | $_POST['options'] = empty($_POST['options']) ? array() : htmlspecialchars__recursive($_POST['options']); |
491 | 513 | foreach ($_POST['options'] as $option) |
492 | 514 | { |
493 | - if (trim($option) == '') |
|
494 | - continue; |
|
515 | + if (trim($option) == '') { |
|
516 | + continue; |
|
517 | + } |
|
495 | 518 | |
496 | 519 | $context['choices'][] = array( |
497 | 520 | 'id' => $choice_id++, |
@@ -553,13 +576,14 @@ discard block |
||
553 | 576 | $context['preview_subject'] = $form_subject; |
554 | 577 | |
555 | 578 | censorText($context['preview_subject']); |
579 | + } else { |
|
580 | + $context['preview_subject'] = '<em>' . $txt['no_subject'] . '</em>'; |
|
556 | 581 | } |
557 | - else |
|
558 | - $context['preview_subject'] = '<em>' . $txt['no_subject'] . '</em>'; |
|
559 | 582 | |
560 | 583 | // Protect any CDATA blocks. |
561 | - if (isset($_REQUEST['xml'])) |
|
562 | - $context['preview_message'] = strtr($context['preview_message'], array(']]>' => ']]]]><![CDATA[>')); |
|
584 | + if (isset($_REQUEST['xml'])) { |
|
585 | + $context['preview_message'] = strtr($context['preview_message'], array(']]>' => ']]]]>< == 0) |
|
602 | - fatal_lang_error('no_board', false); |
|
625 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
626 | + fatal_lang_error('no_board', false); |
|
627 | + } |
|
603 | 628 | $row = $smcFunc['db_fetch_assoc']($request); |
604 | 629 | |
605 | 630 | $attachment_stuff = array($row); |
606 | - while ($row2 = $smcFunc['db_fetch_assoc']($request)) |
|
607 | - $attachment_stuff[] = $row2; |
|
631 | + while ($row2 = $smcFunc['db_fetch_assoc']($request)) { |
|
632 | + $attachment_stuff[] = $row2; |
|
633 | + } |
|
608 | 634 | $smcFunc['db_free_result']($request); |
609 | 635 | |
610 | 636 | if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any')) |
611 | 637 | { |
612 | 638 | // Give an extra five minutes over the disable time threshold, so they can type - assuming the post is public. |
613 | - if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) |
|
614 | - fatal_lang_error('modify_post_time_passed', false); |
|
615 | - elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own')) |
|
616 | - isAllowedTo('modify_replies'); |
|
617 | - else |
|
618 | - isAllowedTo('modify_own'); |
|
639 | + if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) { |
|
640 | + fatal_lang_error('modify_post_time_passed', false); |
|
641 | + } elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own')) { |
|
642 | + isAllowedTo('modify_replies'); |
|
643 | + } else { |
|
644 | + isAllowedTo('modify_own'); |
|
645 | + } |
|
646 | + } elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any')) { |
|
647 | + isAllowedTo('modify_replies'); |
|
648 | + } else { |
|
649 | + isAllowedTo('modify_any'); |
|
619 | 650 | } |
620 | - elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any')) |
|
621 | - isAllowedTo('modify_replies'); |
|
622 | - else |
|
623 | - isAllowedTo('modify_any'); |
|
624 | 651 | |
625 | 652 | if ($context['can_announce'] && !empty($row['id_action'])) |
626 | 653 | { |
@@ -644,8 +671,9 @@ discard block |
||
644 | 671 | |
645 | 672 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
646 | 673 | { |
647 | - if ($row['filesize'] <= 0) |
|
648 | - continue; |
|
674 | + if ($row['filesize'] <= 0) { |
|
675 | + continue; |
|
676 | + } |
|
649 | 677 | $context['current_attachments'][$row['id_attach']] = array( |
650 | 678 | 'name' => $smcFunc['htmlspecialchars']($row['filename']), |
651 | 679 | 'size' => $row['filesize'], |
@@ -715,29 +743,32 @@ discard block |
||
715 | 743 | ) |
716 | 744 | ); |
717 | 745 | // The message they were trying to edit was most likely deleted. |
718 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
719 | - fatal_lang_error('no_message', false); |
|
746 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
747 | + fatal_lang_error('no_message', false); |
|
748 | + } |
|
720 | 749 | $row = $smcFunc['db_fetch_assoc']($request); |
721 | 750 | |
722 | 751 | $attachment_stuff = array($row); |
723 | - while ($row2 = $smcFunc['db_fetch_assoc']($request)) |
|
724 | - $attachment_stuff[] = $row2; |
|
752 | + while ($row2 = $smcFunc['db_fetch_assoc']($request)) { |
|
753 | + $attachment_stuff[] = $row2; |
|
754 | + } |
|
725 | 755 | $smcFunc['db_free_result']($request); |
726 | 756 | |
727 | 757 | if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any')) |
728 | 758 | { |
729 | 759 | // Give an extra five minutes over the disable time threshold, so they can type - assuming the post is public. |
730 | - if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) |
|
731 | - fatal_lang_error('modify_post_time_passed', false); |
|
732 | - elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own')) |
|
733 | - isAllowedTo('modify_replies'); |
|
734 | - else |
|
735 | - isAllowedTo('modify_own'); |
|
760 | + if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) { |
|
761 | + fatal_lang_error('modify_post_time_passed', false); |
|
762 | + } elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own')) { |
|
763 | + isAllowedTo('modify_replies'); |
|
764 | + } else { |
|
765 | + isAllowedTo('modify_own'); |
|
766 | + } |
|
767 | + } elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any')) { |
|
768 | + isAllowedTo('modify_replies'); |
|
769 | + } else { |
|
770 | + isAllowedTo('modify_any'); |
|
736 | 771 | } |
737 | - elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any')) |
|
738 | - isAllowedTo('modify_replies'); |
|
739 | - else |
|
740 | - isAllowedTo('modify_any'); |
|
741 | 772 | |
742 | 773 | if ($context['can_announce'] && !empty($row['id_action'])) |
743 | 774 | { |
@@ -764,15 +795,17 @@ discard block |
||
764 | 795 | $context['icon'] = $row['icon']; |
765 | 796 | |
766 | 797 | // Show an "approve" box if the user can approve it, and the message isn't approved. |
767 | - if (!$row['approved'] && !$context['show_approval']) |
|
768 | - $context['show_approval'] = allowedTo('approve_posts'); |
|
798 | + if (!$row['approved'] && !$context['show_approval']) { |
|
799 | + $context['show_approval'] = allowedTo('approve_posts'); |
|
800 | + } |
|
769 | 801 | |
770 | 802 | // Sort the attachments so they are in the order saved |
771 | 803 | $temp = array(); |
772 | 804 | foreach ($attachment_stuff as $attachment) |
773 | 805 | { |
774 | - if ($attachment['filesize'] >= 0 && !empty($modSettings['attachmentEnable'])) |
|
775 | - $temp[$attachment['id_attach']] = $attachment; |
|
806 | + if ($attachment['filesize'] >= 0 && !empty($modSettings['attachmentEnable'])) { |
|
807 | + $temp[$attachment['id_attach']] = $attachment; |
|
808 | + } |
|
776 | 809 | |
777 | 810 | } |
778 | 811 | ksort($temp); |
@@ -834,14 +867,16 @@ discard block |
||
834 | 867 | 'is_approved' => 1, |
835 | 868 | ) |
836 | 869 | ); |
837 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
838 | - fatal_lang_error('quoted_post_deleted', false); |
|
870 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
871 | + fatal_lang_error('quoted_post_deleted', false); |
|
872 | + } |
|
839 | 873 | list ($form_subject, $mname, $mdate, $form_message) = $smcFunc['db_fetch_row']($request); |
840 | 874 | $smcFunc['db_free_result']($request); |
841 | 875 | |
842 | 876 | // Add 'Re: ' to the front of the quoted subject. |
843 | - if (trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) |
|
844 | - $form_subject = $context['response_prefix'] . $form_subject; |
|
877 | + if (trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) { |
|
878 | + $form_subject = $context['response_prefix'] . $form_subject; |
|
879 | + } |
|
845 | 880 | |
846 | 881 | // Censor the message and subject. |
847 | 882 | censorText($form_message); |
@@ -854,10 +889,11 @@ discard block |
||
854 | 889 | for ($i = 0, $n = count($parts); $i < $n; $i++) |
855 | 890 | { |
856 | 891 | // It goes 0 = outside, 1 = begin tag, 2 = inside, 3 = close tag, repeat. |
857 | - if ($i % 4 == 0) |
|
858 | - $parts[$i] = preg_replace_callback('~\[html\](.+?)\[/html\]~is', function($m) |
|
892 | + if ($i % 4 == 0) { |
|
893 | + $parts[$i] = preg_replace_callback('~\[html\](.+?)\[/html\]~is', function($m) |
|
859 | 894 | { |
860 | 895 | return '[html]' . preg_replace('~<br\s?/?' . '>~i', '<br /><br>', "$m[1]") . '[/html]'; |
896 | + } |
|
861 | 897 | }, $parts[$i]); |
862 | 898 | } |
863 | 899 | $form_message = implode('', $parts); |
@@ -866,8 +902,9 @@ discard block |
||
866 | 902 | $form_message = preg_replace('~<br ?/?' . '>~i', "\n", $form_message); |
867 | 903 | |
868 | 904 | // Remove any nested quotes, if necessary. |
869 | - if (!empty($modSettings['removeNestedQuotes'])) |
|
870 | - $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
905 | + if (!empty($modSettings['removeNestedQuotes'])) { |
|
906 | + $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
907 | + } |
|
871 | 908 | |
872 | 909 | // Add a quote string on the front and end. |
873 | 910 | $form_message = '[quote author=' . $mname . ' link=msg=' . (int) $_REQUEST['quote'] . ' date=' . $mdate . ']' . "\n" . rtrim($form_message) . "\n" . '[/quote]'; |
@@ -879,15 +916,15 @@ discard block |
||
879 | 916 | $form_subject = $first_subject; |
880 | 917 | |
881 | 918 | // Add 'Re: ' to the front of the subject. |
882 | - if (trim($context['response_prefix']) != '' && $form_subject != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) |
|
883 | - $form_subject = $context['response_prefix'] . $form_subject; |
|
919 | + if (trim($context['response_prefix']) != '' && $form_subject != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) { |
|
920 | + $form_subject = $context['response_prefix'] . $form_subject; |
|
921 | + } |
|
884 | 922 | |
885 | 923 | // Censor the subject. |
886 | 924 | censorText($form_subject); |
887 | 925 | |
888 | 926 | $form_message = ''; |
889 | - } |
|
890 | - else |
|
927 | + } else |
|
891 | 928 | { |
892 | 929 | $form_subject = isset($_GET['subject']) ? $_GET['subject'] : ''; |
893 | 930 | $form_message = ''; |
@@ -905,13 +942,15 @@ discard block |
||
905 | 942 | if (isset($_REQUEST['msg'])) |
906 | 943 | { |
907 | 944 | $context['attachments']['quantity'] = count($context['current_attachments']); |
908 | - foreach ($context['current_attachments'] as $attachment) |
|
909 | - $context['attachments']['total_size'] += $attachment['size']; |
|
945 | + foreach ($context['current_attachments'] as $attachment) { |
|
946 | + $context['attachments']['total_size'] += $attachment['size']; |
|
947 | + } |
|
910 | 948 | } |
911 | 949 | |
912 | 950 | // A bit of house keeping first. |
913 | - if (!empty($_SESSION['temp_attachments']) && count($_SESSION['temp_attachments']) == 1) |
|
914 | - unset($_SESSION['temp_attachments']); |
|
951 | + if (!empty($_SESSION['temp_attachments']) && count($_SESSION['temp_attachments']) == 1) { |
|
952 | + unset($_SESSION['temp_attachments']); |
|
953 | + } |
|
915 | 954 | |
916 | 955 | if (!empty($_SESSION['temp_attachments'])) |
917 | 956 | { |
@@ -920,9 +959,10 @@ discard block |
||
920 | 959 | { |
921 | 960 | foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
922 | 961 | { |
923 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
924 | - if (file_exists($attachment['tmp_name'])) |
|
962 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) { |
|
963 | + if (file_exists($attachment['tmp_name'])) |
|
925 | 964 | unlink($attachment['tmp_name']); |
965 | + } |
|
926 | 966 | } |
927 | 967 | $post_errors[] = 'temp_attachments_gone'; |
928 | 968 | $_SESSION['temp_attachments'] = array(); |
@@ -936,8 +976,9 @@ discard block |
||
936 | 976 | // See if any files still exist before showing the warning message and the files attached. |
937 | 977 | foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
938 | 978 | { |
939 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) === false) |
|
940 | - continue; |
|
979 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) === false) { |
|
980 | + continue; |
|
981 | + } |
|
941 | 982 | |
942 | 983 | if (file_exists($attachment['tmp_name'])) |
943 | 984 | { |
@@ -947,20 +988,21 @@ discard block |
||
947 | 988 | break; |
948 | 989 | } |
949 | 990 | } |
950 | - } |
|
951 | - else |
|
991 | + } else |
|
952 | 992 | { |
953 | 993 | // Since, they don't belong here. Let's inform the user that they exist.. |
954 | - if (!empty($topic)) |
|
955 | - $delete_url = $scripturl . '?action=post' . (!empty($_REQUEST['msg']) ? (';msg=' . $_REQUEST['msg']) : '') . (!empty($_REQUEST['last_msg']) ? (';last_msg=' . $_REQUEST['last_msg']) : '') . ';topic=' . $topic . ';delete_temp'; |
|
956 | - else |
|
957 | - $delete_url = $scripturl . '?action=post;board=' . $board . ';delete_temp'; |
|
994 | + if (!empty($topic)) { |
|
995 | + $delete_url = $scripturl . '?action=post' . (!empty($_REQUEST['msg']) ? (';msg=' . $_REQUEST['msg']) : '') . (!empty($_REQUEST['last_msg']) ? (';last_msg=' . $_REQUEST['last_msg']) : '') . ';topic=' . $topic . ';delete_temp'; |
|
996 | + } else { |
|
997 | + $delete_url = $scripturl . '?action=post;board=' . $board . ';delete_temp'; |
|
998 | + } |
|
958 | 999 | |
959 | 1000 | // Compile a list of the files to show the user. |
960 | 1001 | $file_list = array(); |
961 | - foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
962 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
1002 | + foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) { |
|
1003 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
963 | 1004 | $file_list[] = $attachment['name']; |
1005 | + } |
|
964 | 1006 | |
965 | 1007 | $_SESSION['temp_attachments']['post']['files'] = $file_list; |
966 | 1008 | $file_list = '<div class="attachments">' . implode('<br>', $file_list) . '</div>'; |
@@ -972,8 +1014,7 @@ discard block |
||
972 | 1014 | |
973 | 1015 | $post_errors[] = array('temp_attachments_found', array($delete_url, $goback_url, $file_list)); |
974 | 1016 | $context['ignore_temp_attachments'] = true; |
975 | - } |
|
976 | - else |
|
1017 | + } else |
|
977 | 1018 | { |
978 | 1019 | $post_errors[] = array('temp_attachments_lost', array($delete_url, $file_list)); |
979 | 1020 | $context['ignore_temp_attachments'] = true; |
@@ -981,16 +1022,19 @@ discard block |
||
981 | 1022 | } |
982 | 1023 | } |
983 | 1024 | |
984 | - if (!empty($context['we_are_history'])) |
|
985 | - $post_errors[] = $context['we_are_history']; |
|
1025 | + if (!empty($context['we_are_history'])) { |
|
1026 | + $post_errors[] = $context['we_are_history']; |
|
1027 | + } |
|
986 | 1028 | |
987 | 1029 | foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
988 | 1030 | { |
989 | - if (isset($context['ignore_temp_attachments']) || isset($_SESSION['temp_attachments']['post']['files'])) |
|
990 | - break; |
|
1031 | + if (isset($context['ignore_temp_attachments']) || isset($_SESSION['temp_attachments']['post']['files'])) { |
|
1032 | + break; |
|
1033 | + } |
|
991 | 1034 | |
992 | - if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false) |
|
993 | - continue; |
|
1035 | + if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false) { |
|
1036 | + continue; |
|
1037 | + } |
|
994 | 1038 | |
995 | 1039 | if ($attachID == 'initial_error') |
996 | 1040 | { |
@@ -1005,15 +1049,17 @@ discard block |
||
1005 | 1049 | { |
1006 | 1050 | $txt['error_attach_errors'] = empty($txt['error_attach_errors']) ? '<br>' : ''; |
1007 | 1051 | $txt['error_attach_errors'] .= vsprintf($txt['attach_warning'], $attachment['name']) . '<div style="padding: 0 1em;">'; |
1008 | - foreach ($attachment['errors'] as $error) |
|
1009 | - $txt['error_attach_errors'] .= (is_array($error) ? vsprintf($txt[$error[0]], $error[1]) : $txt[$error]) . '<br >'; |
|
1052 | + foreach ($attachment['errors'] as $error) { |
|
1053 | + $txt['error_attach_errors'] .= (is_array($error) ? vsprintf($txt[$error[0]], $error[1]) : $txt[$error]) . '<br >'; |
|
1054 | + } |
|
1010 | 1055 | $txt['error_attach_errors'] .= '</div>'; |
1011 | 1056 | $post_errors[] = 'attach_errors'; |
1012 | 1057 | |
1013 | 1058 | // Take out the trash. |
1014 | 1059 | unset($_SESSION['temp_attachments'][$attachID]); |
1015 | - if (file_exists($attachment['tmp_name'])) |
|
1016 | - unlink($attachment['tmp_name']); |
|
1060 | + if (file_exists($attachment['tmp_name'])) { |
|
1061 | + unlink($attachment['tmp_name']); |
|
1062 | + } |
|
1017 | 1063 | continue; |
1018 | 1064 | } |
1019 | 1065 | |
@@ -1026,8 +1072,9 @@ discard block |
||
1026 | 1072 | |
1027 | 1073 | $context['attachments']['quantity']++; |
1028 | 1074 | $context['attachments']['total_size'] += $attachment['size']; |
1029 | - if (!isset($context['files_in_session_warning'])) |
|
1030 | - $context['files_in_session_warning'] = $txt['attached_files_in_session']; |
|
1075 | + if (!isset($context['files_in_session_warning'])) { |
|
1076 | + $context['files_in_session_warning'] = $txt['attached_files_in_session']; |
|
1077 | + } |
|
1031 | 1078 | |
1032 | 1079 | $context['current_attachments'][$attachID] = array( |
1033 | 1080 | 'name' => '<u>' . $smcFunc['htmlspecialchars']($attachment['name']) . '</u>', |
@@ -1055,8 +1102,9 @@ discard block |
||
1055 | 1102 | } |
1056 | 1103 | |
1057 | 1104 | // If they came from quick reply, and have to enter verification details, give them some notice. |
1058 | - if (!empty($_REQUEST['from_qr']) && !empty($context['require_verification'])) |
|
1059 | - $post_errors[] = 'need_qr_verification'; |
|
1105 | + if (!empty($_REQUEST['from_qr']) && !empty($context['require_verification'])) { |
|
1106 | + $post_errors[] = 'need_qr_verification'; |
|
1107 | + } |
|
1060 | 1108 | |
1061 | 1109 | /* |
1062 | 1110 | * There are two error types: serious and minor. Serious errors |
@@ -1073,52 +1121,56 @@ discard block |
||
1073 | 1121 | { |
1074 | 1122 | loadLanguage('Errors'); |
1075 | 1123 | $context['error_type'] = 'minor'; |
1076 | - foreach ($post_errors as $post_error) |
|
1077 | - if (is_array($post_error)) |
|
1124 | + foreach ($post_errors as $post_error) { |
|
1125 | + if (is_array($post_error)) |
|
1078 | 1126 | { |
1079 | 1127 | $post_error_id = $post_error[0]; |
1128 | + } |
|
1080 | 1129 | $context['post_error'][$post_error_id] = vsprintf($txt['error_' . $post_error_id], $post_error[1]); |
1081 | 1130 | |
1082 | 1131 | // If it's not a minor error flag it as such. |
1083 | - if (!in_array($post_error_id, $minor_errors)) |
|
1084 | - $context['error_type'] = 'serious'; |
|
1085 | - } |
|
1086 | - else |
|
1132 | + if (!in_array($post_error_id, $minor_errors)) { |
|
1133 | + $context['error_type'] = 'serious'; |
|
1134 | + } |
|
1135 | + } else |
|
1087 | 1136 | { |
1088 | 1137 | $context['post_error'][$post_error] = $txt['error_' . $post_error]; |
1089 | 1138 | |
1090 | 1139 | // If it's not a minor error flag it as such. |
1091 | - if (!in_array($post_error, $minor_errors)) |
|
1092 | - $context['error_type'] = 'serious'; |
|
1140 | + if (!in_array($post_error, $minor_errors)) { |
|
1141 | + $context['error_type'] = 'serious'; |
|
1142 | + } |
|
1093 | 1143 | } |
1094 | 1144 | } |
1095 | 1145 | |
1096 | 1146 | // What are you doing? Posting a poll, modifying, previewing, new post, or reply... |
1097 | - if (isset($_REQUEST['poll'])) |
|
1098 | - $context['page_title'] = $txt['new_poll']; |
|
1099 | - elseif ($context['make_event']) |
|
1100 | - $context['page_title'] = $context['event']['id'] == -1 ? $txt['calendar_post_event'] : $txt['calendar_edit']; |
|
1101 | - elseif (isset($_REQUEST['msg'])) |
|
1102 | - $context['page_title'] = $txt['modify_msg']; |
|
1103 | - elseif (isset($_REQUEST['subject'], $context['preview_subject'])) |
|
1104 | - $context['page_title'] = $txt['preview'] . ' - ' . strip_tags($context['preview_subject']); |
|
1105 | - elseif (empty($topic)) |
|
1106 | - $context['page_title'] = $txt['start_new_topic']; |
|
1107 | - else |
|
1108 | - $context['page_title'] = $txt['post_reply']; |
|
1147 | + if (isset($_REQUEST['poll'])) { |
|
1148 | + $context['page_title'] = $txt['new_poll']; |
|
1149 | + } elseif ($context['make_event']) { |
|
1150 | + $context['page_title'] = $context['event']['id'] == -1 ? $txt['calendar_post_event'] : $txt['calendar_edit']; |
|
1151 | + } elseif (isset($_REQUEST['msg'])) { |
|
1152 | + $context['page_title'] = $txt['modify_msg']; |
|
1153 | + } elseif (isset($_REQUEST['subject'], $context['preview_subject'])) { |
|
1154 | + $context['page_title'] = $txt['preview'] . ' - ' . strip_tags($context['preview_subject']); |
|
1155 | + } elseif (empty($topic)) { |
|
1156 | + $context['page_title'] = $txt['start_new_topic']; |
|
1157 | + } else { |
|
1158 | + $context['page_title'] = $txt['post_reply']; |
|
1159 | + } |
|
1109 | 1160 | |
1110 | 1161 | // Build the link tree. |
1111 | - if (empty($topic)) |
|
1112 | - $context['linktree'][] = array( |
|
1162 | + if (empty($topic)) { |
|
1163 | + $context['linktree'][] = array( |
|
1113 | 1164 | 'name' => '<em>' . $txt['start_new_topic'] . '</em>' |
1114 | 1165 | ); |
1115 | - else |
|
1116 | - $context['linktree'][] = array( |
|
1166 | + } else { |
|
1167 | + $context['linktree'][] = array( |
|
1117 | 1168 | 'url' => $scripturl . '?topic=' . $topic . '.' . $_REQUEST['start'], |
1118 | 1169 | 'name' => $form_subject, |
1119 | 1170 | 'extra_before' => '<span><strong class="nav">' . $context['page_title'] . ' (</strong></span>', |
1120 | 1171 | 'extra_after' => '<span><strong class="nav">)</strong></span>' |
1121 | 1172 | ); |
1173 | + } |
|
1122 | 1174 | |
1123 | 1175 | $context['subject'] = addcslashes($form_subject, '"'); |
1124 | 1176 | $context['message'] = str_replace(array('"', '<', '>', ' '), array('"', '<', '>', ' '), $form_message); |
@@ -1162,8 +1214,9 @@ discard block |
||
1162 | 1214 | // Message icons - customized icons are off? |
1163 | 1215 | $context['icons'] = getMessageIcons($board); |
1164 | 1216 | |
1165 | - if (!empty($context['icons'])) |
|
1166 | - $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1217 | + if (!empty($context['icons'])) { |
|
1218 | + $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1219 | + } |
|
1167 | 1220 | |
1168 | 1221 | // Are we starting a poll? if set the poll icon as selected if its available |
1169 | 1222 | if (isset($_REQUEST['poll'])) |
@@ -1183,8 +1236,9 @@ discard block |
||
1183 | 1236 | for ($i = 0, $n = count($context['icons']); $i < $n; $i++) |
1184 | 1237 | { |
1185 | 1238 | $context['icons'][$i]['selected'] = $context['icon'] == $context['icons'][$i]['value']; |
1186 | - if ($context['icons'][$i]['selected']) |
|
1187 | - $context['icon_url'] = $context['icons'][$i]['url']; |
|
1239 | + if ($context['icons'][$i]['selected']) { |
|
1240 | + $context['icon_url'] = $context['icons'][$i]['url']; |
|
1241 | + } |
|
1188 | 1242 | } |
1189 | 1243 | if (empty($context['icon_url'])) |
1190 | 1244 | { |
@@ -1198,8 +1252,9 @@ discard block |
||
1198 | 1252 | )); |
1199 | 1253 | } |
1200 | 1254 | |
1201 | - if (!empty($topic) && !empty($modSettings['topicSummaryPosts'])) |
|
1202 | - getTopic(); |
|
1255 | + if (!empty($topic) && !empty($modSettings['topicSummaryPosts'])) { |
|
1256 | + getTopic(); |
|
1257 | + } |
|
1203 | 1258 | |
1204 | 1259 | // If the user can post attachments prepare the warning labels. |
1205 | 1260 | if ($context['can_post_attachment']) |
@@ -1210,15 +1265,17 @@ discard block |
||
1210 | 1265 | $context['attachment_restrictions'] = array(); |
1211 | 1266 | $context['allowed_extensions'] = strtr(strtolower($modSettings['attachmentExtensions']), array(',' => ', ')); |
1212 | 1267 | $attachmentRestrictionTypes = array('attachmentNumPerPostLimit', 'attachmentPostLimit', 'attachmentSizeLimit'); |
1213 | - foreach ($attachmentRestrictionTypes as $type) |
|
1214 | - if (!empty($modSettings[$type])) |
|
1268 | + foreach ($attachmentRestrictionTypes as $type) { |
|
1269 | + if (!empty($modSettings[$type])) |
|
1215 | 1270 | { |
1216 | 1271 | $context['attachment_restrictions'][] = sprintf($txt['attach_restrict_' . $type . ($modSettings[$type] >= 1024 ? '_MB' : '')], comma_format($modSettings[$type], 0)); |
1272 | + } |
|
1217 | 1273 | // Show some numbers. If they exist. |
1218 | - if ($type == 'attachmentNumPerPostLimit' && $context['attachments']['quantity'] > 0) |
|
1219 | - $context['attachment_restrictions'][] = sprintf($txt['attach_remaining'], $modSettings['attachmentNumPerPostLimit'] - $context['attachments']['quantity']); |
|
1220 | - elseif ($type == 'attachmentPostLimit' && $context['attachments']['total_size'] > 0) |
|
1221 | - $context['attachment_restrictions'][] = sprintf($txt['attach_available'], comma_format(round(max($modSettings['attachmentPostLimit'] - ($context['attachments']['total_size'] / 1024), 0)), 0)); |
|
1274 | + if ($type == 'attachmentNumPerPostLimit' && $context['attachments']['quantity'] > 0) { |
|
1275 | + $context['attachment_restrictions'][] = sprintf($txt['attach_remaining'], $modSettings['attachmentNumPerPostLimit'] - $context['attachments']['quantity']); |
|
1276 | + } elseif ($type == 'attachmentPostLimit' && $context['attachments']['total_size'] > 0) { |
|
1277 | + $context['attachment_restrictions'][] = sprintf($txt['attach_available'], comma_format(round(max($modSettings['attachmentPostLimit'] - ($context['attachments']['total_size'] / 1024), 0)), 0)); |
|
1278 | + } |
|
1222 | 1279 | } |
1223 | 1280 | } |
1224 | 1281 | |
@@ -1252,8 +1309,8 @@ discard block |
||
1252 | 1309 | |
1253 | 1310 | if (!empty($context['current_attachments'])) |
1254 | 1311 | { |
1255 | - foreach ($context['current_attachments'] as $key => $mock) |
|
1256 | - addInlineJavaScript(' |
|
1312 | + foreach ($context['current_attachments'] as $key => $mock) { |
|
1313 | + addInlineJavaScript(' |
|
1257 | 1314 | current_attachments.push({ |
1258 | 1315 | name: '. JavaScriptEscape($mock['name']) . ', |
1259 | 1316 | size: '. $mock['size'] . ', |
@@ -1262,6 +1319,7 @@ discard block |
||
1262 | 1319 | type: '. JavaScriptEscape(!empty($mock['mime_type']) ? $mock['mime_type'] : '') . ', |
1263 | 1320 | thumbID: '. (!empty($mock['thumb']) ? $mock['thumb'] : 0) . ' |
1264 | 1321 | });', true); |
1322 | + } |
|
1265 | 1323 | } |
1266 | 1324 | |
1267 | 1325 | // File Upload. |
@@ -1306,8 +1364,9 @@ discard block |
||
1306 | 1364 | var current_board = '. (empty($context['current_board']) ? 'null' : $context['current_board']) . ';', false); |
1307 | 1365 | |
1308 | 1366 | // Finally, load the template. |
1309 | - if (!isset($_REQUEST['xml'])) |
|
1310 | - loadTemplate('Post'); |
|
1367 | + if (!isset($_REQUEST['xml'])) { |
|
1368 | + loadTemplate('Post'); |
|
1369 | + } |
|
1311 | 1370 | |
1312 | 1371 | call_integration_hook('integrate_post_end'); |
1313 | 1372 | } |
@@ -1328,13 +1387,14 @@ discard block |
||
1328 | 1387 | // Sneaking off, are we? |
1329 | 1388 | if (empty($_POST) && empty($topic)) |
1330 | 1389 | { |
1331 | - if (empty($_SERVER['CONTENT_LENGTH'])) |
|
1332 | - redirectexit('action=post;board=' . $board . '.0'); |
|
1333 | - else |
|
1334 | - fatal_lang_error('post_upload_error', false); |
|
1390 | + if (empty($_SERVER['CONTENT_LENGTH'])) { |
|
1391 | + redirectexit('action=post;board=' . $board . '.0'); |
|
1392 | + } else { |
|
1393 | + fatal_lang_error('post_upload_error', false); |
|
1394 | + } |
|
1395 | + } elseif (empty($_POST) && !empty($topic)) { |
|
1396 | + redirectexit('action=post;topic=' . $topic . '.0'); |
|
1335 | 1397 | } |
1336 | - elseif (empty($_POST) && !empty($topic)) |
|
1337 | - redirectexit('action=post;topic=' . $topic . '.0'); |
|
1338 | 1398 | |
1339 | 1399 | // No need! |
1340 | 1400 | $context['robot_no_index'] = true; |
@@ -1346,8 +1406,9 @@ discard block |
||
1346 | 1406 | $post_errors = array(); |
1347 | 1407 | |
1348 | 1408 | // If the session has timed out, let the user re-submit their form. |
1349 | - if (checkSession('post', '', false) != '') |
|
1350 | - $post_errors[] = 'session_timeout'; |
|
1409 | + if (checkSession('post', '', false) != '') { |
|
1410 | + $post_errors[] = 'session_timeout'; |
|
1411 | + } |
|
1351 | 1412 | |
1352 | 1413 | // Wrong verification code? |
1353 | 1414 | if (!$user_info['is_admin'] && !$user_info['is_mod'] && !empty($modSettings['posts_require_captcha']) && ($user_info['posts'] < $modSettings['posts_require_captcha'] || ($user_info['is_guest'] && $modSettings['posts_require_captcha'] == -1))) |
@@ -1357,33 +1418,38 @@ discard block |
||
1357 | 1418 | 'id' => 'post', |
1358 | 1419 | ); |
1359 | 1420 | $context['require_verification'] = create_control_verification($verificationOptions, true); |
1360 | - if (is_array($context['require_verification'])) |
|
1361 | - $post_errors = array_merge($post_errors, $context['require_verification']); |
|
1421 | + if (is_array($context['require_verification'])) { |
|
1422 | + $post_errors = array_merge($post_errors, $context['require_verification']); |
|
1423 | + } |
|
1362 | 1424 | } |
1363 | 1425 | |
1364 | 1426 | require_once($sourcedir . '/Subs-Post.php'); |
1365 | 1427 | loadLanguage('Post'); |
1366 | 1428 | |
1367 | 1429 | // Drafts enabled and needed? |
1368 | - if (!empty($modSettings['drafts_post_enabled']) && (isset($_POST['save_draft']) || isset($_POST['id_draft']))) |
|
1369 | - require_once($sourcedir . '/Drafts.php'); |
|
1430 | + if (!empty($modSettings['drafts_post_enabled']) && (isset($_POST['save_draft']) || isset($_POST['id_draft']))) { |
|
1431 | + require_once($sourcedir . '/Drafts.php'); |
|
1432 | + } |
|
1370 | 1433 | |
1371 | 1434 | // First check to see if they are trying to delete any current attachments. |
1372 | 1435 | if (isset($_POST['attach_del'])) |
1373 | 1436 | { |
1374 | 1437 | $keep_temp = array(); |
1375 | 1438 | $keep_ids = array(); |
1376 | - foreach ($_POST['attach_del'] as $dummy) |
|
1377 | - if (strpos($dummy, 'post_tmp_' . $user_info['id']) !== false) |
|
1439 | + foreach ($_POST['attach_del'] as $dummy) { |
|
1440 | + if (strpos($dummy, 'post_tmp_' . $user_info['id']) !== false) |
|
1378 | 1441 | $keep_temp[] = $dummy; |
1379 | - else |
|
1380 | - $keep_ids[] = (int) $dummy; |
|
1442 | + } |
|
1443 | + else { |
|
1444 | + $keep_ids[] = (int) $dummy; |
|
1445 | + } |
|
1381 | 1446 | |
1382 | - if (isset($_SESSION['temp_attachments'])) |
|
1383 | - foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
1447 | + if (isset($_SESSION['temp_attachments'])) { |
|
1448 | + foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
1384 | 1449 | { |
1385 | 1450 | if ((isset($_SESSION['temp_attachments']['post']['files'], $attachment['name']) && in_array($attachment['name'], $_SESSION['temp_attachments']['post']['files'])) || in_array($attachID, $keep_temp) || strpos($attachID, 'post_tmp_' . $user_info['id']) === false) |
1386 | 1451 | continue; |
1452 | + } |
|
1387 | 1453 | |
1388 | 1454 | unset($_SESSION['temp_attachments'][$attachID]); |
1389 | 1455 | unlink($attachment['tmp_name']); |
@@ -1425,24 +1491,28 @@ discard block |
||
1425 | 1491 | $smcFunc['db_free_result']($request); |
1426 | 1492 | |
1427 | 1493 | // Though the topic should be there, it might have vanished. |
1428 | - if (!is_array($topic_info)) |
|
1429 | - fatal_lang_error('topic_doesnt_exist', 404); |
|
1494 | + if (!is_array($topic_info)) { |
|
1495 | + fatal_lang_error('topic_doesnt_exist', 404); |
|
1496 | + } |
|
1430 | 1497 | |
1431 | 1498 | // Did this topic suddenly move? Just checking... |
1432 | - if ($topic_info['id_board'] != $board) |
|
1433 | - fatal_lang_error('not_a_topic'); |
|
1499 | + if ($topic_info['id_board'] != $board) { |
|
1500 | + fatal_lang_error('not_a_topic'); |
|
1501 | + } |
|
1434 | 1502 | } |
1435 | 1503 | |
1436 | 1504 | // Replying to a topic? |
1437 | 1505 | if (!empty($topic) && !isset($_REQUEST['msg'])) |
1438 | 1506 | { |
1439 | 1507 | // Don't allow a post if it's locked. |
1440 | - if ($topic_info['locked'] != 0 && !allowedTo('moderate_board')) |
|
1441 | - fatal_lang_error('topic_locked', false); |
|
1508 | + if ($topic_info['locked'] != 0 && !allowedTo('moderate_board')) { |
|
1509 | + fatal_lang_error('topic_locked', false); |
|
1510 | + } |
|
1442 | 1511 | |
1443 | 1512 | // Sorry, multiple polls aren't allowed... yet. You should stop giving me ideas :P. |
1444 | - if (isset($_REQUEST['poll']) && $topic_info['id_poll'] > 0) |
|
1445 | - unset($_REQUEST['poll']); |
|
1513 | + if (isset($_REQUEST['poll']) && $topic_info['id_poll'] > 0) { |
|
1514 | + unset($_REQUEST['poll']); |
|
1515 | + } |
|
1446 | 1516 | |
1447 | 1517 | // Do the permissions and approval stuff... |
1448 | 1518 | $becomesApproved = true; |
@@ -1458,44 +1528,43 @@ discard block |
||
1458 | 1528 | |
1459 | 1529 | // Set a nice session var... |
1460 | 1530 | $_SESSION['becomesUnapproved'] = true; |
1461 | - } |
|
1462 | - |
|
1463 | - elseif ($topic_info['id_member_started'] != $user_info['id']) |
|
1531 | + } elseif ($topic_info['id_member_started'] != $user_info['id']) |
|
1464 | 1532 | { |
1465 | - if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any')) |
|
1466 | - $becomesApproved = false; |
|
1467 | - |
|
1468 | - else |
|
1469 | - isAllowedTo('post_reply_any'); |
|
1470 | - } |
|
1471 | - elseif (!allowedTo('post_reply_any')) |
|
1533 | + if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any')) { |
|
1534 | + $becomesApproved = false; |
|
1535 | + } else { |
|
1536 | + isAllowedTo('post_reply_any'); |
|
1537 | + } |
|
1538 | + } elseif (!allowedTo('post_reply_any')) |
|
1472 | 1539 | { |
1473 | - if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own')) |
|
1474 | - $becomesApproved = false; |
|
1475 | - |
|
1476 | - else |
|
1477 | - isAllowedTo('post_reply_own'); |
|
1540 | + if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own')) { |
|
1541 | + $becomesApproved = false; |
|
1542 | + } else { |
|
1543 | + isAllowedTo('post_reply_own'); |
|
1544 | + } |
|
1478 | 1545 | } |
1479 | 1546 | |
1480 | 1547 | if (isset($_POST['lock'])) |
1481 | 1548 | { |
1482 | 1549 | // Nothing is changed to the lock. |
1483 | - if ((empty($topic_info['locked']) && empty($_POST['lock'])) || (!empty($_POST['lock']) && !empty($topic_info['locked']))) |
|
1484 | - unset($_POST['lock']); |
|
1550 | + if ((empty($topic_info['locked']) && empty($_POST['lock'])) || (!empty($_POST['lock']) && !empty($topic_info['locked']))) { |
|
1551 | + unset($_POST['lock']); |
|
1552 | + } |
|
1485 | 1553 | |
1486 | 1554 | // You're have no permission to lock this topic. |
1487 | - elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started'])) |
|
1488 | - unset($_POST['lock']); |
|
1555 | + elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started'])) { |
|
1556 | + unset($_POST['lock']); |
|
1557 | + } |
|
1489 | 1558 | |
1490 | 1559 | // You are allowed to (un)lock your own topic only. |
1491 | 1560 | elseif (!allowedTo('lock_any')) |
1492 | 1561 | { |
1493 | 1562 | // You cannot override a moderator lock. |
1494 | - if ($topic_info['locked'] == 1) |
|
1495 | - unset($_POST['lock']); |
|
1496 | - |
|
1497 | - else |
|
1498 | - $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
1563 | + if ($topic_info['locked'] == 1) { |
|
1564 | + unset($_POST['lock']); |
|
1565 | + } else { |
|
1566 | + $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
1567 | + } |
|
1499 | 1568 | } |
1500 | 1569 | // Hail mighty moderator, (un)lock this topic immediately. |
1501 | 1570 | else |
@@ -1503,19 +1572,21 @@ discard block |
||
1503 | 1572 | $_POST['lock'] = empty($_POST['lock']) ? 0 : 1; |
1504 | 1573 | |
1505 | 1574 | // Did someone (un)lock this while you were posting? |
1506 | - if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked']) |
|
1507 | - $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked'; |
|
1575 | + if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked']) { |
|
1576 | + $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked'; |
|
1577 | + } |
|
1508 | 1578 | } |
1509 | 1579 | } |
1510 | 1580 | |
1511 | 1581 | // So you wanna (un)sticky this...let's see. |
1512 | - if (isset($_POST['sticky']) && ($_POST['sticky'] == $topic_info['is_sticky'] || !allowedTo('make_sticky'))) |
|
1513 | - unset($_POST['sticky']); |
|
1514 | - elseif (isset($_POST['sticky'])) |
|
1582 | + if (isset($_POST['sticky']) && ($_POST['sticky'] == $topic_info['is_sticky'] || !allowedTo('make_sticky'))) { |
|
1583 | + unset($_POST['sticky']); |
|
1584 | + } elseif (isset($_POST['sticky'])) |
|
1515 | 1585 | { |
1516 | 1586 | // Did someone (un)sticky this while you were posting? |
1517 | - if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky']) |
|
1518 | - $post_errors[] = 'topic_' . (empty($topic_info['is_sticky']) ? 'un' : '') . 'sticky'; |
|
1587 | + if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky']) { |
|
1588 | + $post_errors[] = 'topic_' . (empty($topic_info['is_sticky']) ? 'un' : '') . 'sticky'; |
|
1589 | + } |
|
1519 | 1590 | } |
1520 | 1591 | |
1521 | 1592 | // If drafts are enabled, then pass this off |
@@ -1542,26 +1613,31 @@ discard block |
||
1542 | 1613 | |
1543 | 1614 | // Do like, the permissions, for safety and stuff... |
1544 | 1615 | $becomesApproved = true; |
1545 | - if ($modSettings['postmod_active'] && !allowedTo('post_new') && allowedTo('post_unapproved_topics')) |
|
1546 | - $becomesApproved = false; |
|
1547 | - else |
|
1548 | - isAllowedTo('post_new'); |
|
1616 | + if ($modSettings['postmod_active'] && !allowedTo('post_new') && allowedTo('post_unapproved_topics')) { |
|
1617 | + $becomesApproved = false; |
|
1618 | + } else { |
|
1619 | + isAllowedTo('post_new'); |
|
1620 | + } |
|
1549 | 1621 | |
1550 | 1622 | if (isset($_POST['lock'])) |
1551 | 1623 | { |
1552 | 1624 | // New topics are by default not locked. |
1553 | - if (empty($_POST['lock'])) |
|
1554 | - unset($_POST['lock']); |
|
1625 | + if (empty($_POST['lock'])) { |
|
1626 | + unset($_POST['lock']); |
|
1627 | + } |
|
1555 | 1628 | // Besides, you need permission. |
1556 | - elseif (!allowedTo(array('lock_any', 'lock_own'))) |
|
1557 | - unset($_POST['lock']); |
|
1629 | + elseif (!allowedTo(array('lock_any', 'lock_own'))) { |
|
1630 | + unset($_POST['lock']); |
|
1631 | + } |
|
1558 | 1632 | // A moderator-lock (1) can override a user-lock (2). |
1559 | - else |
|
1560 | - $_POST['lock'] = allowedTo('lock_any') ? 1 : 2; |
|
1633 | + else { |
|
1634 | + $_POST['lock'] = allowedTo('lock_any') ? 1 : 2; |
|
1635 | + } |
|
1561 | 1636 | } |
1562 | 1637 | |
1563 | - if (isset($_POST['sticky']) && (empty($_POST['sticky']) || !allowedTo('make_sticky'))) |
|
1564 | - unset($_POST['sticky']); |
|
1638 | + if (isset($_POST['sticky']) && (empty($_POST['sticky']) || !allowedTo('make_sticky'))) { |
|
1639 | + unset($_POST['sticky']); |
|
1640 | + } |
|
1565 | 1641 | |
1566 | 1642 | // Saving your new topic as a draft first? |
1567 | 1643 | if (!empty($modSettings['drafts_post_enabled']) && isset($_POST['save_draft'])) |
@@ -1586,31 +1662,37 @@ discard block |
||
1586 | 1662 | 'id_msg' => $_REQUEST['msg'], |
1587 | 1663 | ) |
1588 | 1664 | ); |
1589 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1590 | - fatal_lang_error('cant_find_messages', false); |
|
1665 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1666 | + fatal_lang_error('cant_find_messages', false); |
|
1667 | + } |
|
1591 | 1668 | $row = $smcFunc['db_fetch_assoc']($request); |
1592 | 1669 | $smcFunc['db_free_result']($request); |
1593 | 1670 | |
1594 | - if (!empty($topic_info['locked']) && !allowedTo('moderate_board')) |
|
1595 | - fatal_lang_error('topic_locked', false); |
|
1671 | + if (!empty($topic_info['locked']) && !allowedTo('moderate_board')) { |
|
1672 | + fatal_lang_error('topic_locked', false); |
|
1673 | + } |
|
1596 | 1674 | |
1597 | 1675 | if (isset($_POST['lock'])) |
1598 | 1676 | { |
1599 | 1677 | // Nothing changes to the lock status. |
1600 | - if ((empty($_POST['lock']) && empty($topic_info['locked'])) || (!empty($_POST['lock']) && !empty($topic_info['locked']))) |
|
1601 | - unset($_POST['lock']); |
|
1678 | + if ((empty($_POST['lock']) && empty($topic_info['locked'])) || (!empty($_POST['lock']) && !empty($topic_info['locked']))) { |
|
1679 | + unset($_POST['lock']); |
|
1680 | + } |
|
1602 | 1681 | // You're simply not allowed to (un)lock this. |
1603 | - elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started'])) |
|
1604 | - unset($_POST['lock']); |
|
1682 | + elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started'])) { |
|
1683 | + unset($_POST['lock']); |
|
1684 | + } |
|
1605 | 1685 | // You're only allowed to lock your own topics. |
1606 | 1686 | elseif (!allowedTo('lock_any')) |
1607 | 1687 | { |
1608 | 1688 | // You're not allowed to break a moderator's lock. |
1609 | - if ($topic_info['locked'] == 1) |
|
1610 | - unset($_POST['lock']); |
|
1689 | + if ($topic_info['locked'] == 1) { |
|
1690 | + unset($_POST['lock']); |
|
1691 | + } |
|
1611 | 1692 | // Lock it with a soft lock or unlock it. |
1612 | - else |
|
1613 | - $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
1693 | + else { |
|
1694 | + $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
1695 | + } |
|
1614 | 1696 | } |
1615 | 1697 | // You must be the moderator. |
1616 | 1698 | else |
@@ -1618,44 +1700,46 @@ discard block |
||
1618 | 1700 | $_POST['lock'] = empty($_POST['lock']) ? 0 : 1; |
1619 | 1701 | |
1620 | 1702 | // Did someone (un)lock this while you were posting? |
1621 | - if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked']) |
|
1622 | - $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked'; |
|
1703 | + if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked']) { |
|
1704 | + $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked'; |
|
1705 | + } |
|
1623 | 1706 | } |
1624 | 1707 | } |
1625 | 1708 | |
1626 | 1709 | // Change the sticky status of this topic? |
1627 | - if (isset($_POST['sticky']) && (!allowedTo('make_sticky') || $_POST['sticky'] == $topic_info['is_sticky'])) |
|
1628 | - unset($_POST['sticky']); |
|
1629 | - elseif (isset($_POST['sticky'])) |
|
1710 | + if (isset($_POST['sticky']) && (!allowedTo('make_sticky') || $_POST['sticky'] == $topic_info['is_sticky'])) { |
|
1711 | + unset($_POST['sticky']); |
|
1712 | + } elseif (isset($_POST['sticky'])) |
|
1630 | 1713 | { |
1631 | 1714 | // Did someone (un)sticky this while you were posting? |
1632 | - if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky']) |
|
1633 | - $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'stickied'; |
|
1715 | + if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky']) { |
|
1716 | + $post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'stickied'; |
|
1717 | + } |
|
1634 | 1718 | } |
1635 | 1719 | |
1636 | 1720 | if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any')) |
1637 | 1721 | { |
1638 | - if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) |
|
1639 | - fatal_lang_error('modify_post_time_passed', false); |
|
1640 | - elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_own')) |
|
1641 | - isAllowedTo('modify_replies'); |
|
1642 | - else |
|
1643 | - isAllowedTo('modify_own'); |
|
1644 | - } |
|
1645 | - elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_any')) |
|
1722 | + if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) { |
|
1723 | + fatal_lang_error('modify_post_time_passed', false); |
|
1724 | + } elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_own')) { |
|
1725 | + isAllowedTo('modify_replies'); |
|
1726 | + } else { |
|
1727 | + isAllowedTo('modify_own'); |
|
1728 | + } |
|
1729 | + } elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_any')) |
|
1646 | 1730 | { |
1647 | 1731 | isAllowedTo('modify_replies'); |
1648 | 1732 | |
1649 | 1733 | // If you're modifying a reply, I say it better be logged... |
1650 | 1734 | $moderationAction = true; |
1651 | - } |
|
1652 | - else |
|
1735 | + } else |
|
1653 | 1736 | { |
1654 | 1737 | isAllowedTo('modify_any'); |
1655 | 1738 | |
1656 | 1739 | // Log it, assuming you're not modifying your own post. |
1657 | - if ($row['id_member'] != $user_info['id']) |
|
1658 | - $moderationAction = true; |
|
1740 | + if ($row['id_member'] != $user_info['id']) { |
|
1741 | + $moderationAction = true; |
|
1742 | + } |
|
1659 | 1743 | } |
1660 | 1744 | |
1661 | 1745 | // If drafts are enabled, then lets send this off to save |
@@ -1692,20 +1776,24 @@ discard block |
||
1692 | 1776 | $_POST['guestname'] = !isset($_POST['guestname']) ? '' : trim($_POST['guestname']); |
1693 | 1777 | $_POST['email'] = !isset($_POST['email']) ? '' : trim($_POST['email']); |
1694 | 1778 | |
1695 | - if ($_POST['guestname'] == '' || $_POST['guestname'] == '_') |
|
1696 | - $post_errors[] = 'no_name'; |
|
1697 | - if ($smcFunc['strlen']($_POST['guestname']) > 25) |
|
1698 | - $post_errors[] = 'long_name'; |
|
1779 | + if ($_POST['guestname'] == '' || $_POST['guestname'] == '_') { |
|
1780 | + $post_errors[] = 'no_name'; |
|
1781 | + } |
|
1782 | + if ($smcFunc['strlen']($_POST['guestname']) > 25) { |
|
1783 | + $post_errors[] = 'long_name'; |
|
1784 | + } |
|
1699 | 1785 | |
1700 | 1786 | if (empty($modSettings['guest_post_no_email'])) |
1701 | 1787 | { |
1702 | 1788 | // Only check if they changed it! |
1703 | 1789 | if (!isset($row) || $row['poster_email'] != $_POST['email']) |
1704 | 1790 | { |
1705 | - if (!allowedTo('moderate_forum') && (!isset($_POST['email']) || $_POST['email'] == '')) |
|
1706 | - $post_errors[] = 'no_email'; |
|
1707 | - if (!allowedTo('moderate_forum') && !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) |
|
1708 | - $post_errors[] = 'bad_email'; |
|
1791 | + if (!allowedTo('moderate_forum') && (!isset($_POST['email']) || $_POST['email'] == '')) { |
|
1792 | + $post_errors[] = 'no_email'; |
|
1793 | + } |
|
1794 | + if (!allowedTo('moderate_forum') && !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) { |
|
1795 | + $post_errors[] = 'bad_email'; |
|
1796 | + } |
|
1709 | 1797 | } |
1710 | 1798 | |
1711 | 1799 | // Now make sure this email address is not banned from posting. |
@@ -1721,75 +1809,89 @@ discard block |
||
1721 | 1809 | } |
1722 | 1810 | |
1723 | 1811 | // Coming from the quickReply? |
1724 | - if (isset($_POST['quickReply'])) |
|
1725 | - $_POST['message'] = $_POST['quickReply']; |
|
1812 | + if (isset($_POST['quickReply'])) { |
|
1813 | + $_POST['message'] = $_POST['quickReply']; |
|
1814 | + } |
|
1726 | 1815 | |
1727 | 1816 | // Check the subject and message. |
1728 | - if (!isset($_POST['subject']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['subject'])) === '') |
|
1729 | - $post_errors[] = 'no_subject'; |
|
1730 | - if (!isset($_POST['message']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['message']), ENT_QUOTES) === '') |
|
1731 | - $post_errors[] = 'no_message'; |
|
1732 | - elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength']) |
|
1733 | - $post_errors[] = array('long_message', array($modSettings['max_messageLength'])); |
|
1734 | - else |
|
1817 | + if (!isset($_POST['subject']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['subject'])) === '') { |
|
1818 | + $post_errors[] = 'no_subject'; |
|
1819 | + } |
|
1820 | + if (!isset($_POST['message']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['message']), ENT_QUOTES) === '') { |
|
1821 | + $post_errors[] = 'no_message'; |
|
1822 | + } elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength']) { |
|
1823 | + $post_errors[] = array('long_message', array($modSettings['max_messageLength'])); |
|
1824 | + } else |
|
1735 | 1825 | { |
1736 | 1826 | // Prepare the message a bit for some additional testing. |
1737 | 1827 | $_POST['message'] = $smcFunc['htmlspecialchars']($_POST['message'], ENT_QUOTES); |
1738 | 1828 | |
1739 | 1829 | // Preparse code. (Zef) |
1740 | - if ($user_info['is_guest']) |
|
1741 | - $user_info['name'] = $_POST['guestname']; |
|
1830 | + if ($user_info['is_guest']) { |
|
1831 | + $user_info['name'] = $_POST['guestname']; |
|
1832 | + } |
|
1742 | 1833 | preparsecode($_POST['message']); |
1743 | 1834 | |
1744 | 1835 | // Let's see if there's still some content left without the tags. |
1745 | - if ($smcFunc['htmltrim'](strip_tags(parse_bbc($_POST['message'], false), implode('', $context['allowed_html_tags']))) === '' && (!allowedTo('admin_forum') || strpos($_POST['message'], '[html]') === false)) |
|
1746 | - $post_errors[] = 'no_message'; |
|
1836 | + if ($smcFunc['htmltrim'](strip_tags(parse_bbc($_POST['message'], false), implode('', $context['allowed_html_tags']))) === '' && (!allowedTo('admin_forum') || strpos($_POST['message'], '[html]') === false)) { |
|
1837 | + $post_errors[] = 'no_message'; |
|
1838 | + } |
|
1839 | + } |
|
1840 | + if (isset($_POST['calendar']) && !isset($_REQUEST['deleteevent']) && $smcFunc['htmltrim']($_POST['evtitle']) === '') { |
|
1841 | + $post_errors[] = 'no_event'; |
|
1747 | 1842 | } |
1748 | - if (isset($_POST['calendar']) && !isset($_REQUEST['deleteevent']) && $smcFunc['htmltrim']($_POST['evtitle']) === '') |
|
1749 | - $post_errors[] = 'no_event'; |
|
1750 | 1843 | // You are not! |
1751 | - if (isset($_POST['message']) && strtolower($_POST['message']) == 'i am the administrator.' && !$user_info['is_admin']) |
|
1752 | - fatal_error('Knave! Masquerader! Charlatan!', false); |
|
1844 | + if (isset($_POST['message']) && strtolower($_POST['message']) == 'i am the administrator.' && !$user_info['is_admin']) { |
|
1845 | + fatal_error('Knave! Masquerader! Charlatan!', false); |
|
1846 | + } |
|
1753 | 1847 | |
1754 | 1848 | // Validate the poll... |
1755 | 1849 | if (isset($_REQUEST['poll']) && $modSettings['pollMode'] == '1') |
1756 | 1850 | { |
1757 | - if (!empty($topic) && !isset($_REQUEST['msg'])) |
|
1758 | - fatal_lang_error('no_access', false); |
|
1851 | + if (!empty($topic) && !isset($_REQUEST['msg'])) { |
|
1852 | + fatal_lang_error('no_access', false); |
|
1853 | + } |
|
1759 | 1854 | |
1760 | 1855 | // This is a new topic... so it's a new poll. |
1761 | - if (empty($topic)) |
|
1762 | - isAllowedTo('poll_post'); |
|
1856 | + if (empty($topic)) { |
|
1857 | + isAllowedTo('poll_post'); |
|
1858 | + } |
|
1763 | 1859 | // Can you add to your own topics? |
1764 | - elseif ($user_info['id'] == $topic_info['id_member_started'] && !allowedTo('poll_add_any')) |
|
1765 | - isAllowedTo('poll_add_own'); |
|
1860 | + elseif ($user_info['id'] == $topic_info['id_member_started'] && !allowedTo('poll_add_any')) { |
|
1861 | + isAllowedTo('poll_add_own'); |
|
1862 | + } |
|
1766 | 1863 | // Can you add polls to any topic, then? |
1767 | - else |
|
1768 | - isAllowedTo('poll_add_any'); |
|
1864 | + else { |
|
1865 | + isAllowedTo('poll_add_any'); |
|
1866 | + } |
|
1769 | 1867 | |
1770 | - if (!isset($_POST['question']) || trim($_POST['question']) == '') |
|
1771 | - $post_errors[] = 'no_question'; |
|
1868 | + if (!isset($_POST['question']) || trim($_POST['question']) == '') { |
|
1869 | + $post_errors[] = 'no_question'; |
|
1870 | + } |
|
1772 | 1871 | |
1773 | 1872 | $_POST['options'] = empty($_POST['options']) ? array() : htmltrim__recursive($_POST['options']); |
1774 | 1873 | |
1775 | 1874 | // Get rid of empty ones. |
1776 | - foreach ($_POST['options'] as $k => $option) |
|
1777 | - if ($option == '') |
|
1875 | + foreach ($_POST['options'] as $k => $option) { |
|
1876 | + if ($option == '') |
|
1778 | 1877 | unset($_POST['options'][$k], $_POST['options'][$k]); |
1878 | + } |
|
1779 | 1879 | |
1780 | 1880 | // What are you going to vote between with one choice?!? |
1781 | - if (count($_POST['options']) < 2) |
|
1782 | - $post_errors[] = 'poll_few'; |
|
1783 | - elseif (count($_POST['options']) > 256) |
|
1784 | - $post_errors[] = 'poll_many'; |
|
1881 | + if (count($_POST['options']) < 2) { |
|
1882 | + $post_errors[] = 'poll_few'; |
|
1883 | + } elseif (count($_POST['options']) > 256) { |
|
1884 | + $post_errors[] = 'poll_many'; |
|
1885 | + } |
|
1785 | 1886 | } |
1786 | 1887 | |
1787 | 1888 | if ($posterIsGuest) |
1788 | 1889 | { |
1789 | 1890 | // If user is a guest, make sure the chosen name isn't taken. |
1790 | 1891 | require_once($sourcedir . '/Subs-Members.php'); |
1791 | - if (isReservedName($_POST['guestname'], 0, true, false) && (!isset($row['poster_name']) || $_POST['guestname'] != $row['poster_name'])) |
|
1792 | - $post_errors[] = 'bad_name'; |
|
1892 | + if (isReservedName($_POST['guestname'], 0, true, false) && (!isset($row['poster_name']) || $_POST['guestname'] != $row['poster_name'])) { |
|
1893 | + $post_errors[] = 'bad_name'; |
|
1894 | + } |
|
1793 | 1895 | } |
1794 | 1896 | // If the user isn't a guest, get his or her name and email. |
1795 | 1897 | elseif (!isset($_REQUEST['msg'])) |
@@ -1820,8 +1922,9 @@ discard block |
||
1820 | 1922 | } |
1821 | 1923 | |
1822 | 1924 | // Make sure the user isn't spamming the board. |
1823 | - if (!isset($_REQUEST['msg'])) |
|
1824 | - spamProtection('post'); |
|
1925 | + if (!isset($_REQUEST['msg'])) { |
|
1926 | + spamProtection('post'); |
|
1927 | + } |
|
1825 | 1928 | |
1826 | 1929 | // At about this point, we're posting and that's that. |
1827 | 1930 | ignore_user_abort(true); |
@@ -1834,32 +1937,36 @@ discard block |
||
1834 | 1937 | $_POST['modify_reason'] = empty($_POST['modify_reason']) ? '' : strtr($smcFunc['htmlspecialchars']($_POST['modify_reason']), array("\r" => '', "\n" => '', "\t" => '')); |
1835 | 1938 | |
1836 | 1939 | // At this point, we want to make sure the subject isn't too long. |
1837 | - if ($smcFunc['strlen']($_POST['subject']) > 100) |
|
1838 | - $_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100); |
|
1940 | + if ($smcFunc['strlen']($_POST['subject']) > 100) { |
|
1941 | + $_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100); |
|
1942 | + } |
|
1839 | 1943 | |
1840 | 1944 | // Same with the "why did you edit this" text. |
1841 | - if ($smcFunc['strlen']($_POST['modify_reason']) > 100) |
|
1842 | - $_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100); |
|
1945 | + if ($smcFunc['strlen']($_POST['modify_reason']) > 100) { |
|
1946 | + $_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100); |
|
1947 | + } |
|
1843 | 1948 | |
1844 | 1949 | // Make the poll... |
1845 | 1950 | if (isset($_REQUEST['poll'])) |
1846 | 1951 | { |
1847 | 1952 | // Make sure that the user has not entered a ridiculous number of options.. |
1848 | - if (empty($_POST['poll_max_votes']) || $_POST['poll_max_votes'] <= 0) |
|
1849 | - $_POST['poll_max_votes'] = 1; |
|
1850 | - elseif ($_POST['poll_max_votes'] > count($_POST['options'])) |
|
1851 | - $_POST['poll_max_votes'] = count($_POST['options']); |
|
1852 | - else |
|
1853 | - $_POST['poll_max_votes'] = (int) $_POST['poll_max_votes']; |
|
1953 | + if (empty($_POST['poll_max_votes']) || $_POST['poll_max_votes'] <= 0) { |
|
1954 | + $_POST['poll_max_votes'] = 1; |
|
1955 | + } elseif ($_POST['poll_max_votes'] > count($_POST['options'])) { |
|
1956 | + $_POST['poll_max_votes'] = count($_POST['options']); |
|
1957 | + } else { |
|
1958 | + $_POST['poll_max_votes'] = (int) $_POST['poll_max_votes']; |
|
1959 | + } |
|
1854 | 1960 | |
1855 | 1961 | $_POST['poll_expire'] = (int) $_POST['poll_expire']; |
1856 | 1962 | $_POST['poll_expire'] = $_POST['poll_expire'] > 9999 ? 9999 : ($_POST['poll_expire'] < 0 ? 0 : $_POST['poll_expire']); |
1857 | 1963 | |
1858 | 1964 | // Just set it to zero if it's not there.. |
1859 | - if (!isset($_POST['poll_hide'])) |
|
1860 | - $_POST['poll_hide'] = 0; |
|
1861 | - else |
|
1862 | - $_POST['poll_hide'] = (int) $_POST['poll_hide']; |
|
1965 | + if (!isset($_POST['poll_hide'])) { |
|
1966 | + $_POST['poll_hide'] = 0; |
|
1967 | + } else { |
|
1968 | + $_POST['poll_hide'] = (int) $_POST['poll_hide']; |
|
1969 | + } |
|
1863 | 1970 | $_POST['poll_change_vote'] = isset($_POST['poll_change_vote']) ? 1 : 0; |
1864 | 1971 | |
1865 | 1972 | $_POST['poll_guest_vote'] = isset($_POST['poll_guest_vote']) ? 1 : 0; |
@@ -1868,16 +1975,19 @@ discard block |
||
1868 | 1975 | { |
1869 | 1976 | require_once($sourcedir . '/Subs-Members.php'); |
1870 | 1977 | $allowedVoteGroups = groupsAllowedTo('poll_vote', $board); |
1871 | - if (!in_array(-1, $allowedVoteGroups['allowed'])) |
|
1872 | - $_POST['poll_guest_vote'] = 0; |
|
1978 | + if (!in_array(-1, $allowedVoteGroups['allowed'])) { |
|
1979 | + $_POST['poll_guest_vote'] = 0; |
|
1980 | + } |
|
1873 | 1981 | } |
1874 | 1982 | |
1875 | 1983 | // If the user tries to set the poll too far in advance, don't let them. |
1876 | - if (!empty($_POST['poll_expire']) && $_POST['poll_expire'] < 1) |
|
1877 | - fatal_lang_error('poll_range_error', false); |
|
1984 | + if (!empty($_POST['poll_expire']) && $_POST['poll_expire'] < 1) { |
|
1985 | + fatal_lang_error('poll_range_error', false); |
|
1986 | + } |
|
1878 | 1987 | // Don't allow them to select option 2 for hidden results if it's not time limited. |
1879 | - elseif (empty($_POST['poll_expire']) && $_POST['poll_hide'] == 2) |
|
1880 | - $_POST['poll_hide'] = 1; |
|
1988 | + elseif (empty($_POST['poll_expire']) && $_POST['poll_hide'] == 2) { |
|
1989 | + $_POST['poll_hide'] = 1; |
|
1990 | + } |
|
1881 | 1991 | |
1882 | 1992 | // Clean up the question and answers. |
1883 | 1993 | $_POST['question'] = $smcFunc['htmlspecialchars']($_POST['question']); |
@@ -1891,13 +2001,15 @@ discard block |
||
1891 | 2001 | { |
1892 | 2002 | $attachIDs = array(); |
1893 | 2003 | $attach_errors = array(); |
1894 | - if (!empty($context['we_are_history'])) |
|
1895 | - $attach_errors[] = '<dd>' . $txt['error_temp_attachments_flushed'] . '<br><br></dd>'; |
|
2004 | + if (!empty($context['we_are_history'])) { |
|
2005 | + $attach_errors[] = '<dd>' . $txt['error_temp_attachments_flushed'] . '<br><br></dd>'; |
|
2006 | + } |
|
1896 | 2007 | |
1897 | 2008 | foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
1898 | 2009 | { |
1899 | - if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false) |
|
1900 | - continue; |
|
2010 | + if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false) { |
|
2011 | + continue; |
|
2012 | + } |
|
1901 | 2013 | |
1902 | 2014 | // If there was an initial error just show that message. |
1903 | 2015 | if ($attachID == 'initial_error') |
@@ -1926,12 +2038,13 @@ discard block |
||
1926 | 2038 | if (createAttachment($attachmentOptions)) |
1927 | 2039 | { |
1928 | 2040 | $attachIDs[] = $attachmentOptions['id']; |
1929 | - if (!empty($attachmentOptions['thumb'])) |
|
1930 | - $attachIDs[] = $attachmentOptions['thumb']; |
|
2041 | + if (!empty($attachmentOptions['thumb'])) { |
|
2042 | + $attachIDs[] = $attachmentOptions['thumb']; |
|
2043 | + } |
|
1931 | 2044 | } |
2045 | + } else { |
|
2046 | + $attach_errors[] = '<dt> </dt>'; |
|
1932 | 2047 | } |
1933 | - else |
|
1934 | - $attach_errors[] = '<dt> </dt>'; |
|
1935 | 2048 | |
1936 | 2049 | if (!empty($attachmentOptions['errors'])) |
1937 | 2050 | { |
@@ -1943,14 +2056,16 @@ discard block |
||
1943 | 2056 | if (!is_array($error)) |
1944 | 2057 | { |
1945 | 2058 | $attach_errors[] = '<dd>' . $txt[$error] . '</dd>'; |
1946 | - if (in_array($error, $log_these)) |
|
1947 | - log_error($attachment['name'] . ': ' . $txt[$error], 'critical'); |
|
2059 | + if (in_array($error, $log_these)) { |
|
2060 | + log_error($attachment['name'] . ': ' . $txt[$error], 'critical'); |
|
2061 | + } |
|
2062 | + } else { |
|
2063 | + $attach_errors[] = '<dd>' . vsprintf($txt[$error[0]], $error[1]) . '</dd>'; |
|
1948 | 2064 | } |
1949 | - else |
|
1950 | - $attach_errors[] = '<dd>' . vsprintf($txt[$error[0]], $error[1]) . '</dd>'; |
|
1951 | 2065 | } |
1952 | - if (file_exists($attachment['tmp_name'])) |
|
1953 | - unlink($attachment['tmp_name']); |
|
2066 | + if (file_exists($attachment['tmp_name'])) { |
|
2067 | + unlink($attachment['tmp_name']); |
|
2068 | + } |
|
1954 | 2069 | } |
1955 | 2070 | } |
1956 | 2071 | unset($_SESSION['temp_attachments']); |
@@ -1991,24 +2106,24 @@ discard block |
||
1991 | 2106 | ); |
1992 | 2107 | |
1993 | 2108 | call_integration_hook('integrate_poll_add_edit', array($id_poll, false)); |
2109 | + } else { |
|
2110 | + $id_poll = 0; |
|
1994 | 2111 | } |
1995 | - else |
|
1996 | - $id_poll = 0; |
|
1997 | 2112 | |
1998 | 2113 | // Creating a new topic? |
1999 | 2114 | $newTopic = empty($_REQUEST['msg']) && empty($topic); |
2000 | 2115 | |
2001 | 2116 | // Check the icon. |
2002 | - if (!isset($_POST['icon'])) |
|
2003 | - $_POST['icon'] = 'xx'; |
|
2004 | - |
|
2005 | - else |
|
2117 | + if (!isset($_POST['icon'])) { |
|
2118 | + $_POST['icon'] = 'xx'; |
|
2119 | + } else |
|
2006 | 2120 | { |
2007 | 2121 | $_POST['icon'] = $smcFunc['htmlspecialchars']($_POST['icon']); |
2008 | 2122 | |
2009 | 2123 | // Need to figure it out if this is a valid icon name. |
2010 | - if ((!file_exists($settings['theme_dir'] . '/images/post/' . $_POST['icon'] . '.png')) && (!file_exists($settings['default_theme_dir'] . '/images/post/' . $_POST['icon'] . '.png'))) |
|
2011 | - $_POST['icon'] = 'xx'; |
|
2124 | + if ((!file_exists($settings['theme_dir'] . '/images/post/' . $_POST['icon'] . '.png')) && (!file_exists($settings['default_theme_dir'] . '/images/post/' . $_POST['icon'] . '.png'))) { |
|
2125 | + $_POST['icon'] = 'xx'; |
|
2126 | + } |
|
2012 | 2127 | } |
2013 | 2128 | |
2014 | 2129 | // Collect all parameters for the creation or modification of a post. |
@@ -2049,8 +2164,9 @@ discard block |
||
2049 | 2164 | } |
2050 | 2165 | |
2051 | 2166 | // This will save some time... |
2052 | - if (empty($approve_has_changed)) |
|
2053 | - unset($msgOptions['approved']); |
|
2167 | + if (empty($approve_has_changed)) { |
|
2168 | + unset($msgOptions['approved']); |
|
2169 | + } |
|
2054 | 2170 | |
2055 | 2171 | modifyPost($msgOptions, $topicOptions, $posterOptions); |
2056 | 2172 | } |
@@ -2059,8 +2175,9 @@ discard block |
||
2059 | 2175 | { |
2060 | 2176 | createPost($msgOptions, $topicOptions, $posterOptions); |
2061 | 2177 | |
2062 | - if (isset($topicOptions['id'])) |
|
2063 | - $topic = $topicOptions['id']; |
|
2178 | + if (isset($topicOptions['id'])) { |
|
2179 | + $topic = $topicOptions['id']; |
|
2180 | + } |
|
2064 | 2181 | } |
2065 | 2182 | |
2066 | 2183 | // Assign the previously uploaded attachments to the brand new message. |
@@ -2072,8 +2189,9 @@ discard block |
||
2072 | 2189 | } |
2073 | 2190 | |
2074 | 2191 | // If we had a draft for this, its time to remove it since it was just posted |
2075 | - if (!empty($modSettings['drafts_post_enabled']) && !empty($_POST['id_draft'])) |
|
2076 | - DeleteDraft($_POST['id_draft']); |
|
2192 | + if (!empty($modSettings['drafts_post_enabled']) && !empty($_POST['id_draft'])) { |
|
2193 | + DeleteDraft($_POST['id_draft']); |
|
2194 | + } |
|
2077 | 2195 | |
2078 | 2196 | // Editing or posting an event? |
2079 | 2197 | if (isset($_POST['calendar']) && (!isset($_REQUEST['eventid']) || $_REQUEST['eventid'] == -1)) |
@@ -2092,8 +2210,7 @@ discard block |
||
2092 | 2210 | 'member' => $user_info['id'], |
2093 | 2211 | ); |
2094 | 2212 | insertEvent($eventOptions); |
2095 | - } |
|
2096 | - elseif (isset($_POST['calendar'])) |
|
2213 | + } elseif (isset($_POST['calendar'])) |
|
2097 | 2214 | { |
2098 | 2215 | $_REQUEST['eventid'] = (int) $_REQUEST['eventid']; |
2099 | 2216 | |
@@ -2121,14 +2238,15 @@ discard block |
||
2121 | 2238 | } |
2122 | 2239 | |
2123 | 2240 | // Delete it? |
2124 | - if (isset($_REQUEST['deleteevent'])) |
|
2125 | - $smcFunc['db_query']('', ' |
|
2241 | + if (isset($_REQUEST['deleteevent'])) { |
|
2242 | + $smcFunc['db_query']('', ' |
|
2126 | 2243 | DELETE FROM {db_prefix}calendar |
2127 | 2244 | WHERE id_event = {int:id_event}', |
2128 | 2245 | array( |
2129 | 2246 | 'id_event' => $_REQUEST['eventid'], |
2130 | 2247 | ) |
2131 | 2248 | ); |
2249 | + } |
|
2132 | 2250 | // ... or just update it? |
2133 | 2251 | else |
2134 | 2252 | { |
@@ -2170,9 +2288,8 @@ discard block |
||
2170 | 2288 | array($user_info['id'], $topic, 0), |
2171 | 2289 | array('id_member', 'id_topic', 'id_board') |
2172 | 2290 | ); |
2173 | - } |
|
2174 | - elseif (!$newTopic) |
|
2175 | - $smcFunc['db_query']('', ' |
|
2291 | + } elseif (!$newTopic) { |
|
2292 | + $smcFunc['db_query']('', ' |
|
2176 | 2293 | DELETE FROM {db_prefix}log_notify |
2177 | 2294 | WHERE id_member = {int:current_member} |
2178 | 2295 | AND id_topic = {int:current_topic}', |
@@ -2181,16 +2298,20 @@ discard block |
||
2181 | 2298 | 'current_topic' => $topic, |
2182 | 2299 | ) |
2183 | 2300 | ); |
2301 | + } |
|
2184 | 2302 | |
2185 | 2303 | // Log an act of moderation - modifying. |
2186 | - if (!empty($moderationAction)) |
|
2187 | - logAction('modify', array('topic' => $topic, 'message' => (int) $_REQUEST['msg'], 'member' => $row['id_member'], 'board' => $board)); |
|
2304 | + if (!empty($moderationAction)) { |
|
2305 | + logAction('modify', array('topic' => $topic, 'message' => (int) $_REQUEST['msg'], 'member' => $row['id_member'], 'board' => $board)); |
|
2306 | + } |
|
2188 | 2307 | |
2189 | - if (isset($_POST['lock']) && $_POST['lock'] != 2) |
|
2190 | - logAction(empty($_POST['lock']) ? 'unlock' : 'lock', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board'])); |
|
2308 | + if (isset($_POST['lock']) && $_POST['lock'] != 2) { |
|
2309 | + logAction(empty($_POST['lock']) ? 'unlock' : 'lock', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board'])); |
|
2310 | + } |
|
2191 | 2311 | |
2192 | - if (isset($_POST['sticky'])) |
|
2193 | - logAction(empty($_POST['sticky']) ? 'unsticky' : 'sticky', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board'])); |
|
2312 | + if (isset($_POST['sticky'])) { |
|
2313 | + logAction(empty($_POST['sticky']) ? 'unsticky' : 'sticky', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board'])); |
|
2314 | + } |
|
2194 | 2315 | |
2195 | 2316 | // Returning to the topic? |
2196 | 2317 | if (!empty($_REQUEST['goback'])) |
@@ -2209,26 +2330,31 @@ discard block |
||
2209 | 2330 | ); |
2210 | 2331 | } |
2211 | 2332 | |
2212 | - if ($board_info['num_topics'] == 0) |
|
2213 | - cache_put_data('board-' . $board, null, 120); |
|
2333 | + if ($board_info['num_topics'] == 0) { |
|
2334 | + cache_put_data('board-' . $board, null, 120); |
|
2335 | + } |
|
2214 | 2336 | |
2215 | 2337 | call_integration_hook('integrate_post2_end'); |
2216 | 2338 | |
2217 | - if (!empty($_POST['announce_topic'])) |
|
2218 | - redirectexit('action=announce;sa=selectgroup;topic=' . $topic . (!empty($_POST['move']) && allowedTo('move_any') ? ';move' : '') . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2339 | + if (!empty($_POST['announce_topic'])) { |
|
2340 | + redirectexit('action=announce;sa=selectgroup;topic=' . $topic . (!empty($_POST['move']) && allowedTo('move_any') ? ';move' : '') . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2341 | + } |
|
2219 | 2342 | |
2220 | - if (!empty($_POST['move']) && allowedTo('move_any')) |
|
2221 | - redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2343 | + if (!empty($_POST['move']) && allowedTo('move_any')) { |
|
2344 | + redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2345 | + } |
|
2222 | 2346 | |
2223 | 2347 | // Return to post if the mod is on. |
2224 | - if (isset($_REQUEST['msg']) && !empty($_REQUEST['goback'])) |
|
2225 | - redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg'], isBrowser('ie')); |
|
2226 | - elseif (!empty($_REQUEST['goback'])) |
|
2227 | - redirectexit('topic=' . $topic . '.new#new', isBrowser('ie')); |
|
2348 | + if (isset($_REQUEST['msg']) && !empty($_REQUEST['goback'])) { |
|
2349 | + redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg'], isBrowser('ie')); |
|
2350 | + } elseif (!empty($_REQUEST['goback'])) { |
|
2351 | + redirectexit('topic=' . $topic . '.new#new', isBrowser('ie')); |
|
2352 | + } |
|
2228 | 2353 | // Dut-dut-duh-duh-DUH-duh-dut-duh-duh! *dances to the Final Fantasy Fanfare...* |
2229 | - else |
|
2230 | - redirectexit('board=' . $board . '.0'); |
|
2231 | -} |
|
2354 | + else { |
|
2355 | + redirectexit('board=' . $board . '.0'); |
|
2356 | + } |
|
2357 | + } |
|
2232 | 2358 | |
2233 | 2359 | /** |
2234 | 2360 | * Handle the announce topic function (action=announce). |
@@ -2246,8 +2372,9 @@ discard block |
||
2246 | 2372 | |
2247 | 2373 | validateSession(); |
2248 | 2374 | |
2249 | - if (empty($topic)) |
|
2250 | - fatal_lang_error('topic_gone', false); |
|
2375 | + if (empty($topic)) { |
|
2376 | + fatal_lang_error('topic_gone', false); |
|
2377 | + } |
|
2251 | 2378 | |
2252 | 2379 | loadLanguage('Post'); |
2253 | 2380 | loadTemplate('Post'); |
@@ -2274,8 +2401,9 @@ discard block |
||
2274 | 2401 | global $txt, $context, $topic, $board, $board_info, $smcFunc; |
2275 | 2402 | |
2276 | 2403 | $groups = array_merge($board_info['groups'], array(1)); |
2277 | - foreach ($groups as $id => $group) |
|
2278 | - $groups[$id] = (int) $group; |
|
2404 | + foreach ($groups as $id => $group) { |
|
2405 | + $groups[$id] = (int) $group; |
|
2406 | + } |
|
2279 | 2407 | |
2280 | 2408 | $context['groups'] = array(); |
2281 | 2409 | if (in_array(0, $groups)) |
@@ -2318,8 +2446,9 @@ discard block |
||
2318 | 2446 | 'group_list' => $groups, |
2319 | 2447 | ) |
2320 | 2448 | ); |
2321 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2322 | - $context['groups'][$row['id_group']]['name'] = $row['group_name']; |
|
2449 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2450 | + $context['groups'][$row['id_group']]['name'] = $row['group_name']; |
|
2451 | + } |
|
2323 | 2452 | $smcFunc['db_free_result']($request); |
2324 | 2453 | |
2325 | 2454 | // Get the subject of the topic we're about to announce. |
@@ -2361,16 +2490,19 @@ discard block |
||
2361 | 2490 | $context['start'] = empty($_REQUEST['start']) ? 0 : (int) $_REQUEST['start']; |
2362 | 2491 | $groups = array_merge($board_info['groups'], array(1)); |
2363 | 2492 | |
2364 | - if (isset($_POST['membergroups'])) |
|
2365 | - $_POST['who'] = explode(',', $_POST['membergroups']); |
|
2493 | + if (isset($_POST['membergroups'])) { |
|
2494 | + $_POST['who'] = explode(',', $_POST['membergroups']); |
|
2495 | + } |
|
2366 | 2496 | |
2367 | 2497 | // Check whether at least one membergroup was selected. |
2368 | - if (empty($_POST['who'])) |
|
2369 | - fatal_lang_error('no_membergroup_selected'); |
|
2498 | + if (empty($_POST['who'])) { |
|
2499 | + fatal_lang_error('no_membergroup_selected'); |
|
2500 | + } |
|
2370 | 2501 | |
2371 | 2502 | // Make sure all membergroups are integers and can access the board of the announcement. |
2372 | - foreach ($_POST['who'] as $id => $mg) |
|
2373 | - $_POST['who'][$id] = in_array((int) $mg, $groups) ? (int) $mg : 0; |
|
2503 | + foreach ($_POST['who'] as $id => $mg) { |
|
2504 | + $_POST['who'][$id] = in_array((int) $mg, $groups) ? (int) $mg : 0; |
|
2505 | + } |
|
2374 | 2506 | |
2375 | 2507 | // Get the topic subject and censor it. |
2376 | 2508 | $request = $smcFunc['db_query']('', ' |
@@ -2416,12 +2548,13 @@ discard block |
||
2416 | 2548 | if ($smcFunc['db_num_rows']($request) == 0) |
2417 | 2549 | { |
2418 | 2550 | logAction('announce_topic', array('topic' => $topic), 'user'); |
2419 | - if (!empty($_REQUEST['move']) && allowedTo('move_any')) |
|
2420 | - redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2421 | - elseif (!empty($_REQUEST['goback'])) |
|
2422 | - redirectexit('topic=' . $topic . '.new;boardseen#new', isBrowser('ie')); |
|
2423 | - else |
|
2424 | - redirectexit('board=' . $board . '.0'); |
|
2551 | + if (!empty($_REQUEST['move']) && allowedTo('move_any')) { |
|
2552 | + redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback')); |
|
2553 | + } elseif (!empty($_REQUEST['goback'])) { |
|
2554 | + redirectexit('topic=' . $topic . '.new;boardseen#new', isBrowser('ie')); |
|
2555 | + } else { |
|
2556 | + redirectexit('board=' . $board . '.0'); |
|
2557 | + } |
|
2425 | 2558 | } |
2426 | 2559 | |
2427 | 2560 | $announcements = array(); |
@@ -2440,8 +2573,9 @@ discard block |
||
2440 | 2573 | foreach ($rows as $row) |
2441 | 2574 | { |
2442 | 2575 | // Force them to have it? |
2443 | - if (empty($prefs[$row['id_member']]['announcements'])) |
|
2444 | - continue; |
|
2576 | + if (empty($prefs[$row['id_member']]['announcements'])) { |
|
2577 | + continue; |
|
2578 | + } |
|
2445 | 2579 | |
2446 | 2580 | $cur_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']; |
2447 | 2581 | |
@@ -2469,8 +2603,9 @@ discard block |
||
2469 | 2603 | } |
2470 | 2604 | |
2471 | 2605 | // For each language send a different mail - low priority... |
2472 | - foreach ($announcements as $lang => $mail) |
|
2473 | - sendmail($mail['recipients'], $mail['subject'], $mail['body'], null, 'ann-' . $lang, $mail['is_html'], 5); |
|
2606 | + foreach ($announcements as $lang => $mail) { |
|
2607 | + sendmail($mail['recipients'], $mail['subject'], $mail['body'], null, 'ann-' . $lang, $mail['is_html'], 5); |
|
2608 | + } |
|
2474 | 2609 | |
2475 | 2610 | $context['percentage_done'] = round(100 * $context['start'] / $modSettings['latestMember'], 1); |
2476 | 2611 | |
@@ -2480,9 +2615,10 @@ discard block |
||
2480 | 2615 | $context['sub_template'] = 'announcement_send'; |
2481 | 2616 | |
2482 | 2617 | // Go back to the correct language for the user ;). |
2483 | - if (!empty($modSettings['userLanguage'])) |
|
2484 | - loadLanguage('Post'); |
|
2485 | -} |
|
2618 | + if (!empty($modSettings['userLanguage'])) { |
|
2619 | + loadLanguage('Post'); |
|
2620 | + } |
|
2621 | + } |
|
2486 | 2622 | |
2487 | 2623 | /** |
2488 | 2624 | * Get the topic for display purposes. |
@@ -2495,12 +2631,13 @@ discard block |
||
2495 | 2631 | { |
2496 | 2632 | global $topic, $modSettings, $context, $smcFunc, $counter, $options; |
2497 | 2633 | |
2498 | - if (isset($_REQUEST['xml'])) |
|
2499 | - $limit = ' |
|
2634 | + if (isset($_REQUEST['xml'])) { |
|
2635 | + $limit = ' |
|
2500 | 2636 | LIMIT ' . (empty($context['new_replies']) ? '0' : $context['new_replies']); |
2501 | - else |
|
2502 | - $limit = empty($modSettings['topicSummaryPosts']) ? '' : ' |
|
2637 | + } else { |
|
2638 | + $limit = empty($modSettings['topicSummaryPosts']) ? '' : ' |
|
2503 | 2639 | LIMIT ' . (int) $modSettings['topicSummaryPosts']; |
2640 | + } |
|
2504 | 2641 | |
2505 | 2642 | // If you're modifying, get only those posts before the current one. (otherwise get all.) |
2506 | 2643 | $request = $smcFunc['db_query']('', ' |
@@ -2538,8 +2675,9 @@ discard block |
||
2538 | 2675 | 'is_ignored' => !empty($modSettings['enable_buddylist']) && !empty($options['posts_apply_ignore_list']) && in_array($row['id_member'], $context['user']['ignoreusers']), |
2539 | 2676 | ); |
2540 | 2677 | |
2541 | - if (!empty($context['new_replies'])) |
|
2542 | - $context['new_replies']--; |
|
2678 | + if (!empty($context['new_replies'])) { |
|
2679 | + $context['new_replies']--; |
|
2680 | + } |
|
2543 | 2681 | } |
2544 | 2682 | $smcFunc['db_free_result']($request); |
2545 | 2683 | } |
@@ -2556,8 +2694,9 @@ discard block |
||
2556 | 2694 | global $sourcedir, $smcFunc; |
2557 | 2695 | |
2558 | 2696 | loadLanguage('Post'); |
2559 | - if (!isset($_REQUEST['xml'])) |
|
2560 | - loadTemplate('Post'); |
|
2697 | + if (!isset($_REQUEST['xml'])) { |
|
2698 | + loadTemplate('Post'); |
|
2699 | + } |
|
2561 | 2700 | |
2562 | 2701 | include_once($sourcedir . '/Subs-Post.php'); |
2563 | 2702 | |
@@ -2588,8 +2727,9 @@ discard block |
||
2588 | 2727 | $smcFunc['db_free_result']($request); |
2589 | 2728 | |
2590 | 2729 | $context['sub_template'] = 'quotefast'; |
2591 | - if (!empty($row)) |
|
2592 | - $can_view_post = $row['approved'] || ($row['id_member'] != 0 && $row['id_member'] == $user_info['id']) || allowedTo('approve_posts', $row['id_board']); |
|
2730 | + if (!empty($row)) { |
|
2731 | + $can_view_post = $row['approved'] || ($row['id_member'] != 0 && $row['id_member'] == $user_info['id']) || allowedTo('approve_posts', $row['id_board']); |
|
2732 | + } |
|
2593 | 2733 | |
2594 | 2734 | if (!empty($can_view_post)) |
2595 | 2735 | { |
@@ -2622,8 +2762,9 @@ discard block |
||
2622 | 2762 | } |
2623 | 2763 | |
2624 | 2764 | // Remove any nested quotes. |
2625 | - if (!empty($modSettings['removeNestedQuotes'])) |
|
2626 | - $row['body'] = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $row['body']); |
|
2765 | + if (!empty($modSettings['removeNestedQuotes'])) { |
|
2766 | + $row['body'] = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $row['body']); |
|
2767 | + } |
|
2627 | 2768 | |
2628 | 2769 | $lb = "\n"; |
2629 | 2770 | |
@@ -2649,14 +2790,14 @@ discard block |
||
2649 | 2790 | 'time' => '', |
2650 | 2791 | ), |
2651 | 2792 | ); |
2652 | - } |
|
2653 | - else |
|
2654 | - $context['quote'] = array( |
|
2793 | + } else { |
|
2794 | + $context['quote'] = array( |
|
2655 | 2795 | 'xml' => '', |
2656 | 2796 | 'mozilla' => '', |
2657 | 2797 | 'text' => '', |
2658 | 2798 | ); |
2659 | -} |
|
2799 | + } |
|
2800 | + } |
|
2660 | 2801 | |
2661 | 2802 | /** |
2662 | 2803 | * Used to edit the body or subject of a message inline |
@@ -2668,8 +2809,9 @@ discard block |
||
2668 | 2809 | global $user_info, $context, $smcFunc, $language, $board_info; |
2669 | 2810 | |
2670 | 2811 | // We have to have a topic! |
2671 | - if (empty($topic)) |
|
2672 | - obExit(false); |
|
2812 | + if (empty($topic)) { |
|
2813 | + obExit(false); |
|
2814 | + } |
|
2673 | 2815 | |
2674 | 2816 | checkSession('get'); |
2675 | 2817 | require_once($sourcedir . '/Subs-Post.php'); |
@@ -2695,31 +2837,35 @@ discard block |
||
2695 | 2837 | 'guest_id' => 0, |
2696 | 2838 | ) |
2697 | 2839 | ); |
2698 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
2699 | - fatal_lang_error('no_board', false); |
|
2840 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
2841 | + fatal_lang_error('no_board', false); |
|
2842 | + } |
|
2700 | 2843 | $row = $smcFunc['db_fetch_assoc']($request); |
2701 | 2844 | $smcFunc['db_free_result']($request); |
2702 | 2845 | |
2703 | 2846 | // Change either body or subject requires permissions to modify messages. |
2704 | 2847 | if (isset($_POST['message']) || isset($_POST['subject']) || isset($_REQUEST['icon'])) |
2705 | 2848 | { |
2706 | - if (!empty($row['locked'])) |
|
2707 | - isAllowedTo('moderate_board'); |
|
2849 | + if (!empty($row['locked'])) { |
|
2850 | + isAllowedTo('moderate_board'); |
|
2851 | + } |
|
2708 | 2852 | |
2709 | 2853 | if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any')) |
2710 | 2854 | { |
2711 | - if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) |
|
2712 | - fatal_lang_error('modify_post_time_passed', false); |
|
2713 | - elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_own')) |
|
2714 | - isAllowedTo('modify_replies'); |
|
2715 | - else |
|
2716 | - isAllowedTo('modify_own'); |
|
2855 | + if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time()) { |
|
2856 | + fatal_lang_error('modify_post_time_passed', false); |
|
2857 | + } elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_own')) { |
|
2858 | + isAllowedTo('modify_replies'); |
|
2859 | + } else { |
|
2860 | + isAllowedTo('modify_own'); |
|
2861 | + } |
|
2717 | 2862 | } |
2718 | 2863 | // Otherwise, they're locked out; someone who can modify the replies is needed. |
2719 | - elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_any')) |
|
2720 | - isAllowedTo('modify_replies'); |
|
2721 | - else |
|
2722 | - isAllowedTo('modify_any'); |
|
2864 | + elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_any')) { |
|
2865 | + isAllowedTo('modify_replies'); |
|
2866 | + } else { |
|
2867 | + isAllowedTo('modify_any'); |
|
2868 | + } |
|
2723 | 2869 | |
2724 | 2870 | // Only log this action if it wasn't your message. |
2725 | 2871 | $moderationAction = $row['id_member'] != $user_info['id']; |
@@ -2731,10 +2877,10 @@ discard block |
||
2731 | 2877 | $_POST['subject'] = strtr($smcFunc['htmlspecialchars']($_POST['subject']), array("\r" => '', "\n" => '', "\t" => '')); |
2732 | 2878 | |
2733 | 2879 | // Maximum number of characters. |
2734 | - if ($smcFunc['strlen']($_POST['subject']) > 100) |
|
2735 | - $_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100); |
|
2736 | - } |
|
2737 | - elseif (isset($_POST['subject'])) |
|
2880 | + if ($smcFunc['strlen']($_POST['subject']) > 100) { |
|
2881 | + $_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100); |
|
2882 | + } |
|
2883 | + } elseif (isset($_POST['subject'])) |
|
2738 | 2884 | { |
2739 | 2885 | $post_errors[] = 'no_subject'; |
2740 | 2886 | unset($_POST['subject']); |
@@ -2746,13 +2892,11 @@ discard block |
||
2746 | 2892 | { |
2747 | 2893 | $post_errors[] = 'no_message'; |
2748 | 2894 | unset($_POST['message']); |
2749 | - } |
|
2750 | - elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength']) |
|
2895 | + } elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength']) |
|
2751 | 2896 | { |
2752 | 2897 | $post_errors[] = 'long_message'; |
2753 | 2898 | unset($_POST['message']); |
2754 | - } |
|
2755 | - else |
|
2899 | + } else |
|
2756 | 2900 | { |
2757 | 2901 | $_POST['message'] = $smcFunc['htmlspecialchars']($_POST['message'], ENT_QUOTES); |
2758 | 2902 | |
@@ -2768,31 +2912,34 @@ discard block |
||
2768 | 2912 | |
2769 | 2913 | if (isset($_POST['lock'])) |
2770 | 2914 | { |
2771 | - if (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $row['id_member'])) |
|
2772 | - unset($_POST['lock']); |
|
2773 | - elseif (!allowedTo('lock_any')) |
|
2915 | + if (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $row['id_member'])) { |
|
2916 | + unset($_POST['lock']); |
|
2917 | + } elseif (!allowedTo('lock_any')) |
|
2774 | 2918 | { |
2775 | - if ($row['locked'] == 1) |
|
2776 | - unset($_POST['lock']); |
|
2777 | - else |
|
2778 | - $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
2919 | + if ($row['locked'] == 1) { |
|
2920 | + unset($_POST['lock']); |
|
2921 | + } else { |
|
2922 | + $_POST['lock'] = empty($_POST['lock']) ? 0 : 2; |
|
2923 | + } |
|
2924 | + } elseif (!empty($row['locked']) && !empty($_POST['lock']) || $_POST['lock'] == $row['locked']) { |
|
2925 | + unset($_POST['lock']); |
|
2926 | + } else { |
|
2927 | + $_POST['lock'] = empty($_POST['lock']) ? 0 : 1; |
|
2779 | 2928 | } |
2780 | - elseif (!empty($row['locked']) && !empty($_POST['lock']) || $_POST['lock'] == $row['locked']) |
|
2781 | - unset($_POST['lock']); |
|
2782 | - else |
|
2783 | - $_POST['lock'] = empty($_POST['lock']) ? 0 : 1; |
|
2784 | 2929 | } |
2785 | 2930 | |
2786 | - if (isset($_POST['sticky']) && !allowedTo('make_sticky')) |
|
2787 | - unset($_POST['sticky']); |
|
2931 | + if (isset($_POST['sticky']) && !allowedTo('make_sticky')) { |
|
2932 | + unset($_POST['sticky']); |
|
2933 | + } |
|
2788 | 2934 | |
2789 | 2935 | if (isset($_POST['modify_reason'])) |
2790 | 2936 | { |
2791 | 2937 | $_POST['modify_reason'] = strtr($smcFunc['htmlspecialchars']($_POST['modify_reason']), array("\r" => '', "\n" => '', "\t" => '')); |
2792 | 2938 | |
2793 | 2939 | // Maximum number of characters. |
2794 | - if ($smcFunc['strlen']($_POST['modify_reason']) > 100) |
|
2795 | - $_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100); |
|
2940 | + if ($smcFunc['strlen']($_POST['modify_reason']) > 100) { |
|
2941 | + $_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100); |
|
2942 | + } |
|
2796 | 2943 | } |
2797 | 2944 | |
2798 | 2945 | if (empty($post_errors)) |
@@ -2829,8 +2976,9 @@ discard block |
||
2829 | 2976 | } |
2830 | 2977 | } |
2831 | 2978 | // If nothing was changed there's no need to add an entry to the moderation log. |
2832 | - else |
|
2833 | - $moderationAction = false; |
|
2979 | + else { |
|
2980 | + $moderationAction = false; |
|
2981 | + } |
|
2834 | 2982 | |
2835 | 2983 | modifyPost($msgOptions, $topicOptions, $posterOptions); |
2836 | 2984 | |
@@ -2848,9 +2996,9 @@ discard block |
||
2848 | 2996 | // Get the proper (default language) response prefix first. |
2849 | 2997 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix'))) |
2850 | 2998 | { |
2851 | - if ($language === $user_info['language']) |
|
2852 | - $context['response_prefix'] = $txt['response_prefix']; |
|
2853 | - else |
|
2999 | + if ($language === $user_info['language']) { |
|
3000 | + $context['response_prefix'] = $txt['response_prefix']; |
|
3001 | + } else |
|
2854 | 3002 | { |
2855 | 3003 | loadLanguage('index', $language, false); |
2856 | 3004 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -2872,8 +3020,9 @@ discard block |
||
2872 | 3020 | ); |
2873 | 3021 | } |
2874 | 3022 | |
2875 | - if (!empty($moderationAction)) |
|
2876 | - logAction('modify', array('topic' => $topic, 'message' => $row['id_msg'], 'member' => $row['id_member'], 'board' => $board)); |
|
3023 | + if (!empty($moderationAction)) { |
|
3024 | + logAction('modify', array('topic' => $topic, 'message' => $row['id_msg'], 'member' => $row['id_member'], 'board' => $board)); |
|
3025 | + } |
|
2877 | 3026 | } |
2878 | 3027 | |
2879 | 3028 | if (isset($_REQUEST['xml'])) |
@@ -2914,8 +3063,7 @@ discard block |
||
2914 | 3063 | ); |
2915 | 3064 | |
2916 | 3065 | censorText($context['message']['subject']); |
2917 | - } |
|
2918 | - else |
|
3066 | + } else |
|
2919 | 3067 | { |
2920 | 3068 | $context['message'] = array( |
2921 | 3069 | 'id' => $row['id_msg'], |
@@ -2927,15 +3075,16 @@ discard block |
||
2927 | 3075 | loadLanguage('Errors'); |
2928 | 3076 | foreach ($post_errors as $post_error) |
2929 | 3077 | { |
2930 | - if ($post_error == 'long_message') |
|
2931 | - $context['message']['errors'][] = sprintf($txt['error_' . $post_error], $modSettings['max_messageLength']); |
|
2932 | - else |
|
2933 | - $context['message']['errors'][] = $txt['error_' . $post_error]; |
|
3078 | + if ($post_error == 'long_message') { |
|
3079 | + $context['message']['errors'][] = sprintf($txt['error_' . $post_error], $modSettings['max_messageLength']); |
|
3080 | + } else { |
|
3081 | + $context['message']['errors'][] = $txt['error_' . $post_error]; |
|
3082 | + } |
|
2934 | 3083 | } |
2935 | 3084 | } |
3085 | + } else { |
|
3086 | + obExit(false); |
|
3087 | + } |
|
2936 | 3088 | } |
2937 | - else |
|
2938 | - obExit(false); |
|
2939 | -} |
|
2940 | 3089 | |
2941 | 3090 | ?> |
2942 | 3091 | \ No newline at end of file |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 3 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Ask them for their login information. (shows a page for the user to type |
@@ -29,8 +30,9 @@ discard block |
||
29 | 30 | global $txt, $context, $scripturl, $user_info; |
30 | 31 | |
31 | 32 | // You are already logged in, go take a tour of the boards |
32 | - if (!empty($user_info['id'])) |
|
33 | - redirectexit(); |
|
33 | + if (!empty($user_info['id'])) { |
|
34 | + redirectexit(); |
|
35 | + } |
|
34 | 36 | |
35 | 37 | // We need to load the Login template/language file. |
36 | 38 | loadLanguage('Login'); |
@@ -57,10 +59,11 @@ discard block |
||
57 | 59 | ); |
58 | 60 | |
59 | 61 | // Set the login URL - will be used when the login process is done (but careful not to send us to an attachment). |
60 | - if (isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0) |
|
61 | - $_SESSION['login_url'] = $_SESSION['old_url']; |
|
62 | - elseif (isset($_SESSION['login_url']) && strpos($_SESSION['login_url'], 'dlattach') !== false) |
|
63 | - unset($_SESSION['login_url']); |
|
62 | + if (isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0) { |
|
63 | + $_SESSION['login_url'] = $_SESSION['old_url']; |
|
64 | + } elseif (isset($_SESSION['login_url']) && strpos($_SESSION['login_url'], 'dlattach') !== false) { |
|
65 | + unset($_SESSION['login_url']); |
|
66 | + } |
|
64 | 67 | |
65 | 68 | // Create a one time token. |
66 | 69 | createToken('login'); |
@@ -83,8 +86,9 @@ discard block |
||
83 | 86 | global $cookiename, $modSettings, $context, $sourcedir, $maintenance; |
84 | 87 | |
85 | 88 | // Check to ensure we're forcing SSL for authentication |
86 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) |
|
87 | - fatal_lang_error('login_ssl_required'); |
|
89 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) { |
|
90 | + fatal_lang_error('login_ssl_required'); |
|
91 | + } |
|
88 | 92 | |
89 | 93 | // Load cookie authentication stuff. |
90 | 94 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -102,19 +106,20 @@ discard block |
||
102 | 106 | list (,, $timeout) = smf_json_decode($_COOKIE[$cookiename], true); |
103 | 107 | |
104 | 108 | // That didn't work... Maybe it's using serialize? |
105 | - if (is_null($timeout)) |
|
106 | - list (,, $timeout) = safe_unserialize($_COOKIE[$cookiename]); |
|
107 | - } |
|
108 | - elseif (isset($_SESSION['login_' . $cookiename])) |
|
109 | + if (is_null($timeout)) { |
|
110 | + list (,, $timeout) = safe_unserialize($_COOKIE[$cookiename]); |
|
111 | + } |
|
112 | + } elseif (isset($_SESSION['login_' . $cookiename])) |
|
109 | 113 | { |
110 | 114 | list (,, $timeout) = smf_json_decode($_SESSION['login_' . $cookiename]); |
111 | 115 | |
112 | 116 | // Try for old format |
113 | - if (is_null($timeout)) |
|
114 | - list (,, $timeout) = safe_unserialize($_SESSION['login_' . $cookiename]); |
|
117 | + if (is_null($timeout)) { |
|
118 | + list (,, $timeout) = safe_unserialize($_SESSION['login_' . $cookiename]); |
|
119 | + } |
|
120 | + } else { |
|
121 | + trigger_error('Login2(): Cannot be logged in without a session or cookie', E_USER_ERROR); |
|
115 | 122 | } |
116 | - else |
|
117 | - trigger_error('Login2(): Cannot be logged in without a session or cookie', E_USER_ERROR); |
|
118 | 123 | |
119 | 124 | $user_settings['password_salt'] = substr(md5(mt_rand()), 0, 4); |
120 | 125 | updateMemberData($user_info['id'], array('password_salt' => $user_settings['password_salt'])); |
@@ -125,16 +130,18 @@ discard block |
||
125 | 130 | $tfadata = smf_json_decode($_COOKIE[$cookiename . '_tfa'], true); |
126 | 131 | |
127 | 132 | // If that didn't work, try unserialize instead... |
128 | - if (is_null($tfadata)) |
|
129 | - $tfadata = safe_unserialize($_COOKIE[$cookiename . '_tfa']); |
|
133 | + if (is_null($tfadata)) { |
|
134 | + $tfadata = safe_unserialize($_COOKIE[$cookiename . '_tfa']); |
|
135 | + } |
|
130 | 136 | |
131 | 137 | list ($tfamember, $tfasecret, $exp, $state, $preserve) = $tfadata; |
132 | 138 | |
133 | 139 | // If we're preserving the cookie, reset it with updated salt |
134 | - if ($preserve && time() < $exp) |
|
135 | - setTFACookie(3153600, $user_info['password_salt'], hash_salt($user_settings['tfa_backup'], $user_settings['password_salt']), true); |
|
136 | - else |
|
137 | - setTFACookie(-3600, 0, ''); |
|
140 | + if ($preserve && time() < $exp) { |
|
141 | + setTFACookie(3153600, $user_info['password_salt'], hash_salt($user_settings['tfa_backup'], $user_settings['password_salt']), true); |
|
142 | + } else { |
|
143 | + setTFACookie(-3600, 0, ''); |
|
144 | + } |
|
138 | 145 | } |
139 | 146 | |
140 | 147 | setLoginCookie($timeout - time(), $user_info['id'], hash_salt($user_settings['passwd'], $user_settings['password_salt'])); |
@@ -145,20 +152,20 @@ discard block |
||
145 | 152 | elseif (isset($_GET['sa']) && $_GET['sa'] == 'check') |
146 | 153 | { |
147 | 154 | // Strike! You're outta there! |
148 | - if ($_GET['member'] != $user_info['id']) |
|
149 | - fatal_lang_error('login_cookie_error', false); |
|
155 | + if ($_GET['member'] != $user_info['id']) { |
|
156 | + fatal_lang_error('login_cookie_error', false); |
|
157 | + } |
|
150 | 158 | |
151 | 159 | $user_info['can_mod'] = allowedTo('access_mod_center') || (!$user_info['is_guest'] && ($user_info['mod_cache']['gq'] != '0=1' || $user_info['mod_cache']['bq'] != '0=1' || ($modSettings['postmod_active'] && !empty($user_info['mod_cache']['ap'])))); |
152 | 160 | |
153 | 161 | // Some whitelisting for login_url... |
154 | - if (empty($_SESSION['login_url'])) |
|
155 | - redirectexit(empty($user_settings['tfa_secret']) ? '' : 'action=logintfa'); |
|
156 | - elseif (!empty($_SESSION['login_url']) && (strpos($_SESSION['login_url'], 'http://') === false && strpos($_SESSION['login_url'], 'https://') === false)) |
|
162 | + if (empty($_SESSION['login_url'])) { |
|
163 | + redirectexit(empty($user_settings['tfa_secret']) ? '' : 'action=logintfa'); |
|
164 | + } elseif (!empty($_SESSION['login_url']) && (strpos($_SESSION['login_url'], 'http://') === false && strpos($_SESSION['login_url'], 'https://') === false)) |
|
157 | 165 | { |
158 | 166 | unset ($_SESSION['login_url']); |
159 | 167 | redirectexit(empty($user_settings['tfa_secret']) ? '' : 'action=logintfa'); |
160 | - } |
|
161 | - else |
|
168 | + } else |
|
162 | 169 | { |
163 | 170 | // Best not to clutter the session data too much... |
164 | 171 | $temp = $_SESSION['login_url']; |
@@ -169,8 +176,9 @@ discard block |
||
169 | 176 | } |
170 | 177 | |
171 | 178 | // Beyond this point you are assumed to be a guest trying to login. |
172 | - if (!$user_info['is_guest']) |
|
173 | - redirectexit(); |
|
179 | + if (!$user_info['is_guest']) { |
|
180 | + redirectexit(); |
|
181 | + } |
|
174 | 182 | |
175 | 183 | // Are you guessing with a script? |
176 | 184 | checkSession(); |
@@ -178,18 +186,21 @@ discard block |
||
178 | 186 | spamProtection('login'); |
179 | 187 | |
180 | 188 | // Set the login_url if it's not already set (but careful not to send us to an attachment). |
181 | - if ((empty($_SESSION['login_url']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0) || (isset($_GET['quicklogin']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'login') === false)) |
|
182 | - $_SESSION['login_url'] = $_SESSION['old_url']; |
|
189 | + if ((empty($_SESSION['login_url']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0) || (isset($_GET['quicklogin']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'login') === false)) { |
|
190 | + $_SESSION['login_url'] = $_SESSION['old_url']; |
|
191 | + } |
|
183 | 192 | |
184 | 193 | // Been guessing a lot, haven't we? |
185 | - if (isset($_SESSION['failed_login']) && $_SESSION['failed_login'] >= $modSettings['failed_login_threshold'] * 3) |
|
186 | - fatal_lang_error('login_threshold_fail', 'critical'); |
|
194 | + if (isset($_SESSION['failed_login']) && $_SESSION['failed_login'] >= $modSettings['failed_login_threshold'] * 3) { |
|
195 | + fatal_lang_error('login_threshold_fail', 'critical'); |
|
196 | + } |
|
187 | 197 | |
188 | 198 | // Set up the cookie length. (if it's invalid, just fall through and use the default.) |
189 | - if (isset($_POST['cookieneverexp']) || (!empty($_POST['cookielength']) && $_POST['cookielength'] == -1)) |
|
190 | - $modSettings['cookieTime'] = 3153600; |
|
191 | - elseif (!empty($_POST['cookielength']) && ($_POST['cookielength'] >= 1 && $_POST['cookielength'] <= 525600)) |
|
192 | - $modSettings['cookieTime'] = (int) $_POST['cookielength']; |
|
199 | + if (isset($_POST['cookieneverexp']) || (!empty($_POST['cookielength']) && $_POST['cookielength'] == -1)) { |
|
200 | + $modSettings['cookieTime'] = 3153600; |
|
201 | + } elseif (!empty($_POST['cookielength']) && ($_POST['cookielength'] >= 1 && $_POST['cookielength'] <= 525600)) { |
|
202 | + $modSettings['cookieTime'] = (int) $_POST['cookielength']; |
|
203 | + } |
|
193 | 204 | |
194 | 205 | loadLanguage('Login'); |
195 | 206 | // Load the template stuff. |
@@ -309,8 +320,9 @@ discard block |
||
309 | 320 | $other_passwords[] = crypt(md5($_POST['passwrd']), md5($_POST['passwrd'])); |
310 | 321 | |
311 | 322 | // Snitz style - SHA-256. Technically, this is a downgrade, but most PHP configurations don't support sha256 anyway. |
312 | - if (strlen($user_settings['passwd']) == 64 && function_exists('mhash') && defined('MHASH_SHA256')) |
|
313 | - $other_passwords[] = bin2hex(mhash(MHASH_SHA256, $_POST['passwrd'])); |
|
323 | + if (strlen($user_settings['passwd']) == 64 && function_exists('mhash') && defined('MHASH_SHA256')) { |
|
324 | + $other_passwords[] = bin2hex(mhash(MHASH_SHA256, $_POST['passwrd'])); |
|
325 | + } |
|
314 | 326 | |
315 | 327 | // phpBB3 users new hashing. We now support it as well ;). |
316 | 328 | $other_passwords[] = phpBB3_password_check($_POST['passwrd'], $user_settings['passwd']); |
@@ -330,27 +342,29 @@ discard block |
||
330 | 342 | // Some common md5 ones. |
331 | 343 | $other_passwords[] = md5($user_settings['password_salt'] . $_POST['passwrd']); |
332 | 344 | $other_passwords[] = md5($_POST['passwrd'] . $user_settings['password_salt']); |
333 | - } |
|
334 | - elseif (strlen($user_settings['passwd']) == 40) |
|
345 | + } elseif (strlen($user_settings['passwd']) == 40) |
|
335 | 346 | { |
336 | 347 | // Maybe they are using a hash from before the password fix. |
337 | 348 | // This is also valid for SMF 1.1 to 2.0 style of hashing, changed to bcrypt in SMF 2.1 |
338 | 349 | $other_passwords[] = sha1(strtolower($user_settings['member_name']) . un_htmlspecialchars($_POST['passwrd'])); |
339 | 350 | |
340 | 351 | // BurningBoard3 style of hashing. |
341 | - if (!empty($modSettings['enable_password_conversion'])) |
|
342 | - $other_passwords[] = sha1($user_settings['password_salt'] . sha1($user_settings['password_salt'] . sha1($_POST['passwrd']))); |
|
352 | + if (!empty($modSettings['enable_password_conversion'])) { |
|
353 | + $other_passwords[] = sha1($user_settings['password_salt'] . sha1($user_settings['password_salt'] . sha1($_POST['passwrd']))); |
|
354 | + } |
|
343 | 355 | |
344 | 356 | // Perhaps we converted to UTF-8 and have a valid password being hashed differently. |
345 | 357 | if ($context['character_set'] == 'UTF-8' && !empty($modSettings['previousCharacterSet']) && $modSettings['previousCharacterSet'] != 'utf8') |
346 | 358 | { |
347 | 359 | // Try iconv first, for no particular reason. |
348 | - if (function_exists('iconv')) |
|
349 | - $other_passwords['iconv'] = sha1(strtolower(iconv('UTF-8', $modSettings['previousCharacterSet'], $user_settings['member_name'])) . un_htmlspecialchars(iconv('UTF-8', $modSettings['previousCharacterSet'], $_POST['passwrd']))); |
|
360 | + if (function_exists('iconv')) { |
|
361 | + $other_passwords['iconv'] = sha1(strtolower(iconv('UTF-8', $modSettings['previousCharacterSet'], $user_settings['member_name'])) . un_htmlspecialchars(iconv('UTF-8', $modSettings['previousCharacterSet'], $_POST['passwrd']))); |
|
362 | + } |
|
350 | 363 | |
351 | 364 | // Say it aint so, iconv failed! |
352 | - if (empty($other_passwords['iconv']) && function_exists('mb_convert_encoding')) |
|
353 | - $other_passwords[] = sha1(strtolower(mb_convert_encoding($user_settings['member_name'], 'UTF-8', $modSettings['previousCharacterSet'])) . un_htmlspecialchars(mb_convert_encoding($_POST['passwrd'], 'UTF-8', $modSettings['previousCharacterSet']))); |
|
365 | + if (empty($other_passwords['iconv']) && function_exists('mb_convert_encoding')) { |
|
366 | + $other_passwords[] = sha1(strtolower(mb_convert_encoding($user_settings['member_name'], 'UTF-8', $modSettings['previousCharacterSet'])) . un_htmlspecialchars(mb_convert_encoding($_POST['passwrd'], 'UTF-8', $modSettings['previousCharacterSet']))); |
|
367 | + } |
|
354 | 368 | } |
355 | 369 | } |
356 | 370 | |
@@ -380,8 +394,9 @@ discard block |
||
380 | 394 | $_SESSION['failed_login'] = isset($_SESSION['failed_login']) ? ($_SESSION['failed_login'] + 1) : 1; |
381 | 395 | |
382 | 396 | // Hmm... don't remember it, do you? Here, try the password reminder ;). |
383 | - if ($_SESSION['failed_login'] >= $modSettings['failed_login_threshold']) |
|
384 | - redirectexit('action=reminder'); |
|
397 | + if ($_SESSION['failed_login'] >= $modSettings['failed_login_threshold']) { |
|
398 | + redirectexit('action=reminder'); |
|
399 | + } |
|
385 | 400 | // We'll give you another chance... |
386 | 401 | else |
387 | 402 | { |
@@ -392,8 +407,7 @@ discard block |
||
392 | 407 | return; |
393 | 408 | } |
394 | 409 | } |
395 | - } |
|
396 | - elseif (!empty($user_settings['passwd_flood'])) |
|
410 | + } elseif (!empty($user_settings['passwd_flood'])) |
|
397 | 411 | { |
398 | 412 | // Let's be sure they weren't a little hacker. |
399 | 413 | validatePasswordFlood($user_settings['id_member'], $user_settings['passwd_flood'], true); |
@@ -410,8 +424,9 @@ discard block |
||
410 | 424 | } |
411 | 425 | |
412 | 426 | // Check their activation status. |
413 | - if (!checkActivation()) |
|
414 | - return; |
|
427 | + if (!checkActivation()) { |
|
428 | + return; |
|
429 | + } |
|
415 | 430 | |
416 | 431 | DoLogin(); |
417 | 432 | } |
@@ -423,8 +438,9 @@ discard block |
||
423 | 438 | { |
424 | 439 | global $sourcedir, $txt, $context, $user_info, $modSettings, $scripturl; |
425 | 440 | |
426 | - if (!$user_info['is_guest'] || empty($context['tfa_member']) || empty($modSettings['tfa_mode'])) |
|
427 | - fatal_lang_error('no_access', false); |
|
441 | + if (!$user_info['is_guest'] || empty($context['tfa_member']) || empty($modSettings['tfa_mode'])) { |
|
442 | + fatal_lang_error('no_access', false); |
|
443 | + } |
|
428 | 444 | |
429 | 445 | loadLanguage('Profile'); |
430 | 446 | require_once($sourcedir . '/Class-TOTP.php'); |
@@ -432,8 +448,9 @@ discard block |
||
432 | 448 | $member = $context['tfa_member']; |
433 | 449 | |
434 | 450 | // Prevent replay attacks by limiting at least 2 minutes before they can log in again via 2FA |
435 | - if (time() - $member['last_login'] < 120) |
|
436 | - fatal_lang_error('tfa_wait', false); |
|
451 | + if (time() - $member['last_login'] < 120) { |
|
452 | + fatal_lang_error('tfa_wait', false); |
|
453 | + } |
|
437 | 454 | |
438 | 455 | $totp = new \TOTP\Auth($member['tfa_secret']); |
439 | 456 | $totp->setRange(1); |
@@ -447,8 +464,9 @@ discard block |
||
447 | 464 | if (!empty($_POST['tfa_code']) && empty($_POST['tfa_backup'])) |
448 | 465 | { |
449 | 466 | // Check to ensure we're forcing SSL for authentication |
450 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) |
|
451 | - fatal_lang_error('login_ssl_required'); |
|
467 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) { |
|
468 | + fatal_lang_error('login_ssl_required'); |
|
469 | + } |
|
452 | 470 | |
453 | 471 | $code = $_POST['tfa_code']; |
454 | 472 | |
@@ -458,20 +476,19 @@ discard block |
||
458 | 476 | |
459 | 477 | setTFACookie(3153600, $member['id_member'], hash_salt($member['tfa_backup'], $member['password_salt']), !empty($_POST['tfa_preserve'])); |
460 | 478 | redirectexit(); |
461 | - } |
|
462 | - else |
|
479 | + } else |
|
463 | 480 | { |
464 | 481 | validatePasswordFlood($member['id_member'], $member['passwd_flood'], false, true); |
465 | 482 | |
466 | 483 | $context['tfa_error'] = true; |
467 | 484 | $context['tfa_value'] = $_POST['tfa_code']; |
468 | 485 | } |
469 | - } |
|
470 | - elseif (!empty($_POST['tfa_backup'])) |
|
486 | + } elseif (!empty($_POST['tfa_backup'])) |
|
471 | 487 | { |
472 | 488 | // Check to ensure we're forcing SSL for authentication |
473 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) |
|
474 | - fatal_lang_error('login_ssl_required'); |
|
489 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) { |
|
490 | + fatal_lang_error('login_ssl_required'); |
|
491 | + } |
|
475 | 492 | |
476 | 493 | $backup = $_POST['tfa_backup']; |
477 | 494 | |
@@ -485,8 +502,7 @@ discard block |
||
485 | 502 | )); |
486 | 503 | setTFACookie(3153600, $member['id_member'], hash_salt($member['tfa_backup'], $member['password_salt'])); |
487 | 504 | redirectexit('action=profile;area=tfasetup;backup'); |
488 | - } |
|
489 | - else |
|
505 | + } else |
|
490 | 506 | { |
491 | 507 | validatePasswordFlood($member['id_member'], $member['passwd_flood'], false, true); |
492 | 508 | |
@@ -509,8 +525,9 @@ discard block |
||
509 | 525 | { |
510 | 526 | global $context, $txt, $scripturl, $user_settings, $modSettings; |
511 | 527 | |
512 | - if (!isset($context['login_errors'])) |
|
513 | - $context['login_errors'] = array(); |
|
528 | + if (!isset($context['login_errors'])) { |
|
529 | + $context['login_errors'] = array(); |
|
530 | + } |
|
514 | 531 | |
515 | 532 | // What is the true activation status of this account? |
516 | 533 | $activation_status = $user_settings['is_activated'] > 10 ? $user_settings['is_activated'] - 10 : $user_settings['is_activated']; |
@@ -522,8 +539,9 @@ discard block |
||
522 | 539 | return false; |
523 | 540 | } |
524 | 541 | // Awaiting approval still? |
525 | - elseif ($activation_status == 3) |
|
526 | - fatal_lang_error('still_awaiting_approval', 'user'); |
|
542 | + elseif ($activation_status == 3) { |
|
543 | + fatal_lang_error('still_awaiting_approval', 'user'); |
|
544 | + } |
|
527 | 545 | // Awaiting deletion, changed their mind? |
528 | 546 | elseif ($activation_status == 4) |
529 | 547 | { |
@@ -531,8 +549,7 @@ discard block |
||
531 | 549 | { |
532 | 550 | updateMemberData($user_settings['id_member'], array('is_activated' => 1)); |
533 | 551 | updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > 0 ? $modSettings['unapprovedMembers'] - 1 : 0))); |
534 | - } |
|
535 | - else |
|
552 | + } else |
|
536 | 553 | { |
537 | 554 | $context['disable_login_hashing'] = true; |
538 | 555 | $context['login_errors'][] = $txt['awaiting_delete_account']; |
@@ -573,8 +590,9 @@ discard block |
||
573 | 590 | setLoginCookie(60 * $modSettings['cookieTime'], $user_settings['id_member'], hash_salt($user_settings['passwd'], $user_settings['password_salt'])); |
574 | 591 | |
575 | 592 | // Reset the login threshold. |
576 | - if (isset($_SESSION['failed_login'])) |
|
577 | - unset($_SESSION['failed_login']); |
|
593 | + if (isset($_SESSION['failed_login'])) { |
|
594 | + unset($_SESSION['failed_login']); |
|
595 | + } |
|
578 | 596 | |
579 | 597 | $user_info['is_guest'] = false; |
580 | 598 | $user_settings['additional_groups'] = explode(',', $user_settings['additional_groups']); |
@@ -596,16 +614,18 @@ discard block |
||
596 | 614 | 'id_member' => $user_info['id'], |
597 | 615 | ) |
598 | 616 | ); |
599 | - if ($smcFunc['db_num_rows']($request) == 1) |
|
600 | - $_SESSION['first_login'] = true; |
|
601 | - else |
|
602 | - unset($_SESSION['first_login']); |
|
617 | + if ($smcFunc['db_num_rows']($request) == 1) { |
|
618 | + $_SESSION['first_login'] = true; |
|
619 | + } else { |
|
620 | + unset($_SESSION['first_login']); |
|
621 | + } |
|
603 | 622 | $smcFunc['db_free_result']($request); |
604 | 623 | |
605 | 624 | // You've logged in, haven't you? |
606 | 625 | $update = array('member_ip' => $user_info['ip'], 'member_ip2' => $_SERVER['BAN_CHECK_IP']); |
607 | - if (empty($user_settings['tfa_secret'])) |
|
608 | - $update['last_login'] = time(); |
|
626 | + if (empty($user_settings['tfa_secret'])) { |
|
627 | + $update['last_login'] = time(); |
|
628 | + } |
|
609 | 629 | updateMemberData($user_info['id'], $update); |
610 | 630 | |
611 | 631 | // Get rid of the online entry for that old guest.... |
@@ -619,8 +639,8 @@ discard block |
||
619 | 639 | $_SESSION['log_time'] = 0; |
620 | 640 | |
621 | 641 | // Log this entry, only if we have it enabled. |
622 | - if (!empty($modSettings['loginHistoryDays'])) |
|
623 | - $smcFunc['db_insert']('insert', |
|
642 | + if (!empty($modSettings['loginHistoryDays'])) { |
|
643 | + $smcFunc['db_insert']('insert', |
|
624 | 644 | '{db_prefix}member_logins', |
625 | 645 | array( |
626 | 646 | 'id_member' => 'int', 'time' => 'int', 'ip' => 'inet', 'ip2' => 'inet', |
@@ -632,13 +652,15 @@ discard block |
||
632 | 652 | 'id_member', 'time' |
633 | 653 | ) |
634 | 654 | ); |
655 | + } |
|
635 | 656 | |
636 | 657 | // Just log you back out if it's in maintenance mode and you AREN'T an admin. |
637 | - if (empty($maintenance) || allowedTo('admin_forum')) |
|
638 | - redirectexit('action=login2;sa=check;member=' . $user_info['id'], $context['server']['needs_login_fix']); |
|
639 | - else |
|
640 | - redirectexit('action=logout;' . $context['session_var'] . '=' . $context['session_id'], $context['server']['needs_login_fix']); |
|
641 | -} |
|
658 | + if (empty($maintenance) || allowedTo('admin_forum')) { |
|
659 | + redirectexit('action=login2;sa=check;member=' . $user_info['id'], $context['server']['needs_login_fix']); |
|
660 | + } else { |
|
661 | + redirectexit('action=logout;' . $context['session_var'] . '=' . $context['session_id'], $context['server']['needs_login_fix']); |
|
662 | + } |
|
663 | + } |
|
642 | 664 | |
643 | 665 | /** |
644 | 666 | * Logs the current user out of their account. |
@@ -654,13 +676,15 @@ discard block |
||
654 | 676 | global $sourcedir, $user_info, $user_settings, $context, $smcFunc, $cookiename, $modSettings; |
655 | 677 | |
656 | 678 | // Make sure they aren't being auto-logged out. |
657 | - if (!$internal) |
|
658 | - checkSession('get'); |
|
679 | + if (!$internal) { |
|
680 | + checkSession('get'); |
|
681 | + } |
|
659 | 682 | |
660 | 683 | require_once($sourcedir . '/Subs-Auth.php'); |
661 | 684 | |
662 | - if (isset($_SESSION['pack_ftp'])) |
|
663 | - $_SESSION['pack_ftp'] = null; |
|
685 | + if (isset($_SESSION['pack_ftp'])) { |
|
686 | + $_SESSION['pack_ftp'] = null; |
|
687 | + } |
|
664 | 688 | |
665 | 689 | // It won't be first login anymore. |
666 | 690 | unset($_SESSION['first_login']); |
@@ -688,24 +712,27 @@ discard block |
||
688 | 712 | |
689 | 713 | // And some other housekeeping while we're at it. |
690 | 714 | $salt = substr(md5(mt_rand()), 0, 4); |
691 | - if (!empty($user_info['id'])) |
|
692 | - updateMemberData($user_info['id'], array('password_salt' => $salt)); |
|
715 | + if (!empty($user_info['id'])) { |
|
716 | + updateMemberData($user_info['id'], array('password_salt' => $salt)); |
|
717 | + } |
|
693 | 718 | |
694 | 719 | if (!empty($modSettings['tfa_mode']) && !empty($user_info['id']) && !empty($_COOKIE[$cookiename . '_tfa'])) |
695 | 720 | { |
696 | 721 | $tfadata = smf_json_decode($_COOKIE[$cookiename . '_tfa'], true); |
697 | 722 | |
698 | 723 | // If that failed, try the old method |
699 | - if (is_null($tfadata)) |
|
700 | - $tfadata = safe_unserialize($_COOKIE[$cookiename . '_tfa']); |
|
724 | + if (is_null($tfadata)) { |
|
725 | + $tfadata = safe_unserialize($_COOKIE[$cookiename . '_tfa']); |
|
726 | + } |
|
701 | 727 | |
702 | 728 | list ($tfamember, $tfasecret, $exp, $state, $preserve) = $tfadata; |
703 | 729 | |
704 | 730 | // If we're preserving the cookie, reset it with updated salt |
705 | - if ($preserve && time() < $exp) |
|
706 | - setTFACookie(3153600, $user_info['id'], hash_salt($user_settings['tfa_backup'], $salt), true); |
|
707 | - else |
|
708 | - setTFACookie(-3600, 0, ''); |
|
731 | + if ($preserve && time() < $exp) { |
|
732 | + setTFACookie(3153600, $user_info['id'], hash_salt($user_settings['tfa_backup'], $salt), true); |
|
733 | + } else { |
|
734 | + setTFACookie(-3600, 0, ''); |
|
735 | + } |
|
709 | 736 | } |
710 | 737 | |
711 | 738 | session_destroy(); |
@@ -713,14 +740,13 @@ discard block |
||
713 | 740 | // Off to the merry board index we go! |
714 | 741 | if ($redirect) |
715 | 742 | { |
716 | - if (empty($_SESSION['logout_url'])) |
|
717 | - redirectexit('', $context['server']['needs_login_fix']); |
|
718 | - elseif (!empty($_SESSION['logout_url']) && (strpos($_SESSION['logout_url'], 'http://') === false && strpos($_SESSION['logout_url'], 'https://') === false)) |
|
743 | + if (empty($_SESSION['logout_url'])) { |
|
744 | + redirectexit('', $context['server']['needs_login_fix']); |
|
745 | + } elseif (!empty($_SESSION['logout_url']) && (strpos($_SESSION['logout_url'], 'http://') === false && strpos($_SESSION['logout_url'], 'https://') === false)) |
|
719 | 746 | { |
720 | 747 | unset ($_SESSION['logout_url']); |
721 | 748 | redirectexit(); |
722 | - } |
|
723 | - else |
|
749 | + } else |
|
724 | 750 | { |
725 | 751 | $temp = $_SESSION['logout_url']; |
726 | 752 | unset($_SESSION['logout_url']); |
@@ -753,8 +779,9 @@ discard block |
||
753 | 779 | function phpBB3_password_check($passwd, $passwd_hash) |
754 | 780 | { |
755 | 781 | // Too long or too short? |
756 | - if (strlen($passwd_hash) != 34) |
|
757 | - return; |
|
782 | + if (strlen($passwd_hash) != 34) { |
|
783 | + return; |
|
784 | + } |
|
758 | 785 | |
759 | 786 | // Range of characters allowed. |
760 | 787 | $range = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; |
@@ -766,8 +793,9 @@ discard block |
||
766 | 793 | $salt = substr($passwd_hash, 4, 8); |
767 | 794 | |
768 | 795 | $hash = md5($salt . $passwd, true); |
769 | - for (; $count != 0; --$count) |
|
770 | - $hash = md5($hash . $passwd, true); |
|
796 | + for (; $count != 0; --$count) { |
|
797 | + $hash = md5($hash . $passwd, true); |
|
798 | + } |
|
771 | 799 | |
772 | 800 | $output = substr($passwd_hash, 0, 12); |
773 | 801 | $i = 0; |
@@ -776,21 +804,25 @@ discard block |
||
776 | 804 | $value = ord($hash[$i++]); |
777 | 805 | $output .= $range[$value & 0x3f]; |
778 | 806 | |
779 | - if ($i < 16) |
|
780 | - $value |= ord($hash[$i]) << 8; |
|
807 | + if ($i < 16) { |
|
808 | + $value |= ord($hash[$i]) << 8; |
|
809 | + } |
|
781 | 810 | |
782 | 811 | $output .= $range[($value >> 6) & 0x3f]; |
783 | 812 | |
784 | - if ($i++ >= 16) |
|
785 | - break; |
|
813 | + if ($i++ >= 16) { |
|
814 | + break; |
|
815 | + } |
|
786 | 816 | |
787 | - if ($i < 16) |
|
788 | - $value |= ord($hash[$i]) << 16; |
|
817 | + if ($i < 16) { |
|
818 | + $value |= ord($hash[$i]) << 16; |
|
819 | + } |
|
789 | 820 | |
790 | 821 | $output .= $range[($value >> 12) & 0x3f]; |
791 | 822 | |
792 | - if ($i++ >= 16) |
|
793 | - break; |
|
823 | + if ($i++ >= 16) { |
|
824 | + break; |
|
825 | + } |
|
794 | 826 | |
795 | 827 | $output .= $range[($value >> 18) & 0x3f]; |
796 | 828 | } |
@@ -821,8 +853,9 @@ discard block |
||
821 | 853 | require_once($sourcedir . '/Subs-Auth.php'); |
822 | 854 | setLoginCookie(-3600, 0); |
823 | 855 | |
824 | - if (isset($_SESSION['login_' . $cookiename])) |
|
825 | - unset($_SESSION['login_' . $cookiename]); |
|
856 | + if (isset($_SESSION['login_' . $cookiename])) { |
|
857 | + unset($_SESSION['login_' . $cookiename]); |
|
858 | + } |
|
826 | 859 | } |
827 | 860 | |
828 | 861 | // We need a member! |
@@ -836,8 +869,9 @@ discard block |
||
836 | 869 | } |
837 | 870 | |
838 | 871 | // Right, have we got a flood value? |
839 | - if ($password_flood_value !== false) |
|
840 | - @list ($time_stamp, $number_tries) = explode('|', $password_flood_value); |
|
872 | + if ($password_flood_value !== false) { |
|
873 | + @list ($time_stamp, $number_tries) = explode('|', $password_flood_value); |
|
874 | + } |
|
841 | 875 | |
842 | 876 | // Timestamp or number of tries invalid? |
843 | 877 | if (empty($number_tries) || empty($time_stamp)) |
@@ -853,15 +887,17 @@ discard block |
||
853 | 887 | $number_tries = $time_stamp < time() - 20 ? 2 : $number_tries; |
854 | 888 | |
855 | 889 | // They are trying too fast, make them wait longer |
856 | - if ($time_stamp < time() - 10) |
|
857 | - $time_stamp = time(); |
|
890 | + if ($time_stamp < time() - 10) { |
|
891 | + $time_stamp = time(); |
|
892 | + } |
|
858 | 893 | } |
859 | 894 | |
860 | 895 | $number_tries++; |
861 | 896 | |
862 | 897 | // Broken the law? |
863 | - if ($number_tries > 5) |
|
864 | - fatal_lang_error('login_threshold_brute_fail', 'critical'); |
|
898 | + if ($number_tries > 5) { |
|
899 | + fatal_lang_error('login_threshold_brute_fail', 'critical'); |
|
900 | + } |
|
865 | 901 | |
866 | 902 | // Otherwise set the members data. If they correct on their first attempt then we actually clear it, otherwise we set it! |
867 | 903 | updateMemberData($id_member, array('passwd_flood' => $was_correct && $number_tries == 1 ? '' : $time_stamp . '|' . $number_tries)); |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Main entry point for the admin search settings screen. |
@@ -107,11 +108,13 @@ discard block |
||
107 | 108 | // Perhaps the search method wants to add some settings? |
108 | 109 | require_once($sourcedir . '/Search.php'); |
109 | 110 | $searchAPI = findSearchAPI(); |
110 | - if (is_callable(array($searchAPI, 'searchSettings'))) |
|
111 | - call_user_func_array(array($searchAPI, 'searchSettings'), array(&$config_vars)); |
|
111 | + if (is_callable(array($searchAPI, 'searchSettings'))) { |
|
112 | + call_user_func_array(array($searchAPI, 'searchSettings'), array(&$config_vars)); |
|
113 | + } |
|
112 | 114 | |
113 | - if ($return_config) |
|
114 | - return $config_vars; |
|
115 | + if ($return_config) { |
|
116 | + return $config_vars; |
|
117 | + } |
|
115 | 118 | |
116 | 119 | $context['page_title'] = $txt['search_settings_title']; |
117 | 120 | $context['sub_template'] = 'show_settings'; |
@@ -126,8 +129,9 @@ discard block |
||
126 | 129 | |
127 | 130 | call_integration_hook('integrate_save_search_settings'); |
128 | 131 | |
129 | - if (empty($_POST['search_results_per_page'])) |
|
130 | - $_POST['search_results_per_page'] = !empty($modSettings['search_results_per_page']) ? $modSettings['search_results_per_page'] : $modSettings['defaultMaxMessages']; |
|
132 | + if (empty($_POST['search_results_per_page'])) { |
|
133 | + $_POST['search_results_per_page'] = !empty($modSettings['search_results_per_page']) ? $modSettings['search_results_per_page'] : $modSettings['defaultMaxMessages']; |
|
134 | + } |
|
131 | 135 | saveDBSettings($config_vars); |
132 | 136 | $_SESSION['adm-save'] = true; |
133 | 137 | redirectexit('action=admin;area=managesearch;sa=settings;' . $context['session_var'] . '=' . $context['session_id']); |
@@ -177,17 +181,20 @@ discard block |
||
177 | 181 | call_integration_hook('integrate_save_search_weights'); |
178 | 182 | |
179 | 183 | $changes = array(); |
180 | - foreach ($factors as $factor) |
|
181 | - $changes[$factor] = (int) $_POST[$factor]; |
|
184 | + foreach ($factors as $factor) { |
|
185 | + $changes[$factor] = (int) $_POST[$factor]; |
|
186 | + } |
|
182 | 187 | updateSettings($changes); |
183 | 188 | } |
184 | 189 | |
185 | 190 | $context['relative_weights'] = array('total' => 0); |
186 | - foreach ($factors as $factor) |
|
187 | - $context['relative_weights']['total'] += isset($modSettings[$factor]) ? $modSettings[$factor] : 0; |
|
191 | + foreach ($factors as $factor) { |
|
192 | + $context['relative_weights']['total'] += isset($modSettings[$factor]) ? $modSettings[$factor] : 0; |
|
193 | + } |
|
188 | 194 | |
189 | - foreach ($factors as $factor) |
|
190 | - $context['relative_weights'][$factor] = round(100 * (isset($modSettings[$factor]) ? $modSettings[$factor] : 0) / $context['relative_weights']['total'], 1); |
|
195 | + foreach ($factors as $factor) { |
|
196 | + $context['relative_weights'][$factor] = round(100 * (isset($modSettings[$factor]) ? $modSettings[$factor] : 0) / $context['relative_weights']['total'], 1); |
|
197 | + } |
|
191 | 198 | |
192 | 199 | createToken('admin-msw'); |
193 | 200 | } |
@@ -215,8 +222,9 @@ discard block |
||
215 | 222 | $context['search_apis'] = loadSearchAPIs(); |
216 | 223 | |
217 | 224 | // Detect whether a fulltext index is set. |
218 | - if ($context['supports_fulltext']) |
|
219 | - detectFulltextIndex(); |
|
225 | + if ($context['supports_fulltext']) { |
|
226 | + detectFulltextIndex(); |
|
227 | + } |
|
220 | 228 | |
221 | 229 | if (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'createfulltext') |
222 | 230 | { |
@@ -252,8 +260,7 @@ discard block |
||
252 | 260 | 'language' => $language_ftx |
253 | 261 | ) |
254 | 262 | ); |
255 | - } |
|
256 | - else |
|
263 | + } else |
|
257 | 264 | { |
258 | 265 | // Make sure it's gone before creating it. |
259 | 266 | $smcFunc['db_query']('', ' |
@@ -273,8 +280,7 @@ discard block |
||
273 | 280 | } |
274 | 281 | |
275 | 282 | $context['fulltext_index'] = 'body'; |
276 | - } |
|
277 | - elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removefulltext' && !empty($context['fulltext_index'])) |
|
283 | + } elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removefulltext' && !empty($context['fulltext_index'])) |
|
278 | 284 | { |
279 | 285 | checkSession('get'); |
280 | 286 | validateToken('admin-msm', 'get'); |
@@ -291,12 +297,12 @@ discard block |
||
291 | 297 | $context['fulltext_index'] = ''; |
292 | 298 | |
293 | 299 | // Go back to the default search method. |
294 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext') |
|
295 | - updateSettings(array( |
|
300 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext') { |
|
301 | + updateSettings(array( |
|
296 | 302 | 'search_index' => '', |
297 | 303 | )); |
298 | - } |
|
299 | - elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removecustom') |
|
304 | + } |
|
305 | + } elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removecustom') |
|
300 | 306 | { |
301 | 307 | checkSession('get'); |
302 | 308 | validateToken('admin-msm', 'get'); |
@@ -318,12 +324,12 @@ discard block |
||
318 | 324 | )); |
319 | 325 | |
320 | 326 | // Go back to the default search method. |
321 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') |
|
322 | - updateSettings(array( |
|
327 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') { |
|
328 | + updateSettings(array( |
|
323 | 329 | 'search_index' => '', |
324 | 330 | )); |
325 | - } |
|
326 | - elseif (isset($_POST['save'])) |
|
331 | + } |
|
332 | + } elseif (isset($_POST['save'])) |
|
327 | 333 | { |
328 | 334 | checkSession(); |
329 | 335 | validateToken('admin-msmpost'); |
@@ -345,8 +351,8 @@ discard block |
||
345 | 351 | // Get some info about the messages table, to show its size and index size. |
346 | 352 | if ($db_type == 'mysql' || $db_type == 'mysqli') |
347 | 353 | { |
348 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
349 | - $request = $smcFunc['db_query']('', ' |
|
354 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
355 | + $request = $smcFunc['db_query']('', ' |
|
350 | 356 | SHOW TABLE STATUS |
351 | 357 | FROM {string:database_name} |
352 | 358 | LIKE {string:table_name}', |
@@ -355,14 +361,15 @@ discard block |
||
355 | 361 | 'table_name' => str_replace('_', '\_', $match[2]) . 'messages', |
356 | 362 | ) |
357 | 363 | ); |
358 | - else |
|
359 | - $request = $smcFunc['db_query']('', ' |
|
364 | + } else { |
|
365 | + $request = $smcFunc['db_query']('', ' |
|
360 | 366 | SHOW TABLE STATUS |
361 | 367 | LIKE {string:table_name}', |
362 | 368 | array( |
363 | 369 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'messages', |
364 | 370 | ) |
365 | 371 | ); |
372 | + } |
|
366 | 373 | if ($request !== false && $smcFunc['db_num_rows']($request) == 1) |
367 | 374 | { |
368 | 375 | // Only do this if the user has permission to execute this query. |
@@ -374,8 +381,8 @@ discard block |
||
374 | 381 | } |
375 | 382 | |
376 | 383 | // Now check the custom index table, if it exists at all. |
377 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
378 | - $request = $smcFunc['db_query']('', ' |
|
384 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
385 | + $request = $smcFunc['db_query']('', ' |
|
379 | 386 | SHOW TABLE STATUS |
380 | 387 | FROM {string:database_name} |
381 | 388 | LIKE {string:table_name}', |
@@ -384,14 +391,15 @@ discard block |
||
384 | 391 | 'table_name' => str_replace('_', '\_', $match[2]) . 'log_search_words', |
385 | 392 | ) |
386 | 393 | ); |
387 | - else |
|
388 | - $request = $smcFunc['db_query']('', ' |
|
394 | + } else { |
|
395 | + $request = $smcFunc['db_query']('', ' |
|
389 | 396 | SHOW TABLE STATUS |
390 | 397 | LIKE {string:table_name}', |
391 | 398 | array( |
392 | 399 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'log_search_words', |
393 | 400 | ) |
394 | 401 | ); |
402 | + } |
|
395 | 403 | if ($request !== false && $smcFunc['db_num_rows']($request) == 1) |
396 | 404 | { |
397 | 405 | // Only do this if the user has permission to execute this query. |
@@ -400,8 +408,7 @@ discard block |
||
400 | 408 | $context['table_info']['custom_index_length'] = $row['Data_length'] + $row['Index_length']; |
401 | 409 | $smcFunc['db_free_result']($request); |
402 | 410 | } |
403 | - } |
|
404 | - elseif ($db_type == 'postgresql') |
|
411 | + } elseif ($db_type == 'postgresql') |
|
405 | 412 | { |
406 | 413 | // In order to report the sizes correctly we need to perform vacuum (optimize) on the tables we will be using. |
407 | 414 | //db_extend(); |
@@ -443,38 +450,38 @@ discard block |
||
443 | 450 | $context['table_info']['data_length'] = (int) $row['table_size']; |
444 | 451 | $context['table_info']['index_length'] = (int) $row['index_size']; |
445 | 452 | $context['table_info']['fulltext_length'] = (int) $row['index_size']; |
446 | - } |
|
447 | - elseif ($row['indexname'] == $db_prefix . 'log_search_words') |
|
453 | + } elseif ($row['indexname'] == $db_prefix . 'log_search_words') |
|
448 | 454 | { |
449 | 455 | $context['table_info']['index_length'] = (int) $row['index_size']; |
450 | 456 | $context['table_info']['custom_index_length'] = (int) $row['index_size']; |
451 | 457 | } |
452 | 458 | } |
453 | 459 | $smcFunc['db_free_result']($request); |
454 | - } |
|
455 | - else |
|
456 | - // Didn't work for some reason... |
|
460 | + } else { |
|
461 | + // Didn't work for some reason... |
|
457 | 462 | $context['table_info'] = array( |
458 | 463 | 'data_length' => $txt['not_applicable'], |
459 | 464 | 'index_length' => $txt['not_applicable'], |
460 | 465 | 'fulltext_length' => $txt['not_applicable'], |
461 | 466 | 'custom_index_length' => $txt['not_applicable'], |
462 | 467 | ); |
463 | - } |
|
464 | - else |
|
465 | - $context['table_info'] = array( |
|
468 | + } |
|
469 | + } else { |
|
470 | + $context['table_info'] = array( |
|
466 | 471 | 'data_length' => $txt['not_applicable'], |
467 | 472 | 'index_length' => $txt['not_applicable'], |
468 | 473 | 'fulltext_length' => $txt['not_applicable'], |
469 | 474 | 'custom_index_length' => $txt['not_applicable'], |
470 | 475 | ); |
476 | + } |
|
471 | 477 | |
472 | 478 | // Format the data and index length in kilobytes. |
473 | 479 | foreach ($context['table_info'] as $type => $size) |
474 | 480 | { |
475 | 481 | // If it's not numeric then just break. This database engine doesn't support size. |
476 | - if (!is_numeric($size)) |
|
477 | - break; |
|
482 | + if (!is_numeric($size)) { |
|
483 | + break; |
|
484 | + } |
|
478 | 485 | |
479 | 486 | $context['table_info'][$type] = comma_format($context['table_info'][$type] / 1024) . ' ' . $txt['search_method_kilobytes']; |
480 | 487 | } |
@@ -503,8 +510,9 @@ discard block |
||
503 | 510 | |
504 | 511 | // Scotty, we need more time... |
505 | 512 | @set_time_limit(600); |
506 | - if (function_exists('apache_reset_timeout')) |
|
507 | - @apache_reset_timeout(); |
|
513 | + if (function_exists('apache_reset_timeout')) { |
|
514 | + @apache_reset_timeout(); |
|
515 | + } |
|
508 | 516 | |
509 | 517 | $context[$context['admin_menu_name']]['current_subsection'] = 'method'; |
510 | 518 | $context['page_title'] = $txt['search_index_custom']; |
@@ -534,8 +542,7 @@ discard block |
||
534 | 542 | $context['start'] = (int) $context['index_settings']['resume_at']; |
535 | 543 | unset($context['index_settings']['resume_at']); |
536 | 544 | $context['step'] = 1; |
537 | - } |
|
538 | - else |
|
545 | + } else |
|
539 | 546 | { |
540 | 547 | $context['index_settings'] = array( |
541 | 548 | 'bytes_per_word' => isset($_REQUEST['bytes_per_word']) && isset($index_properties[$_REQUEST['bytes_per_word']]) ? (int) $_REQUEST['bytes_per_word'] : 2, |
@@ -544,12 +551,14 @@ discard block |
||
544 | 551 | $context['step'] = isset($_REQUEST['step']) ? (int) $_REQUEST['step'] : 0; |
545 | 552 | |
546 | 553 | // admin timeouts are painful when building these long indexes - but only if we actually have such things enabled |
547 | - if (empty($modSettings['securityDisable']) && $_SESSION['admin_time'] + 3300 < time() && $context['step'] >= 1) |
|
548 | - $_SESSION['admin_time'] = time(); |
|
554 | + if (empty($modSettings['securityDisable']) && $_SESSION['admin_time'] + 3300 < time() && $context['step'] >= 1) { |
|
555 | + $_SESSION['admin_time'] = time(); |
|
556 | + } |
|
549 | 557 | } |
550 | 558 | |
551 | - if ($context['step'] !== 0) |
|
552 | - checkSession('request'); |
|
559 | + if ($context['step'] !== 0) { |
|
560 | + checkSession('request'); |
|
561 | + } |
|
553 | 562 | |
554 | 563 | // Step 0: let the user determine how they like their index. |
555 | 564 | if ($context['step'] === 0) |
@@ -578,12 +587,14 @@ discard block |
||
578 | 587 | $smcFunc['db_create_word_search']($index_properties[$context['index_settings']['bytes_per_word']]['column_definition']); |
579 | 588 | |
580 | 589 | // Temporarily switch back to not using a search index. |
581 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') |
|
582 | - updateSettings(array('search_index' => '')); |
|
590 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') { |
|
591 | + updateSettings(array('search_index' => '')); |
|
592 | + } |
|
583 | 593 | |
584 | 594 | // Don't let simultanious processes be updating the search index. |
585 | - if (!empty($modSettings['search_custom_index_config'])) |
|
586 | - updateSettings(array('search_custom_index_config' => '')); |
|
595 | + if (!empty($modSettings['search_custom_index_config'])) { |
|
596 | + updateSettings(array('search_custom_index_config' => '')); |
|
597 | + } |
|
587 | 598 | } |
588 | 599 | |
589 | 600 | $num_messages = array( |
@@ -599,16 +610,16 @@ discard block |
||
599 | 610 | 'starting_id' => $context['start'], |
600 | 611 | ) |
601 | 612 | ); |
602 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
603 | - $num_messages[empty($row['todo']) ? 'done' : 'todo'] = $row['num_messages']; |
|
613 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
614 | + $num_messages[empty($row['todo']) ? 'done' : 'todo'] = $row['num_messages']; |
|
615 | + } |
|
604 | 616 | |
605 | 617 | if (empty($num_messages['todo'])) |
606 | 618 | { |
607 | 619 | $context['step'] = 2; |
608 | 620 | $context['percentage'] = 80; |
609 | 621 | $context['start'] = 0; |
610 | - } |
|
611 | - else |
|
622 | + } else |
|
612 | 623 | { |
613 | 624 | // Number of seconds before the next step. |
614 | 625 | $stop = time() + 3; |
@@ -649,21 +660,22 @@ discard block |
||
649 | 660 | |
650 | 661 | $context['start'] += $forced_break ? $number_processed : $messages_per_batch; |
651 | 662 | |
652 | - if (!empty($inserts)) |
|
653 | - $smcFunc['db_insert']('ignore', |
|
663 | + if (!empty($inserts)) { |
|
664 | + $smcFunc['db_insert']('ignore', |
|
654 | 665 | '{db_prefix}log_search_words', |
655 | 666 | array('id_word' => 'int', 'id_msg' => 'int'), |
656 | 667 | $inserts, |
657 | 668 | array('id_word', 'id_msg') |
658 | 669 | ); |
670 | + } |
|
659 | 671 | if ($num_messages['todo'] === 0) |
660 | 672 | { |
661 | 673 | $context['step'] = 2; |
662 | 674 | $context['start'] = 0; |
663 | 675 | break; |
676 | + } else { |
|
677 | + updateSettings(array('search_custom_index_resume' => json_encode(array_merge($context['index_settings'], array('resume_at' => $context['start']))))); |
|
664 | 678 | } |
665 | - else |
|
666 | - updateSettings(array('search_custom_index_resume' => json_encode(array_merge($context['index_settings'], array('resume_at' => $context['start']))))); |
|
667 | 679 | } |
668 | 680 | |
669 | 681 | // Since there are still two steps to go, 80% is the maximum here. |
@@ -674,9 +686,9 @@ discard block |
||
674 | 686 | // Step 2: removing the words that occur too often and are of no use. |
675 | 687 | elseif ($context['step'] === 2) |
676 | 688 | { |
677 | - if ($context['index_settings']['bytes_per_word'] < 4) |
|
678 | - $context['step'] = 3; |
|
679 | - else |
|
689 | + if ($context['index_settings']['bytes_per_word'] < 4) { |
|
690 | + $context['step'] = 3; |
|
691 | + } else |
|
680 | 692 | { |
681 | 693 | $stop_words = $context['start'] === 0 || empty($modSettings['search_stopwords']) ? array() : explode(',', $modSettings['search_stopwords']); |
682 | 694 | $stop = time() + 3; |
@@ -697,20 +709,22 @@ discard block |
||
697 | 709 | 'minimum_messages' => $max_messages, |
698 | 710 | ) |
699 | 711 | ); |
700 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
701 | - $stop_words[] = $row['id_word']; |
|
712 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
713 | + $stop_words[] = $row['id_word']; |
|
714 | + } |
|
702 | 715 | $smcFunc['db_free_result']($request); |
703 | 716 | |
704 | 717 | updateSettings(array('search_stopwords' => implode(',', $stop_words))); |
705 | 718 | |
706 | - if (!empty($stop_words)) |
|
707 | - $smcFunc['db_query']('', ' |
|
719 | + if (!empty($stop_words)) { |
|
720 | + $smcFunc['db_query']('', ' |
|
708 | 721 | DELETE FROM {db_prefix}log_search_words |
709 | 722 | WHERE id_word in ({array_int:stop_words})', |
710 | 723 | array( |
711 | 724 | 'stop_words' => $stop_words, |
712 | 725 | ) |
713 | 726 | ); |
727 | + } |
|
714 | 728 | |
715 | 729 | $context['start'] += $index_properties[$context['index_settings']['bytes_per_word']]['step_size']; |
716 | 730 | if ($context['start'] > $index_properties[$context['index_settings']['bytes_per_word']]['max_size']) |
@@ -771,8 +785,9 @@ discard block |
||
771 | 785 | $searchAPI = new $search_class_name(); |
772 | 786 | |
773 | 787 | // No Support? NEXT! |
774 | - if (!$searchAPI->is_supported) |
|
775 | - continue; |
|
788 | + if (!$searchAPI->is_supported) { |
|
789 | + continue; |
|
790 | + } |
|
776 | 791 | |
777 | 792 | $apis[$index_name] = array( |
778 | 793 | 'filename' => $file, |
@@ -819,10 +834,10 @@ discard block |
||
819 | 834 | 'messages_ftx' => $db_prefix . 'messages_ftx', |
820 | 835 | ) |
821 | 836 | ); |
822 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
823 | - $context['fulltext_index'][] = $row['indexname']; |
|
824 | - } |
|
825 | - else |
|
837 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
838 | + $context['fulltext_index'][] = $row['indexname']; |
|
839 | + } |
|
840 | + } else |
|
826 | 841 | { |
827 | 842 | $request = $smcFunc['db_query']('', ' |
828 | 843 | SHOW INDEX |
@@ -833,17 +848,19 @@ discard block |
||
833 | 848 | $context['fulltext_index'] = ''; |
834 | 849 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
835 | 850 | { |
836 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
837 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
851 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
852 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
838 | 853 | $context['fulltext_index'][] = $row['Key_name']; |
854 | + } |
|
839 | 855 | $smcFunc['db_free_result']($request); |
840 | 856 | |
841 | - if (is_array($context['fulltext_index'])) |
|
842 | - $context['fulltext_index'] = array_unique($context['fulltext_index']); |
|
857 | + if (is_array($context['fulltext_index'])) { |
|
858 | + $context['fulltext_index'] = array_unique($context['fulltext_index']); |
|
859 | + } |
|
843 | 860 | } |
844 | 861 | |
845 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
846 | - $request = $smcFunc['db_query']('', ' |
|
862 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
863 | + $request = $smcFunc['db_query']('', ' |
|
847 | 864 | SHOW TABLE STATUS |
848 | 865 | FROM {string:database_name} |
849 | 866 | LIKE {string:table_name}', |
@@ -852,20 +869,22 @@ discard block |
||
852 | 869 | 'table_name' => str_replace('_', '\_', $match[2]) . 'messages', |
853 | 870 | ) |
854 | 871 | ); |
855 | - else |
|
856 | - $request = $smcFunc['db_query']('', ' |
|
872 | + } else { |
|
873 | + $request = $smcFunc['db_query']('', ' |
|
857 | 874 | SHOW TABLE STATUS |
858 | 875 | LIKE {string:table_name}', |
859 | 876 | array( |
860 | 877 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'messages', |
861 | 878 | ) |
862 | 879 | ); |
880 | + } |
|
863 | 881 | |
864 | 882 | if ($request !== false) |
865 | 883 | { |
866 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
867 | - if (isset($row['Engine']) && strtolower($row['Engine']) != 'myisam' && !(strtolower($row['Engine']) == 'innodb' && version_compare($smcFunc['db_get_version'], '5.6.4', '>='))) |
|
884 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
885 | + if (isset($row['Engine']) && strtolower($row['Engine']) != 'myisam' && !(strtolower($row['Engine']) == 'innodb' && version_compare($smcFunc['db_get_version'], '5.6.4', '>='))) |
|
868 | 886 | $context['cannot_create_fulltext'] = true; |
887 | + } |
|
869 | 888 | $smcFunc['db_free_result']($request); |
870 | 889 | } |
871 | 890 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Add the functions implemented in this file to the $smcFunc array. |
@@ -23,8 +24,8 @@ discard block |
||
23 | 24 | { |
24 | 25 | global $smcFunc; |
25 | 26 | |
26 | - if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') |
|
27 | - $smcFunc += array( |
|
27 | + if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') { |
|
28 | + $smcFunc += array( |
|
28 | 29 | 'db_backup_table' => 'smf_db_backup_table', |
29 | 30 | 'db_optimize_table' => 'smf_db_optimize_table', |
30 | 31 | 'db_table_sql' => 'smf_db_table_sql', |
@@ -32,7 +33,8 @@ discard block |
||
32 | 33 | 'db_get_version' => 'smf_db_get_version', |
33 | 34 | 'db_get_engine' => 'smf_db_get_engine', |
34 | 35 | ); |
35 | -} |
|
36 | + } |
|
37 | + } |
|
36 | 38 | |
37 | 39 | /** |
38 | 40 | * Backup $table to $backup_table. |
@@ -74,8 +76,9 @@ discard block |
||
74 | 76 | )); |
75 | 77 | |
76 | 78 | // Old school or no school? |
77 | - if ($request) |
|
78 | - return $request; |
|
79 | + if ($request) { |
|
80 | + return $request; |
|
81 | + } |
|
79 | 82 | } |
80 | 83 | |
81 | 84 | // At this point, the quick method failed. |
@@ -99,8 +102,9 @@ discard block |
||
99 | 102 | foreach ($create as $k => $l) |
100 | 103 | { |
101 | 104 | // Get the name of the auto_increment column. |
102 | - if (strpos($l, 'auto_increment')) |
|
103 | - $auto_inc = trim($l); |
|
105 | + if (strpos($l, 'auto_increment')) { |
|
106 | + $auto_inc = trim($l); |
|
107 | + } |
|
104 | 108 | |
105 | 109 | // For the engine type, see if we can work out what it is. |
106 | 110 | if (strpos($l, 'ENGINE') !== false || strpos($l, 'TYPE') !== false) |
@@ -108,30 +112,36 @@ discard block |
||
108 | 112 | // Extract the engine type. |
109 | 113 | preg_match('~(ENGINE|TYPE)=(\w+)(\sDEFAULT)?(\sCHARSET=(\w+))?(\sCOLLATE=(\w+))?~', $l, $match); |
110 | 114 | |
111 | - if (!empty($match[1])) |
|
112 | - $engine = $match[1]; |
|
115 | + if (!empty($match[1])) { |
|
116 | + $engine = $match[1]; |
|
117 | + } |
|
113 | 118 | |
114 | - if (!empty($match[2])) |
|
115 | - $engine = $match[2]; |
|
119 | + if (!empty($match[2])) { |
|
120 | + $engine = $match[2]; |
|
121 | + } |
|
116 | 122 | |
117 | - if (!empty($match[5])) |
|
118 | - $charset = $match[5]; |
|
123 | + if (!empty($match[5])) { |
|
124 | + $charset = $match[5]; |
|
125 | + } |
|
119 | 126 | |
120 | - if (!empty($match[7])) |
|
121 | - $collate = $match[7]; |
|
127 | + if (!empty($match[7])) { |
|
128 | + $collate = $match[7]; |
|
129 | + } |
|
122 | 130 | } |
123 | 131 | |
124 | 132 | // Skip everything but keys... |
125 | - if (strpos($l, 'KEY') === false) |
|
126 | - unset($create[$k]); |
|
133 | + if (strpos($l, 'KEY') === false) { |
|
134 | + unset($create[$k]); |
|
135 | + } |
|
127 | 136 | } |
128 | 137 | |
129 | - if (!empty($create)) |
|
130 | - $create = '( |
|
138 | + if (!empty($create)) { |
|
139 | + $create = '( |
|
131 | 140 | ' . implode(' |
132 | 141 | ', $create) . ')'; |
133 | - else |
|
134 | - $create = ''; |
|
142 | + } else { |
|
143 | + $create = ''; |
|
144 | + } |
|
135 | 145 | |
136 | 146 | $request = $smcFunc['db_query']('', ' |
137 | 147 | CREATE TABLE {raw:backup_table} {raw:create} |
@@ -150,8 +160,9 @@ discard block |
||
150 | 160 | |
151 | 161 | if ($auto_inc != '') |
152 | 162 | { |
153 | - if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') |
|
154 | - $auto_inc = substr($auto_inc, 0, -1); |
|
163 | + if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') { |
|
164 | + $auto_inc = substr($auto_inc, 0, -1); |
|
165 | + } |
|
155 | 166 | |
156 | 167 | $smcFunc['db_query']('', ' |
157 | 168 | ALTER TABLE {raw:backup_table} |
@@ -195,8 +206,9 @@ discard block |
||
195 | 206 | 'table' => $table, |
196 | 207 | ) |
197 | 208 | ); |
198 | - if (!$request) |
|
199 | - return -1; |
|
209 | + if (!$request) { |
|
210 | + return -1; |
|
211 | + } |
|
200 | 212 | |
201 | 213 | // How much left? |
202 | 214 | $request = $smcFunc['db_query']('', ' |
@@ -239,8 +251,9 @@ discard block |
||
239 | 251 | ) |
240 | 252 | ); |
241 | 253 | $tables = array(); |
242 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
243 | - $tables[] = $row[0]; |
|
254 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
255 | + $tables[] = $row[0]; |
|
256 | + } |
|
244 | 257 | $smcFunc['db_free_result']($request); |
245 | 258 | |
246 | 259 | return $tables; |
@@ -284,8 +297,9 @@ discard block |
||
284 | 297 | if (!empty($row['Default']) || $row['Null'] !== 'YES') |
285 | 298 | { |
286 | 299 | // Make a special case of auto-timestamp. |
287 | - if ($row['Default'] == 'CURRENT_TIMESTAMP') |
|
288 | - $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
300 | + if ($row['Default'] == 'CURRENT_TIMESTAMP') { |
|
301 | + $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
302 | + } |
|
289 | 303 | // Text shouldn't have a default. |
290 | 304 | elseif ($row['Default'] !== null) |
291 | 305 | { |
@@ -320,14 +334,16 @@ discard block |
||
320 | 334 | $row['Key_name'] = $row['Key_name'] == 'PRIMARY' ? 'PRIMARY KEY' : (empty($row['Non_unique']) ? 'UNIQUE ' : ($row['Comment'] == 'FULLTEXT' || (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT') ? 'FULLTEXT ' : 'KEY ')) . '`' . $row['Key_name'] . '`'; |
321 | 335 | |
322 | 336 | // Is this the first column in the index? |
323 | - if (empty($indexes[$row['Key_name']])) |
|
324 | - $indexes[$row['Key_name']] = array(); |
|
337 | + if (empty($indexes[$row['Key_name']])) { |
|
338 | + $indexes[$row['Key_name']] = array(); |
|
339 | + } |
|
325 | 340 | |
326 | 341 | // A sub part, like only indexing 15 characters of a varchar. |
327 | - if (!empty($row['Sub_part'])) |
|
328 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
329 | - else |
|
330 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
342 | + if (!empty($row['Sub_part'])) { |
|
343 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
344 | + } else { |
|
345 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
346 | + } |
|
331 | 347 | } |
332 | 348 | $smcFunc['db_free_result']($result); |
333 | 349 | |
@@ -365,8 +381,9 @@ discard block |
||
365 | 381 | { |
366 | 382 | static $ver; |
367 | 383 | |
368 | - if (!empty($ver)) |
|
369 | - return $ver; |
|
384 | + if (!empty($ver)) { |
|
385 | + return $ver; |
|
386 | + } |
|
370 | 387 | |
371 | 388 | global $smcFunc; |
372 | 389 | |
@@ -391,8 +408,9 @@ discard block |
||
391 | 408 | global $smcFunc; |
392 | 409 | static $db_type; |
393 | 410 | |
394 | - if (!empty($db_type)) |
|
395 | - return $db_type; |
|
411 | + if (!empty($db_type)) { |
|
412 | + return $db_type; |
|
413 | + } |
|
396 | 414 | |
397 | 415 | $request = $smcFunc['db_query']('', 'SELECT @@version_comment'); |
398 | 416 | list ($comment) = $smcFunc['db_fetch_row']($request); |
@@ -401,13 +419,15 @@ discard block |
||
401 | 419 | // Skip these if we don't have a comment. |
402 | 420 | if (!empty($comment)) |
403 | 421 | { |
404 | - if (stripos($comment, 'percona') !== false) |
|
405 | - return 'Percona'; |
|
406 | - if (stripos($comment, 'mariadb') !== false) |
|
407 | - return 'MariaDB'; |
|
422 | + if (stripos($comment, 'percona') !== false) { |
|
423 | + return 'Percona'; |
|
424 | + } |
|
425 | + if (stripos($comment, 'mariadb') !== false) { |
|
426 | + return 'MariaDB'; |
|
427 | + } |
|
428 | + } else { |
|
429 | + return 'fail'; |
|
408 | 430 | } |
409 | - else |
|
410 | - return 'fail'; |
|
411 | 431 | |
412 | 432 | return 'MySQL'; |
413 | 433 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Sets and call a function based on the given subaction. Acts as a dispatcher function. |
@@ -54,8 +55,9 @@ discard block |
||
54 | 55 | ); |
55 | 56 | |
56 | 57 | // This comes under the umbrella of moderating posts. |
57 | - if ($context['report_type'] == 'members' || $user_info['mod_cache']['bq'] == '0=1') |
|
58 | - isAllowedTo('moderate_forum'); |
|
58 | + if ($context['report_type'] == 'members' || $user_info['mod_cache']['bq'] == '0=1') { |
|
59 | + isAllowedTo('moderate_forum'); |
|
60 | + } |
|
59 | 61 | |
60 | 62 | $subActions = array( |
61 | 63 | 'show' => 'ShowReports', |
@@ -70,11 +72,11 @@ discard block |
||
70 | 72 | call_integration_hook('integrate_reported_' . $context['report_type'], array(&$subActions)); |
71 | 73 | |
72 | 74 | // By default we call the open sub-action. |
73 | - if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) |
|
74 | - $context['sub_action'] = $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_REQUEST['sa']), ENT_QUOTES); |
|
75 | - |
|
76 | - else |
|
77 | - $context['sub_action'] = 'show'; |
|
75 | + if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) { |
|
76 | + $context['sub_action'] = $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_REQUEST['sa']), ENT_QUOTES); |
|
77 | + } else { |
|
78 | + $context['sub_action'] = 'show'; |
|
79 | + } |
|
78 | 80 | |
79 | 81 | // Hi Ho Silver Away! |
80 | 82 | call_helper($subActions[$context['sub_action']]); |
@@ -116,11 +118,13 @@ discard block |
||
116 | 118 | |
117 | 119 | // All the ones to update... |
118 | 120 | $toClose = array(); |
119 | - foreach ($_POST['close'] as $rid) |
|
120 | - $toClose[] = (int) $rid; |
|
121 | + foreach ($_POST['close'] as $rid) { |
|
122 | + $toClose[] = (int) $rid; |
|
123 | + } |
|
121 | 124 | |
122 | - if (!empty($toClose)) |
|
123 | - updateReport('closed', 1, $toClose); |
|
125 | + if (!empty($toClose)) { |
|
126 | + updateReport('closed', 1, $toClose); |
|
127 | + } |
|
124 | 128 | |
125 | 129 | // Set the confirmation message. |
126 | 130 | $_SESSION['rc_confirmation'] = 'close_all'; |
@@ -178,8 +182,9 @@ discard block |
||
178 | 182 | $reportComments = array(); |
179 | 183 | |
180 | 184 | // Have to at least give us something to work with. |
181 | - if (empty($_REQUEST['rid'])) |
|
182 | - fatal_lang_error('mc_reportedp_none_found'); |
|
185 | + if (empty($_REQUEST['rid'])) { |
|
186 | + fatal_lang_error('mc_reportedp_none_found'); |
|
187 | + } |
|
183 | 188 | |
184 | 189 | // Integers only please |
185 | 190 | $report_id = (int) $_REQUEST['rid']; |
@@ -187,8 +192,9 @@ discard block |
||
187 | 192 | // Get the report details. |
188 | 193 | $report = getReportDetails($report_id); |
189 | 194 | |
190 | - if (!$report) |
|
191 | - fatal_lang_error('mc_no_modreport_found'); |
|
195 | + if (!$report) { |
|
196 | + fatal_lang_error('mc_no_modreport_found'); |
|
197 | + } |
|
192 | 198 | |
193 | 199 | // Build the report data - basic details first, then extra stuff based on the type |
194 | 200 | $context['report'] = array( |
@@ -214,8 +220,7 @@ discard block |
||
214 | 220 | 'href' => $scripturl . '?action=profile;u=' . $report['id_user'], |
215 | 221 | ), |
216 | 222 | ); |
217 | - } |
|
218 | - else |
|
223 | + } else |
|
219 | 224 | { |
220 | 225 | $extraDetails = array( |
221 | 226 | 'topic_id' => $report['id_topic'], |
@@ -238,8 +243,9 @@ discard block |
||
238 | 243 | |
239 | 244 | $reportComments = getReportComments($report_id); |
240 | 245 | |
241 | - if (!empty($reportComments)) |
|
242 | - $context['report'] = array_merge($context['report'], $reportComments); |
|
246 | + if (!empty($reportComments)) { |
|
247 | + $context['report'] = array_merge($context['report'], $reportComments); |
|
248 | + } |
|
243 | 249 | |
244 | 250 | // What have the other moderators done to this message? |
245 | 251 | require_once($sourcedir . '/Modlog.php'); |
@@ -260,8 +266,7 @@ discard block |
||
260 | 266 | 1, |
261 | 267 | true, |
262 | 268 | ); |
263 | - } |
|
264 | - else |
|
269 | + } else |
|
265 | 270 | { |
266 | 271 | $params = array( |
267 | 272 | 'lm.id_topic = {int:id_topic} |
@@ -361,16 +366,16 @@ discard block |
||
361 | 366 | createList($listOptions); |
362 | 367 | |
363 | 368 | // Make sure to get the correct tab selected. |
364 | - if ($context['report']['closed']) |
|
365 | - $context[$context['moderation_menu_name']]['current_subsection'] = 'closed'; |
|
369 | + if ($context['report']['closed']) { |
|
370 | + $context[$context['moderation_menu_name']]['current_subsection'] = 'closed'; |
|
371 | + } |
|
366 | 372 | |
367 | 373 | // Finally we are done :P |
368 | 374 | if ($context['report_type'] == 'members') |
369 | 375 | { |
370 | 376 | $context['page_title'] = sprintf($txt['mc_viewmemberreport'], $context['report']['user']['name']); |
371 | 377 | $context['sub_template'] = 'viewmemberreport'; |
372 | - } |
|
373 | - else |
|
378 | + } else |
|
374 | 379 | { |
375 | 380 | $context['page_title'] = sprintf($txt['mc_viewmodreport'], $context['report']['subject'], $context['report']['author']['name']); |
376 | 381 | $context['sub_template'] = 'viewmodreport'; |
@@ -395,8 +400,9 @@ discard block |
||
395 | 400 | $comment = array(); |
396 | 401 | |
397 | 402 | // The report ID is a must. |
398 | - if (empty($_REQUEST['rid'])) |
|
399 | - fatal_lang_error('mc_reportedp_none_found'); |
|
403 | + if (empty($_REQUEST['rid'])) { |
|
404 | + fatal_lang_error('mc_reportedp_none_found'); |
|
405 | + } |
|
400 | 406 | |
401 | 407 | // Integers only please. |
402 | 408 | $report_id = (int) $_REQUEST['rid']; |
@@ -421,8 +427,9 @@ discard block |
||
421 | 427 | checkSession('get'); |
422 | 428 | validateToken('mod-reportC-delete', 'get'); |
423 | 429 | |
424 | - if (empty($_REQUEST['mid'])) |
|
425 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
430 | + if (empty($_REQUEST['mid'])) { |
|
431 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
432 | + } |
|
426 | 433 | |
427 | 434 | $comment_id = (int) $_REQUEST['mid']; |
428 | 435 | |
@@ -430,15 +437,17 @@ discard block |
||
430 | 437 | $comment = getCommentModDetails($comment_id); |
431 | 438 | |
432 | 439 | // Perhaps somebody else already deleted this fine gem... |
433 | - if (empty($comment)) |
|
434 | - fatal_lang_error('report_action_message_delete_issue'); |
|
440 | + if (empty($comment)) { |
|
441 | + fatal_lang_error('report_action_message_delete_issue'); |
|
442 | + } |
|
435 | 443 | |
436 | 444 | // Can you actually do this? |
437 | 445 | $comment_owner = $user_info['id'] == $comment['id_member']; |
438 | 446 | |
439 | 447 | // Nope! sorry. |
440 | - if (!allowedTo('admin_forum') && !$comment_owner) |
|
441 | - fatal_lang_error('report_action_message_delete_cannot'); |
|
448 | + if (!allowedTo('admin_forum') && !$comment_owner) { |
|
449 | + fatal_lang_error('report_action_message_delete_cannot'); |
|
450 | + } |
|
442 | 451 | |
443 | 452 | // All good! |
444 | 453 | deleteModComment($comment_id); |
@@ -465,11 +474,13 @@ discard block |
||
465 | 474 | checkSession(isset($_REQUEST['save']) ? 'post' : 'get'); |
466 | 475 | |
467 | 476 | // The report ID is a must. |
468 | - if (empty($_REQUEST['rid'])) |
|
469 | - fatal_lang_error('mc_reportedp_none_found'); |
|
477 | + if (empty($_REQUEST['rid'])) { |
|
478 | + fatal_lang_error('mc_reportedp_none_found'); |
|
479 | + } |
|
470 | 480 | |
471 | - if (empty($_REQUEST['mid'])) |
|
472 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
481 | + if (empty($_REQUEST['mid'])) { |
|
482 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
483 | + } |
|
473 | 484 | |
474 | 485 | // Integers only please. |
475 | 486 | $context['report_id'] = (int) $_REQUEST['rid']; |
@@ -477,8 +488,9 @@ discard block |
||
477 | 488 | |
478 | 489 | $context['comment'] = getCommentModDetails($context['comment_id']); |
479 | 490 | |
480 | - if (empty($context['comment'])) |
|
481 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
491 | + if (empty($context['comment'])) { |
|
492 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
493 | + } |
|
482 | 494 | |
483 | 495 | // Set up the comforting bits... |
484 | 496 | $context['page_title'] = $txt['mc_reported_posts']; |
@@ -489,15 +501,17 @@ discard block |
||
489 | 501 | validateToken('mod-reportC-edit'); |
490 | 502 | |
491 | 503 | // Make sure there is some data to edit on the DB. |
492 | - if (empty($context['comment'])) |
|
493 | - fatal_lang_error('report_action_message_edit_issue'); |
|
504 | + if (empty($context['comment'])) { |
|
505 | + fatal_lang_error('report_action_message_edit_issue'); |
|
506 | + } |
|
494 | 507 | |
495 | 508 | // Still there, good, now lets see if you can actually edit it... |
496 | 509 | $comment_owner = $user_info['id'] == $context['comment']['id_member']; |
497 | 510 | |
498 | 511 | // So, you aren't neither an admin or the comment owner huh? that's too bad. |
499 | - if (!allowedTo('admin_forum') && !$comment_owner) |
|
500 | - fatal_lang_error('report_action_message_edit_cannot'); |
|
512 | + if (!allowedTo('admin_forum') && !$comment_owner) { |
|
513 | + fatal_lang_error('report_action_message_edit_cannot'); |
|
514 | + } |
|
501 | 515 | |
502 | 516 | // All good! |
503 | 517 | $edited_comment = trim($smcFunc['htmlspecialchars']($_POST['mod_comment'])); |
@@ -523,8 +537,9 @@ discard block |
||
523 | 537 | checkSession('get'); |
524 | 538 | |
525 | 539 | // We need to do something! |
526 | - if (empty($_GET['rid']) && (!isset($_GET['ignore']) || !isset($_GET['closed']))) |
|
527 | - fatal_lang_error('mc_reportedp_none_found'); |
|
540 | + if (empty($_GET['rid']) && (!isset($_GET['ignore']) || !isset($_GET['closed']))) { |
|
541 | + fatal_lang_error('mc_reportedp_none_found'); |
|
542 | + } |
|
528 | 543 | |
529 | 544 | // What are we gonna do? |
530 | 545 | $action = isset($_GET['ignore']) ? 'ignore' : 'closed'; |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 3 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Check if the current directory is still valid or not. |
@@ -28,22 +29,24 @@ discard block |
||
28 | 29 | global $boarddir, $modSettings, $context; |
29 | 30 | |
30 | 31 | // Not pretty, but since we don't want folders created for every post. It'll do unless a better solution can be found. |
31 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') |
|
32 | - $doit = true; |
|
33 | - elseif (empty($modSettings['automanage_attachments'])) |
|
34 | - return; |
|
35 | - elseif (!isset($_FILES)) |
|
36 | - return; |
|
37 | - elseif (isset($_FILES['attachment'])) |
|
38 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
32 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') { |
|
33 | + $doit = true; |
|
34 | + } elseif (empty($modSettings['automanage_attachments'])) { |
|
35 | + return; |
|
36 | + } elseif (!isset($_FILES)) { |
|
37 | + return; |
|
38 | + } elseif (isset($_FILES['attachment'])) { |
|
39 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
39 | 40 | if (!empty($dummy)) |
40 | 41 | { |
41 | 42 | $doit = true; |
43 | + } |
|
42 | 44 | break; |
43 | 45 | } |
44 | 46 | |
45 | - if (!isset($doit)) |
|
46 | - return; |
|
47 | + if (!isset($doit)) { |
|
48 | + return; |
|
49 | + } |
|
47 | 50 | |
48 | 51 | $year = date('Y'); |
49 | 52 | $month = date('m'); |
@@ -55,21 +58,25 @@ discard block |
||
55 | 58 | |
56 | 59 | if (!empty($modSettings['attachment_basedirectories']) && !empty($modSettings['use_subdirectories_for_attachments'])) |
57 | 60 | { |
58 | - if (!is_array($modSettings['attachment_basedirectories'])) |
|
59 | - $modSettings['attachment_basedirectories'] = smf_json_decode($modSettings['attachment_basedirectories'], true); |
|
61 | + if (!is_array($modSettings['attachment_basedirectories'])) { |
|
62 | + $modSettings['attachment_basedirectories'] = smf_json_decode($modSettings['attachment_basedirectories'], true); |
|
63 | + } |
|
60 | 64 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
65 | + } else { |
|
66 | + $base_dir = 0; |
|
61 | 67 | } |
62 | - else |
|
63 | - $base_dir = 0; |
|
64 | 68 | |
65 | 69 | if ($modSettings['automanage_attachments'] == 1) |
66 | 70 | { |
67 | - if (!isset($modSettings['last_attachments_directory'])) |
|
68 | - $modSettings['last_attachments_directory'] = array(); |
|
69 | - if (!is_array($modSettings['last_attachments_directory'])) |
|
70 | - $modSettings['last_attachments_directory'] = smf_json_decode($modSettings['last_attachments_directory'], true); |
|
71 | - if (!isset($modSettings['last_attachments_directory'][$base_dir])) |
|
72 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
71 | + if (!isset($modSettings['last_attachments_directory'])) { |
|
72 | + $modSettings['last_attachments_directory'] = array(); |
|
73 | + } |
|
74 | + if (!is_array($modSettings['last_attachments_directory'])) { |
|
75 | + $modSettings['last_attachments_directory'] = smf_json_decode($modSettings['last_attachments_directory'], true); |
|
76 | + } |
|
77 | + if (!isset($modSettings['last_attachments_directory'][$base_dir])) { |
|
78 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
79 | + } |
|
73 | 80 | } |
74 | 81 | |
75 | 82 | $basedirectory = (!empty($modSettings['use_subdirectories_for_attachments']) ? ($modSettings['basedirectory_for_attachments']) : $boarddir); |
@@ -98,12 +105,14 @@ discard block |
||
98 | 105 | $updir = ''; |
99 | 106 | } |
100 | 107 | |
101 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
102 | - $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
103 | - if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) |
|
104 | - $outputCreation = automanage_attachments_create_directory($updir); |
|
105 | - elseif (in_array($updir, $modSettings['attachmentUploadDir'])) |
|
106 | - $outputCreation = true; |
|
108 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
109 | + $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
110 | + } |
|
111 | + if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) { |
|
112 | + $outputCreation = automanage_attachments_create_directory($updir); |
|
113 | + } elseif (in_array($updir, $modSettings['attachmentUploadDir'])) { |
|
114 | + $outputCreation = true; |
|
115 | + } |
|
107 | 116 | |
108 | 117 | if ($outputCreation) |
109 | 118 | { |
@@ -140,8 +149,9 @@ discard block |
||
140 | 149 | $count = count($tree); |
141 | 150 | |
142 | 151 | $directory = attachments_init_dir($tree, $count); |
143 | - if ($directory === false) |
|
144 | - return false; |
|
152 | + if ($directory === false) { |
|
153 | + return false; |
|
154 | + } |
|
145 | 155 | } |
146 | 156 | |
147 | 157 | $directory .= DIRECTORY_SEPARATOR . array_shift($tree); |
@@ -169,8 +179,9 @@ discard block |
||
169 | 179 | } |
170 | 180 | |
171 | 181 | // Everything seems fine...let's create the .htaccess |
172 | - if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) |
|
173 | - secureDirectory($updir, true); |
|
182 | + if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) { |
|
183 | + secureDirectory($updir, true); |
|
184 | + } |
|
174 | 185 | |
175 | 186 | $sep = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? '\/' : DIRECTORY_SEPARATOR; |
176 | 187 | $updir = rtrim($updir, $sep); |
@@ -202,8 +213,9 @@ discard block |
||
202 | 213 | { |
203 | 214 | global $modSettings, $boarddir; |
204 | 215 | |
205 | - if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) |
|
206 | - return; |
|
216 | + if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) { |
|
217 | + return; |
|
218 | + } |
|
207 | 219 | |
208 | 220 | $basedirectory = !empty($modSettings['use_subdirectories_for_attachments']) ? $modSettings['basedirectory_for_attachments'] : $boarddir; |
209 | 221 | // Just to be sure: I don't want directory separators at the end |
@@ -215,13 +227,14 @@ discard block |
||
215 | 227 | { |
216 | 228 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
217 | 229 | $base_dir = !empty($modSettings['automanage_attachments']) ? $base_dir : 0; |
230 | + } else { |
|
231 | + $base_dir = 0; |
|
218 | 232 | } |
219 | - else |
|
220 | - $base_dir = 0; |
|
221 | 233 | |
222 | 234 | // Get the last attachment directory for that base directory |
223 | - if (empty($modSettings['last_attachments_directory'][$base_dir])) |
|
224 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
235 | + if (empty($modSettings['last_attachments_directory'][$base_dir])) { |
|
236 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
237 | + } |
|
225 | 238 | // And increment it. |
226 | 239 | $modSettings['last_attachments_directory'][$base_dir]++; |
227 | 240 | |
@@ -236,10 +249,10 @@ discard block |
||
236 | 249 | $modSettings['last_attachments_directory'] = smf_json_decode($modSettings['last_attachments_directory'], true); |
237 | 250 | |
238 | 251 | return true; |
252 | + } else { |
|
253 | + return false; |
|
254 | + } |
|
239 | 255 | } |
240 | - else |
|
241 | - return false; |
|
242 | -} |
|
243 | 256 | |
244 | 257 | /** |
245 | 258 | * Split a path into a list of all directories and subdirectories |
@@ -257,12 +270,13 @@ discard block |
||
257 | 270 | * in Windows we need to explode for both \ and / |
258 | 271 | * while in linux should be safe to explode only for / (aka DIRECTORY_SEPARATOR) |
259 | 272 | */ |
260 | - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') |
|
261 | - $tree = preg_split('#[\\\/]#', $directory); |
|
262 | - else |
|
273 | + if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
|
274 | + $tree = preg_split('#[\\\/]#', $directory); |
|
275 | + } else |
|
263 | 276 | { |
264 | - if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) |
|
265 | - return false; |
|
277 | + if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) { |
|
278 | + return false; |
|
279 | + } |
|
266 | 280 | |
267 | 281 | $tree = explode(DIRECTORY_SEPARATOR, trim($directory, DIRECTORY_SEPARATOR)); |
268 | 282 | } |
@@ -286,10 +300,11 @@ discard block |
||
286 | 300 | //Better be sure that the first part of the path is actually a drive letter... |
287 | 301 | //...even if, I should check this in the admin page...isn't it? |
288 | 302 | //...NHAAA Let's leave space for users' complains! :P |
289 | - if (preg_match('/^[a-z]:$/i', $tree[0])) |
|
290 | - $directory = array_shift($tree); |
|
291 | - else |
|
292 | - return false; |
|
303 | + if (preg_match('/^[a-z]:$/i', $tree[0])) { |
|
304 | + $directory = array_shift($tree); |
|
305 | + } else { |
|
306 | + return false; |
|
307 | + } |
|
293 | 308 | |
294 | 309 | $count--; |
295 | 310 | } |
@@ -304,18 +319,20 @@ discard block |
||
304 | 319 | global $context, $modSettings, $smcFunc, $txt, $user_info; |
305 | 320 | |
306 | 321 | // Make sure we're uploading to the right place. |
307 | - if (!empty($modSettings['automanage_attachments'])) |
|
308 | - automanage_attachments_check_directory(); |
|
322 | + if (!empty($modSettings['automanage_attachments'])) { |
|
323 | + automanage_attachments_check_directory(); |
|
324 | + } |
|
309 | 325 | |
310 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
311 | - $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
326 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
327 | + $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
328 | + } |
|
312 | 329 | |
313 | 330 | $context['attach_dir'] = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']]; |
314 | 331 | |
315 | 332 | // Is the attachments folder actualy there? |
316 | - if (!empty($context['dir_creation_error'])) |
|
317 | - $initial_error = $context['dir_creation_error']; |
|
318 | - elseif (!is_dir($context['attach_dir'])) |
|
333 | + if (!empty($context['dir_creation_error'])) { |
|
334 | + $initial_error = $context['dir_creation_error']; |
|
335 | + } elseif (!is_dir($context['attach_dir'])) |
|
319 | 336 | { |
320 | 337 | $initial_error = 'attach_folder_warning'; |
321 | 338 | log_error(sprintf($txt['attach_folder_admin_warning'], $context['attach_dir']), 'critical'); |
@@ -338,12 +355,12 @@ discard block |
||
338 | 355 | ); |
339 | 356 | list ($context['attachments']['quantity'], $context['attachments']['total_size']) = $smcFunc['db_fetch_row']($request); |
340 | 357 | $smcFunc['db_free_result']($request); |
341 | - } |
|
342 | - else |
|
343 | - $context['attachments'] = array( |
|
358 | + } else { |
|
359 | + $context['attachments'] = array( |
|
344 | 360 | 'quantity' => 0, |
345 | 361 | 'total_size' => 0, |
346 | 362 | ); |
363 | + } |
|
347 | 364 | } |
348 | 365 | |
349 | 366 | // Hmm. There are still files in session. |
@@ -353,39 +370,44 @@ discard block |
||
353 | 370 | // Let's try to keep them. But... |
354 | 371 | $ignore_temp = true; |
355 | 372 | // If new files are being added. We can't ignore those |
356 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
357 | - if (!empty($dummy)) |
|
373 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) { |
|
374 | + if (!empty($dummy)) |
|
358 | 375 | { |
359 | 376 | $ignore_temp = false; |
377 | + } |
|
360 | 378 | break; |
361 | 379 | } |
362 | 380 | |
363 | 381 | // Need to make space for the new files. So, bye bye. |
364 | 382 | if (!$ignore_temp) |
365 | 383 | { |
366 | - foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
367 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
384 | + foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) { |
|
385 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
368 | 386 | unlink($attachment['tmp_name']); |
387 | + } |
|
369 | 388 | |
370 | 389 | $context['we_are_history'] = $txt['error_temp_attachments_flushed']; |
371 | 390 | $_SESSION['temp_attachments'] = array(); |
372 | 391 | } |
373 | 392 | } |
374 | 393 | |
375 | - if (!isset($_FILES['attachment']['name'])) |
|
376 | - $_FILES['attachment']['tmp_name'] = array(); |
|
394 | + if (!isset($_FILES['attachment']['name'])) { |
|
395 | + $_FILES['attachment']['tmp_name'] = array(); |
|
396 | + } |
|
377 | 397 | |
378 | - if (!isset($_SESSION['temp_attachments'])) |
|
379 | - $_SESSION['temp_attachments'] = array(); |
|
398 | + if (!isset($_SESSION['temp_attachments'])) { |
|
399 | + $_SESSION['temp_attachments'] = array(); |
|
400 | + } |
|
380 | 401 | |
381 | 402 | // Remember where we are at. If it's anywhere at all. |
382 | - if (!$ignore_temp) |
|
383 | - $_SESSION['temp_attachments']['post'] = array( |
|
403 | + if (!$ignore_temp) { |
|
404 | + $_SESSION['temp_attachments']['post'] = array( |
|
384 | 405 | 'msg' => !empty($_REQUEST['msg']) ? $_REQUEST['msg'] : 0, |
385 | 406 | 'last_msg' => !empty($_REQUEST['last_msg']) ? $_REQUEST['last_msg'] : 0, |
386 | 407 | 'topic' => !empty($topic) ? $topic : 0, |
387 | 408 | 'board' => !empty($board) ? $board : 0, |
388 | 409 | ); |
410 | + } |
|
389 | 411 | |
390 | 412 | // If we have an initial error, lets just display it. |
391 | 413 | if (!empty($initial_error)) |
@@ -393,9 +415,10 @@ discard block |
||
393 | 415 | $_SESSION['temp_attachments']['initial_error'] = $initial_error; |
394 | 416 | |
395 | 417 | // And delete the files 'cos they ain't going nowhere. |
396 | - foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
|
397 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
418 | + foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) { |
|
419 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
398 | 420 | unlink($_FILES['attachment']['tmp_name'][$n]); |
421 | + } |
|
399 | 422 | |
400 | 423 | $_FILES['attachment']['tmp_name'] = array(); |
401 | 424 | } |
@@ -403,21 +426,24 @@ discard block |
||
403 | 426 | // Loop through $_FILES['attachment'] array and move each file to the current attachments folder. |
404 | 427 | foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
405 | 428 | { |
406 | - if ($_FILES['attachment']['name'][$n] == '') |
|
407 | - continue; |
|
429 | + if ($_FILES['attachment']['name'][$n] == '') { |
|
430 | + continue; |
|
431 | + } |
|
408 | 432 | |
409 | 433 | // First, let's first check for PHP upload errors. |
410 | 434 | $errors = array(); |
411 | 435 | if (!empty($_FILES['attachment']['error'][$n])) |
412 | 436 | { |
413 | - if ($_FILES['attachment']['error'][$n] == 2) |
|
414 | - $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
415 | - elseif ($_FILES['attachment']['error'][$n] == 6) |
|
416 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
417 | - else |
|
418 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
419 | - if (empty($errors)) |
|
420 | - $errors[] = 'attach_php_error'; |
|
437 | + if ($_FILES['attachment']['error'][$n] == 2) { |
|
438 | + $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
439 | + } elseif ($_FILES['attachment']['error'][$n] == 6) { |
|
440 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
441 | + } else { |
|
442 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
443 | + } |
|
444 | + if (empty($errors)) { |
|
445 | + $errors[] = 'attach_php_error'; |
|
446 | + } |
|
421 | 447 | } |
422 | 448 | |
423 | 449 | // Try to move and rename the file before doing any more checks on it. |
@@ -435,16 +461,16 @@ discard block |
||
435 | 461 | ); |
436 | 462 | |
437 | 463 | // Move the file to the attachments folder with a temp name for now. |
438 | - if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) |
|
439 | - smf_chmod($destName, 0644); |
|
440 | - else |
|
464 | + if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) { |
|
465 | + smf_chmod($destName, 0644); |
|
466 | + } else |
|
441 | 467 | { |
442 | 468 | $_SESSION['temp_attachments'][$attachID]['errors'][] = 'attach_timeout'; |
443 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
444 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
469 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
470 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
471 | + } |
|
445 | 472 | } |
446 | - } |
|
447 | - else |
|
473 | + } else |
|
448 | 474 | { |
449 | 475 | $_SESSION['temp_attachments'][$attachID] = array( |
450 | 476 | 'name' => $smcFunc['htmlspecialchars'](basename($_FILES['attachment']['name'][$n])), |
@@ -452,12 +478,14 @@ discard block |
||
452 | 478 | 'errors' => $errors, |
453 | 479 | ); |
454 | 480 | |
455 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
456 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
481 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
482 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
483 | + } |
|
457 | 484 | } |
458 | 485 | // If there's no errors to this point. We still do need to apply some additional checks before we are finished. |
459 | - if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
|
460 | - attachmentChecks($attachID); |
|
486 | + if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) { |
|
487 | + attachmentChecks($attachID); |
|
488 | + } |
|
461 | 489 | } |
462 | 490 | // Mod authors, finally a hook to hang an alternate attachment upload system upon |
463 | 491 | // Upload to the current attachment folder with the file name $attachID or 'post_tmp_' . $user_info['id'] . '_' . md5(mt_rand()) |
@@ -484,21 +512,20 @@ discard block |
||
484 | 512 | global $modSettings, $context, $sourcedir, $smcFunc; |
485 | 513 | |
486 | 514 | // No data or missing data .... Not necessarily needed, but in case a mod author missed something. |
487 | - if (empty($_SESSION['temp_attachments'][$attachID])) |
|
488 | - $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
489 | - |
|
490 | - elseif (empty($attachID)) |
|
491 | - $error = '$attachID'; |
|
492 | - |
|
493 | - elseif (empty($context['attachments'])) |
|
494 | - $error = '$context[\'attachments\']'; |
|
495 | - |
|
496 | - elseif (empty($context['attach_dir'])) |
|
497 | - $error = '$context[\'attach_dir\']'; |
|
515 | + if (empty($_SESSION['temp_attachments'][$attachID])) { |
|
516 | + $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
517 | + } elseif (empty($attachID)) { |
|
518 | + $error = '$attachID'; |
|
519 | + } elseif (empty($context['attachments'])) { |
|
520 | + $error = '$context[\'attachments\']'; |
|
521 | + } elseif (empty($context['attach_dir'])) { |
|
522 | + $error = '$context[\'attach_dir\']'; |
|
523 | + } |
|
498 | 524 | |
499 | 525 | // Let's get their attention. |
500 | - if (!empty($error)) |
|
501 | - fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
526 | + if (!empty($error)) { |
|
527 | + fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
528 | + } |
|
502 | 529 | |
503 | 530 | // Just in case this slipped by the first checks, we stop it here and now |
504 | 531 | if ($_SESSION['temp_attachments'][$attachID]['size'] == 0) |
@@ -527,8 +554,9 @@ discard block |
||
527 | 554 | $size = @getimagesize($_SESSION['temp_attachments'][$attachID]['tmp_name']); |
528 | 555 | if (!(empty($size)) && ($size[2] != $old_format)) |
529 | 556 | { |
530 | - if (isset($context['validImageTypes'][$size[2]])) |
|
531 | - $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
557 | + if (isset($context['validImageTypes'][$size[2]])) { |
|
558 | + $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
559 | + } |
|
532 | 560 | } |
533 | 561 | } |
534 | 562 | } |
@@ -582,42 +610,48 @@ discard block |
||
582 | 610 | // Or, let the user know that it ain't gonna happen. |
583 | 611 | else |
584 | 612 | { |
585 | - if (isset($context['dir_creation_error'])) |
|
586 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
587 | - else |
|
588 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
613 | + if (isset($context['dir_creation_error'])) { |
|
614 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
615 | + } else { |
|
616 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
617 | + } |
|
589 | 618 | } |
619 | + } else { |
|
620 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
590 | 621 | } |
591 | - else |
|
592 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
593 | 622 | } |
594 | 623 | } |
595 | 624 | |
596 | 625 | // Is the file too big? |
597 | 626 | $context['attachments']['total_size'] += $_SESSION['temp_attachments'][$attachID]['size']; |
598 | - if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) |
|
599 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
627 | + if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) { |
|
628 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
629 | + } |
|
600 | 630 | |
601 | 631 | // Check the total upload size for this post... |
602 | - if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) |
|
603 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
632 | + if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) { |
|
633 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
634 | + } |
|
604 | 635 | |
605 | 636 | // Have we reached the maximum number of files we are allowed? |
606 | 637 | $context['attachments']['quantity']++; |
607 | 638 | |
608 | 639 | // Set a max limit if none exists |
609 | - if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) |
|
610 | - $modSettings['attachmentNumPerPostLimit'] = 50; |
|
640 | + if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) { |
|
641 | + $modSettings['attachmentNumPerPostLimit'] = 50; |
|
642 | + } |
|
611 | 643 | |
612 | - if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) |
|
613 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
644 | + if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) { |
|
645 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
646 | + } |
|
614 | 647 | |
615 | 648 | // File extension check |
616 | 649 | if (!empty($modSettings['attachmentCheckExtensions'])) |
617 | 650 | { |
618 | 651 | $allowed = explode(',', strtolower($modSettings['attachmentExtensions'])); |
619 | - foreach ($allowed as $k => $dummy) |
|
620 | - $allowed[$k] = trim($dummy); |
|
652 | + foreach ($allowed as $k => $dummy) { |
|
653 | + $allowed[$k] = trim($dummy); |
|
654 | + } |
|
621 | 655 | |
622 | 656 | if (!in_array(strtolower(substr(strrchr($_SESSION['temp_attachments'][$attachID]['name'], '.'), 1)), $allowed)) |
623 | 657 | { |
@@ -629,10 +663,12 @@ discard block |
||
629 | 663 | // Undo the math if there's an error |
630 | 664 | if (!empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
631 | 665 | { |
632 | - if (isset($context['dir_size'])) |
|
633 | - $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
634 | - if (isset($context['dir_files'])) |
|
635 | - $context['dir_files']--; |
|
666 | + if (isset($context['dir_size'])) { |
|
667 | + $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
668 | + } |
|
669 | + if (isset($context['dir_files'])) { |
|
670 | + $context['dir_files']--; |
|
671 | + } |
|
636 | 672 | $context['attachments']['total_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
637 | 673 | $context['attachments']['quantity']--; |
638 | 674 | return false; |
@@ -664,12 +700,14 @@ discard block |
||
664 | 700 | if (empty($attachmentOptions['mime_type']) && $attachmentOptions['width']) |
665 | 701 | { |
666 | 702 | // Got a proper mime type? |
667 | - if (!empty($size['mime'])) |
|
668 | - $attachmentOptions['mime_type'] = $size['mime']; |
|
703 | + if (!empty($size['mime'])) { |
|
704 | + $attachmentOptions['mime_type'] = $size['mime']; |
|
705 | + } |
|
669 | 706 | |
670 | 707 | // Otherwise a valid one? |
671 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
672 | - $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
708 | + elseif (isset($context['validImageTypes'][$size[2]])) { |
|
709 | + $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
710 | + } |
|
673 | 711 | } |
674 | 712 | |
675 | 713 | // It is possible we might have a MIME type that isn't actually an image but still have a size. |
@@ -681,15 +719,17 @@ discard block |
||
681 | 719 | } |
682 | 720 | |
683 | 721 | // Get the hash if no hash has been given yet. |
684 | - if (empty($attachmentOptions['file_hash'])) |
|
685 | - $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
722 | + if (empty($attachmentOptions['file_hash'])) { |
|
723 | + $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
724 | + } |
|
686 | 725 | |
687 | 726 | // Assuming no-one set the extension let's take a look at it. |
688 | 727 | if (empty($attachmentOptions['fileext'])) |
689 | 728 | { |
690 | 729 | $attachmentOptions['fileext'] = strtolower(strrpos($attachmentOptions['name'], '.') !== false ? substr($attachmentOptions['name'], strrpos($attachmentOptions['name'], '.') + 1) : ''); |
691 | - if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) |
|
692 | - $attachmentOptions['fileext'] = ''; |
|
730 | + if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) { |
|
731 | + $attachmentOptions['fileext'] = ''; |
|
732 | + } |
|
693 | 733 | } |
694 | 734 | |
695 | 735 | // Last chance to change stuff! |
@@ -698,8 +738,9 @@ discard block |
||
698 | 738 | // Make sure the folder is valid... |
699 | 739 | $tmp = is_array($modSettings['attachmentUploadDir']) ? $modSettings['attachmentUploadDir'] : smf_json_decode($modSettings['attachmentUploadDir'], true); |
700 | 740 | $folders = array_keys($tmp); |
701 | - if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) |
|
702 | - $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
741 | + if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) { |
|
742 | + $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
743 | + } |
|
703 | 744 | |
704 | 745 | $smcFunc['db_insert']('', |
705 | 746 | '{db_prefix}attachments', |
@@ -730,8 +771,8 @@ discard block |
||
730 | 771 | rename($attachmentOptions['tmp_name'], $attachmentOptions['destination']); |
731 | 772 | |
732 | 773 | // If it's not approved then add to the approval queue. |
733 | - if (!$attachmentOptions['approved']) |
|
734 | - $smcFunc['db_insert']('', |
|
774 | + if (!$attachmentOptions['approved']) { |
|
775 | + $smcFunc['db_insert']('', |
|
735 | 776 | '{db_prefix}approval_queue', |
736 | 777 | array( |
737 | 778 | 'id_attach' => 'int', 'id_msg' => 'int', |
@@ -741,9 +782,11 @@ discard block |
||
741 | 782 | ), |
742 | 783 | array() |
743 | 784 | ); |
785 | + } |
|
744 | 786 | |
745 | - if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) |
|
746 | - return true; |
|
787 | + if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) { |
|
788 | + return true; |
|
789 | + } |
|
747 | 790 | |
748 | 791 | // Like thumbnails, do we? |
749 | 792 | if (!empty($modSettings['attachmentThumbWidth']) && !empty($modSettings['attachmentThumbHeight']) && ($attachmentOptions['width'] > $modSettings['attachmentThumbWidth'] || $attachmentOptions['height'] > $modSettings['attachmentThumbHeight'])) |
@@ -754,13 +797,15 @@ discard block |
||
754 | 797 | $size = @getimagesize($attachmentOptions['destination'] . '_thumb'); |
755 | 798 | list ($thumb_width, $thumb_height) = $size; |
756 | 799 | |
757 | - if (!empty($size['mime'])) |
|
758 | - $thumb_mime = $size['mime']; |
|
759 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
760 | - $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
800 | + if (!empty($size['mime'])) { |
|
801 | + $thumb_mime = $size['mime']; |
|
802 | + } elseif (isset($context['validImageTypes'][$size[2]])) { |
|
803 | + $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
804 | + } |
|
761 | 805 | // Lord only knows how this happened... |
762 | - else |
|
763 | - $thumb_mime = ''; |
|
806 | + else { |
|
807 | + $thumb_mime = ''; |
|
808 | + } |
|
764 | 809 | |
765 | 810 | $thumb_filename = $attachmentOptions['name'] . '_thumb'; |
766 | 811 | $thumb_size = filesize($attachmentOptions['destination'] . '_thumb'); |
@@ -840,15 +885,17 @@ discard block |
||
840 | 885 | global $smcFunc; |
841 | 886 | |
842 | 887 | // Oh, come on! |
843 | - if (empty($attachIDs) || empty($msgID)) |
|
844 | - return false; |
|
888 | + if (empty($attachIDs) || empty($msgID)) { |
|
889 | + return false; |
|
890 | + } |
|
845 | 891 | |
846 | 892 | // "I see what is right and approve, but I do what is wrong." |
847 | 893 | call_integration_hook('integrate_assign_attachments', array(&$attachIDs, &$msgID)); |
848 | 894 | |
849 | 895 | // One last check |
850 | - if (empty($attachIDs)) |
|
851 | - return false; |
|
896 | + if (empty($attachIDs)) { |
|
897 | + return false; |
|
898 | + } |
|
852 | 899 | |
853 | 900 | // Perform. |
854 | 901 | $smcFunc['db_query']('', ' |
@@ -880,8 +927,9 @@ discard block |
||
880 | 927 | $externalParse = false; |
881 | 928 | |
882 | 929 | // Meh... |
883 | - if (empty($attachID)) |
|
884 | - return 'attachments_no_data_loaded'; |
|
930 | + if (empty($attachID)) { |
|
931 | + return 'attachments_no_data_loaded'; |
|
932 | + } |
|
885 | 933 | |
886 | 934 | // Make it easy. |
887 | 935 | $msgID = !empty($_REQUEST['msg']) ? (int) $_REQUEST['msg'] : 0; |
@@ -890,20 +938,23 @@ discard block |
||
890 | 938 | $externalParse = call_integration_hook('integrate_pre_parseAttachBBC', array($attachID, $msgID)); |
891 | 939 | |
892 | 940 | // "I am innocent of the blood of this just person: see ye to it." |
893 | - if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) |
|
894 | - return $externalParse; |
|
941 | + if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) { |
|
942 | + return $externalParse; |
|
943 | + } |
|
895 | 944 | |
896 | 945 | //Are attachments enable? |
897 | - if (empty($modSettings['attachmentEnable'])) |
|
898 | - return 'attachments_not_enable'; |
|
946 | + if (empty($modSettings['attachmentEnable'])) { |
|
947 | + return 'attachments_not_enable'; |
|
948 | + } |
|
899 | 949 | |
900 | 950 | // Previewing much? no msg ID has been set yet. |
901 | 951 | if (!empty($context['preview_message'])) |
902 | 952 | { |
903 | 953 | $allAttachments = getAttachsByMsg(0); |
904 | 954 | |
905 | - if (empty($allAttachments[0][$attachID])) |
|
906 | - return 'attachments_no_data_loaded'; |
|
955 | + if (empty($allAttachments[0][$attachID])) { |
|
956 | + return 'attachments_no_data_loaded'; |
|
957 | + } |
|
907 | 958 | |
908 | 959 | $attachContext = $allAttachments[0][$attachID]; |
909 | 960 | $attachLoaded = loadAttachmentContext(0, $allAttachments); |
@@ -916,57 +967,66 @@ discard block |
||
916 | 967 | $attachContext['link'] = '<a href="' . $scripturl . '?action=dlattach;attach=' . $attachID . ';type=preview' . (empty($attachContext['is_image']) ? ';file' : '') . '">' . $smcFunc['htmlspecialchars']($attachContext['name']) . '</a>'; |
917 | 968 | |
918 | 969 | // Fix the thumbnail too, if the image has one. |
919 | - if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) |
|
920 | - $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
970 | + if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) { |
|
971 | + $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
972 | + } |
|
921 | 973 | |
922 | 974 | return $attachContext; |
923 | 975 | } |
924 | 976 | |
925 | 977 | // There is always the chance someone else has already done our dirty work... |
926 | 978 | // If so, all pertinent checks were already done. Hopefully... |
927 | - if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) |
|
928 | - return $context['current_attachments'][$attachID]; |
|
979 | + if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) { |
|
980 | + return $context['current_attachments'][$attachID]; |
|
981 | + } |
|
929 | 982 | |
930 | 983 | // If we are lucky enough to be in $board's scope then check it! |
931 | - if (!empty($board) && !allowedTo('view_attachments', $board)) |
|
932 | - return 'attachments_not_allowed_to_see'; |
|
984 | + if (!empty($board) && !allowedTo('view_attachments', $board)) { |
|
985 | + return 'attachments_not_allowed_to_see'; |
|
986 | + } |
|
933 | 987 | |
934 | 988 | // Get the message info associated with this particular attach ID. |
935 | 989 | $attachInfo = getAttachMsgInfo($attachID); |
936 | 990 | |
937 | 991 | // There is always the chance this attachment no longer exists or isn't associated to a message anymore... |
938 | - if (empty($attachInfo) || empty($attachInfo['msg'])) |
|
939 | - return 'attachments_no_msg_associated'; |
|
992 | + if (empty($attachInfo) || empty($attachInfo['msg'])) { |
|
993 | + return 'attachments_no_msg_associated'; |
|
994 | + } |
|
940 | 995 | |
941 | 996 | // Hold it! got the info now check if you can see this attachment. |
942 | - if (!allowedTo('view_attachments', $attachInfo['board'])) |
|
943 | - return 'attachments_not_allowed_to_see'; |
|
997 | + if (!allowedTo('view_attachments', $attachInfo['board'])) { |
|
998 | + return 'attachments_not_allowed_to_see'; |
|
999 | + } |
|
944 | 1000 | |
945 | 1001 | $allAttachments = getAttachsByMsg($attachInfo['msg']); |
946 | 1002 | $attachContext = $allAttachments[$attachInfo['msg']][$attachID]; |
947 | 1003 | |
948 | 1004 | // No point in keep going further. |
949 | - if (!allowedTo('view_attachments', $attachContext['board'])) |
|
950 | - return 'attachments_not_allowed_to_see'; |
|
1005 | + if (!allowedTo('view_attachments', $attachContext['board'])) { |
|
1006 | + return 'attachments_not_allowed_to_see'; |
|
1007 | + } |
|
951 | 1008 | |
952 | 1009 | // Load this particular attach's context. |
953 | - if (!empty($attachContext)) |
|
954 | - $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
1010 | + if (!empty($attachContext)) { |
|
1011 | + $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
1012 | + } |
|
955 | 1013 | |
956 | 1014 | // One last check, you know, gotta be paranoid... |
957 | - else |
|
958 | - return 'attachments_no_data_loaded'; |
|
1015 | + else { |
|
1016 | + return 'attachments_no_data_loaded'; |
|
1017 | + } |
|
959 | 1018 | |
960 | 1019 | // This is the last "if" I promise! |
961 | - if (empty($attachLoaded)) |
|
962 | - return 'attachments_no_data_loaded'; |
|
963 | - |
|
964 | - else |
|
965 | - $attachContext = $attachLoaded[$attachID]; |
|
1020 | + if (empty($attachLoaded)) { |
|
1021 | + return 'attachments_no_data_loaded'; |
|
1022 | + } else { |
|
1023 | + $attachContext = $attachLoaded[$attachID]; |
|
1024 | + } |
|
966 | 1025 | |
967 | 1026 | // You may or may not want to show this under the post. |
968 | - if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) |
|
969 | - $context['show_attach_under_post'][$attachID] = $attachID; |
|
1027 | + if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) { |
|
1028 | + $context['show_attach_under_post'][$attachID] = $attachID; |
|
1029 | + } |
|
970 | 1030 | |
971 | 1031 | // Last minute changes? |
972 | 1032 | call_integration_hook('integrate_post_parseAttachBBC', array(&$attachContext)); |
@@ -986,8 +1046,9 @@ discard block |
||
986 | 1046 | { |
987 | 1047 | global $smcFunc, $modSettings; |
988 | 1048 | |
989 | - if (empty($attachIDs)) |
|
990 | - return array(); |
|
1049 | + if (empty($attachIDs)) { |
|
1050 | + return array(); |
|
1051 | + } |
|
991 | 1052 | |
992 | 1053 | $return = array(); |
993 | 1054 | |
@@ -1003,11 +1064,12 @@ discard block |
||
1003 | 1064 | ) |
1004 | 1065 | ); |
1005 | 1066 | |
1006 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
1007 | - return array(); |
|
1067 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
1068 | + return array(); |
|
1069 | + } |
|
1008 | 1070 | |
1009 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1010 | - $return[$row['id_attach']] = array( |
|
1071 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1072 | + $return[$row['id_attach']] = array( |
|
1011 | 1073 | 'name' => $smcFunc['htmlspecialchars']($row['filename']), |
1012 | 1074 | 'size' => $row['size'], |
1013 | 1075 | 'attachID' => $row['id_attach'], |
@@ -1016,6 +1078,7 @@ discard block |
||
1016 | 1078 | 'mime_type' => $row['mime_type'], |
1017 | 1079 | 'thumb' => $row['id_thumb'], |
1018 | 1080 | ); |
1081 | + } |
|
1019 | 1082 | $smcFunc['db_free_result']($request); |
1020 | 1083 | |
1021 | 1084 | return $return; |
@@ -1032,8 +1095,9 @@ discard block |
||
1032 | 1095 | { |
1033 | 1096 | global $smcFunc; |
1034 | 1097 | |
1035 | - if (empty($attachID)) |
|
1036 | - return array(); |
|
1098 | + if (empty($attachID)) { |
|
1099 | + return array(); |
|
1100 | + } |
|
1037 | 1101 | |
1038 | 1102 | $request = $smcFunc['db_query']('', ' |
1039 | 1103 | SELECT a.id_msg AS msg, m.id_topic AS topic, m.id_board AS board |
@@ -1046,8 +1110,9 @@ discard block |
||
1046 | 1110 | ) |
1047 | 1111 | ); |
1048 | 1112 | |
1049 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
1050 | - return array(); |
|
1113 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
1114 | + return array(); |
|
1115 | + } |
|
1051 | 1116 | |
1052 | 1117 | $row = $smcFunc['db_fetch_assoc']($request); |
1053 | 1118 | $smcFunc['db_free_result']($request); |
@@ -1088,8 +1153,9 @@ discard block |
||
1088 | 1153 | $temp = array(); |
1089 | 1154 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1090 | 1155 | { |
1091 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
1092 | - continue; |
|
1156 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
1157 | + continue; |
|
1158 | + } |
|
1093 | 1159 | |
1094 | 1160 | $temp[$row['id_attach']] = $row; |
1095 | 1161 | } |
@@ -1118,8 +1184,9 @@ discard block |
||
1118 | 1184 | { |
1119 | 1185 | global $modSettings, $txt, $scripturl, $sourcedir, $smcFunc; |
1120 | 1186 | |
1121 | - if (empty($attachments) || empty($attachments[$id_msg])) |
|
1122 | - return array(); |
|
1187 | + if (empty($attachments) || empty($attachments[$id_msg])) { |
|
1188 | + return array(); |
|
1189 | + } |
|
1123 | 1190 | |
1124 | 1191 | // Set up the attachment info - based on code by Meriadoc. |
1125 | 1192 | $attachmentData = array(); |
@@ -1143,11 +1210,13 @@ discard block |
||
1143 | 1210 | ); |
1144 | 1211 | |
1145 | 1212 | // If something is unapproved we'll note it so we can sort them. |
1146 | - if (!$attachment['approved']) |
|
1147 | - $have_unapproved = true; |
|
1213 | + if (!$attachment['approved']) { |
|
1214 | + $have_unapproved = true; |
|
1215 | + } |
|
1148 | 1216 | |
1149 | - if (!$attachmentData[$i]['is_image']) |
|
1150 | - continue; |
|
1217 | + if (!$attachmentData[$i]['is_image']) { |
|
1218 | + continue; |
|
1219 | + } |
|
1151 | 1220 | |
1152 | 1221 | $attachmentData[$i]['real_width'] = $attachment['width']; |
1153 | 1222 | $attachmentData[$i]['width'] = $attachment['width']; |
@@ -1168,12 +1237,12 @@ discard block |
||
1168 | 1237 | // So what folder are we putting this image in? |
1169 | 1238 | if (!empty($modSettings['currentAttachmentUploadDir'])) |
1170 | 1239 | { |
1171 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
1172 | - $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
1240 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
1241 | + $modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true); |
|
1242 | + } |
|
1173 | 1243 | $path = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']]; |
1174 | 1244 | $id_folder_thumb = $modSettings['currentAttachmentUploadDir']; |
1175 | - } |
|
1176 | - else |
|
1245 | + } else |
|
1177 | 1246 | { |
1178 | 1247 | $path = $modSettings['attachmentUploadDir']; |
1179 | 1248 | $id_folder_thumb = 1; |
@@ -1188,10 +1257,11 @@ discard block |
||
1188 | 1257 | $thumb_ext = isset($context['validImageTypes'][$size[2]]) ? $context['validImageTypes'][$size[2]] : ''; |
1189 | 1258 | |
1190 | 1259 | // Figure out the mime type. |
1191 | - if (!empty($size['mime'])) |
|
1192 | - $thumb_mime = $size['mime']; |
|
1193 | - else |
|
1194 | - $thumb_mime = 'image/' . $thumb_ext; |
|
1260 | + if (!empty($size['mime'])) { |
|
1261 | + $thumb_mime = $size['mime']; |
|
1262 | + } else { |
|
1263 | + $thumb_mime = 'image/' . $thumb_ext; |
|
1264 | + } |
|
1195 | 1265 | |
1196 | 1266 | $thumb_filename = $attachment['filename'] . '_thumb'; |
1197 | 1267 | $thumb_hash = getAttachmentFilename($thumb_filename, false, null, true); |
@@ -1238,11 +1308,12 @@ discard block |
||
1238 | 1308 | } |
1239 | 1309 | } |
1240 | 1310 | |
1241 | - if (!empty($attachment['id_thumb'])) |
|
1242 | - $attachmentData[$i]['thumbnail'] = array( |
|
1311 | + if (!empty($attachment['id_thumb'])) { |
|
1312 | + $attachmentData[$i]['thumbnail'] = array( |
|
1243 | 1313 | 'id' => $attachment['id_thumb'], |
1244 | 1314 | 'href' => $scripturl . '?action=dlattach;topic=' . $attachment['topic'] . '.0;attach=' . $attachment['id_thumb'] . ';image', |
1245 | 1315 | ); |
1316 | + } |
|
1246 | 1317 | $attachmentData[$i]['thumbnail']['has_thumb'] = !empty($attachment['id_thumb']); |
1247 | 1318 | |
1248 | 1319 | // If thumbnails are disabled, check the maximum size of the image. |
@@ -1252,30 +1323,31 @@ discard block |
||
1252 | 1323 | { |
1253 | 1324 | $attachmentData[$i]['width'] = $modSettings['max_image_width']; |
1254 | 1325 | $attachmentData[$i]['height'] = floor($attachment['height'] * $modSettings['max_image_width'] / $attachment['width']); |
1255 | - } |
|
1256 | - elseif (!empty($modSettings['max_image_width'])) |
|
1326 | + } elseif (!empty($modSettings['max_image_width'])) |
|
1257 | 1327 | { |
1258 | 1328 | $attachmentData[$i]['width'] = floor($attachment['width'] * $modSettings['max_image_height'] / $attachment['height']); |
1259 | 1329 | $attachmentData[$i]['height'] = $modSettings['max_image_height']; |
1260 | 1330 | } |
1261 | - } |
|
1262 | - elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
1331 | + } elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
1263 | 1332 | { |
1264 | 1333 | // If the image is too large to show inline, make it a popup. |
1265 | - if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) |
|
1266 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
1267 | - else |
|
1268 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
1334 | + if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) { |
|
1335 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
1336 | + } else { |
|
1337 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
1338 | + } |
|
1269 | 1339 | } |
1270 | 1340 | |
1271 | - if (!$attachmentData[$i]['thumbnail']['has_thumb']) |
|
1272 | - $attachmentData[$i]['downloads']++; |
|
1341 | + if (!$attachmentData[$i]['thumbnail']['has_thumb']) { |
|
1342 | + $attachmentData[$i]['downloads']++; |
|
1343 | + } |
|
1273 | 1344 | } |
1274 | 1345 | } |
1275 | 1346 | |
1276 | 1347 | // Do we need to instigate a sort? |
1277 | - if ($have_unapproved) |
|
1278 | - usort($attachmentData, 'approved_attach_sort'); |
|
1348 | + if ($have_unapproved) { |
|
1349 | + usort($attachmentData, 'approved_attach_sort'); |
|
1350 | + } |
|
1279 | 1351 | |
1280 | 1352 | return $attachmentData; |
1281 | 1353 | } |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 3 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * The central part of the board - topic display. |
@@ -34,8 +35,9 @@ discard block |
||
34 | 35 | global $attachments, $messages_request, $language, $smcFunc; |
35 | 36 | |
36 | 37 | // What are you gonna display if these are empty?! |
37 | - if (empty($topic)) |
|
38 | - fatal_lang_error('no_board', false); |
|
38 | + if (empty($topic)) { |
|
39 | + fatal_lang_error('no_board', false); |
|
40 | + } |
|
39 | 41 | |
40 | 42 | // Load the proper template. |
41 | 43 | loadTemplate('Display'); |
@@ -52,15 +54,17 @@ discard block |
||
52 | 54 | $context['messages_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) ? $options['messages_per_page'] : $modSettings['defaultMaxMessages']; |
53 | 55 | |
54 | 56 | // Let's do some work on what to search index. |
55 | - if (count($_GET) > 2) |
|
56 | - foreach ($_GET as $k => $v) |
|
57 | + if (count($_GET) > 2) { |
|
58 | + foreach ($_GET as $k => $v) |
|
57 | 59 | { |
58 | 60 | if (!in_array($k, array('topic', 'board', 'start', session_name()))) |
59 | 61 | $context['robot_no_index'] = true; |
62 | + } |
|
60 | 63 | } |
61 | 64 | |
62 | - if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) |
|
63 | - $context['robot_no_index'] = true; |
|
65 | + if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) { |
|
66 | + $context['robot_no_index'] = true; |
|
67 | + } |
|
64 | 68 | |
65 | 69 | // Find the previous or next topic. Make a fuss if there are no more. |
66 | 70 | if (isset($_REQUEST['prev_next']) && ($_REQUEST['prev_next'] == 'prev' || $_REQUEST['prev_next'] == 'next')) |
@@ -172,8 +176,9 @@ discard block |
||
172 | 176 | $topic_parameters |
173 | 177 | ); |
174 | 178 | |
175 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
176 | - fatal_lang_error('not_a_topic', false, 404); |
|
179 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
180 | + fatal_lang_error('not_a_topic', false, 404); |
|
181 | + } |
|
177 | 182 | $context['topicinfo'] = $smcFunc['db_fetch_assoc']($request); |
178 | 183 | $smcFunc['db_free_result']($request); |
179 | 184 | |
@@ -210,8 +215,9 @@ discard block |
||
210 | 215 | $context['topic_unwatched'] = isset($context['topicinfo']['unwatched']) ? $context['topicinfo']['unwatched'] : 0; |
211 | 216 | |
212 | 217 | // Add up unapproved replies to get real number of replies... |
213 | - if ($modSettings['postmod_active'] && $approve_posts) |
|
214 | - $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
218 | + if ($modSettings['postmod_active'] && $approve_posts) { |
|
219 | + $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
220 | + } |
|
215 | 221 | |
216 | 222 | // If this topic has unapproved posts, we need to work out how many posts the user can see, for page indexing. |
217 | 223 | if ($modSettings['postmod_active'] && $context['topicinfo']['unapproved_posts'] && !$user_info['is_guest'] && !$approve_posts) |
@@ -231,11 +237,11 @@ discard block |
||
231 | 237 | $smcFunc['db_free_result']($request); |
232 | 238 | |
233 | 239 | $context['total_visible_posts'] = $context['num_replies'] + $myUnapprovedPosts + ($context['topicinfo']['approved'] ? 1 : 0); |
240 | + } elseif ($user_info['is_guest']) { |
|
241 | + $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
242 | + } else { |
|
243 | + $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
234 | 244 | } |
235 | - elseif ($user_info['is_guest']) |
|
236 | - $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
237 | - else |
|
238 | - $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
239 | 245 | |
240 | 246 | // The start isn't a number; it's information about what to do, where to go. |
241 | 247 | if (!is_numeric($_REQUEST['start'])) |
@@ -248,8 +254,7 @@ discard block |
||
248 | 254 | { |
249 | 255 | $context['start_from'] = $context['total_visible_posts'] - 1; |
250 | 256 | $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : 0; |
251 | - } |
|
252 | - else |
|
257 | + } else |
|
253 | 258 | { |
254 | 259 | // Find the earliest unread message in the topic. (the use of topics here is just for both tables.) |
255 | 260 | $request = $smcFunc['db_query']('', ' |
@@ -277,9 +282,9 @@ discard block |
||
277 | 282 | if (substr($_REQUEST['start'], 0, 4) == 'from') |
278 | 283 | { |
279 | 284 | $timestamp = (int) substr($_REQUEST['start'], 4); |
280 | - if ($timestamp === 0) |
|
281 | - $_REQUEST['start'] = 0; |
|
282 | - else |
|
285 | + if ($timestamp === 0) { |
|
286 | + $_REQUEST['start'] = 0; |
|
287 | + } else |
|
283 | 288 | { |
284 | 289 | // Find the number of messages posted before said time... |
285 | 290 | $request = $smcFunc['db_query']('', ' |
@@ -307,11 +312,11 @@ discard block |
||
307 | 312 | elseif (substr($_REQUEST['start'], 0, 3) == 'msg') |
308 | 313 | { |
309 | 314 | $virtual_msg = (int) substr($_REQUEST['start'], 3); |
310 | - if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) |
|
311 | - $context['start_from'] = $context['total_visible_posts'] - 1; |
|
312 | - elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) |
|
313 | - $context['start_from'] = 0; |
|
314 | - else |
|
315 | + if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) { |
|
316 | + $context['start_from'] = $context['total_visible_posts'] - 1; |
|
317 | + } elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) { |
|
318 | + $context['start_from'] = 0; |
|
319 | + } else |
|
315 | 320 | { |
316 | 321 | // Find the start value for that message...... |
317 | 322 | $request = $smcFunc['db_query']('', ' |
@@ -394,21 +399,25 @@ discard block |
||
394 | 399 | ); |
395 | 400 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
396 | 401 | { |
397 | - if (empty($row['id_member'])) |
|
398 | - continue; |
|
402 | + if (empty($row['id_member'])) { |
|
403 | + continue; |
|
404 | + } |
|
399 | 405 | |
400 | - if (!empty($row['online_color'])) |
|
401 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
402 | - else |
|
403 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
406 | + if (!empty($row['online_color'])) { |
|
407 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
408 | + } else { |
|
409 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
410 | + } |
|
404 | 411 | |
405 | 412 | $is_buddy = in_array($row['id_member'], $user_info['buddies']); |
406 | - if ($is_buddy) |
|
407 | - $link = '<strong>' . $link . '</strong>'; |
|
413 | + if ($is_buddy) { |
|
414 | + $link = '<strong>' . $link . '</strong>'; |
|
415 | + } |
|
408 | 416 | |
409 | 417 | // Add them both to the list and to the more detailed list. |
410 | - if (!empty($row['show_online']) || allowedTo('moderate_forum')) |
|
411 | - $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
418 | + if (!empty($row['show_online']) || allowedTo('moderate_forum')) { |
|
419 | + $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
420 | + } |
|
412 | 421 | $context['view_members'][$row['log_time'] . $row['member_name']] = array( |
413 | 422 | 'id' => $row['id_member'], |
414 | 423 | 'username' => $row['member_name'], |
@@ -420,8 +429,9 @@ discard block |
||
420 | 429 | 'hidden' => empty($row['show_online']), |
421 | 430 | ); |
422 | 431 | |
423 | - if (empty($row['show_online'])) |
|
424 | - $context['view_num_hidden']++; |
|
432 | + if (empty($row['show_online'])) { |
|
433 | + $context['view_num_hidden']++; |
|
434 | + } |
|
425 | 435 | } |
426 | 436 | |
427 | 437 | // The number of guests is equal to the rows minus the ones we actually used ;). |
@@ -435,11 +445,13 @@ discard block |
||
435 | 445 | |
436 | 446 | // If all is set, but not allowed... just unset it. |
437 | 447 | $can_show_all = !empty($modSettings['enableAllMessages']) && $context['total_visible_posts'] > $context['messages_per_page'] && $context['total_visible_posts'] < $modSettings['enableAllMessages']; |
438 | - if (isset($_REQUEST['all']) && !$can_show_all) |
|
439 | - unset($_REQUEST['all']); |
|
448 | + if (isset($_REQUEST['all']) && !$can_show_all) { |
|
449 | + unset($_REQUEST['all']); |
|
450 | + } |
|
440 | 451 | // Otherwise, it must be allowed... so pretend start was -1. |
441 | - elseif (isset($_REQUEST['all'])) |
|
442 | - $_REQUEST['start'] = -1; |
|
452 | + elseif (isset($_REQUEST['all'])) { |
|
453 | + $_REQUEST['start'] = -1; |
|
454 | + } |
|
443 | 455 | |
444 | 456 | // Construct the page index, allowing for the .START method... |
445 | 457 | $context['page_index'] = constructPageIndex($scripturl . '?topic=' . $topic . '.%1$d', $_REQUEST['start'], $context['total_visible_posts'], $context['messages_per_page'], true); |
@@ -476,8 +488,9 @@ discard block |
||
476 | 488 | $_REQUEST['start'] = 0; |
477 | 489 | } |
478 | 490 | // They aren't using it, but the *option* is there, at least. |
479 | - else |
|
480 | - $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
491 | + else { |
|
492 | + $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
493 | + } |
|
481 | 494 | } |
482 | 495 | |
483 | 496 | // Build the link tree. |
@@ -493,14 +506,16 @@ discard block |
||
493 | 506 | if (!empty($board_info['moderators'])) |
494 | 507 | { |
495 | 508 | // Add a link for each moderator... |
496 | - foreach ($board_info['moderators'] as $mod) |
|
497 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
509 | + foreach ($board_info['moderators'] as $mod) { |
|
510 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
511 | + } |
|
498 | 512 | } |
499 | 513 | if (!empty($board_info['moderator_groups'])) |
500 | 514 | { |
501 | 515 | // Add a link for each moderator group as well... |
502 | - foreach ($board_info['moderator_groups'] as $mod_group) |
|
503 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
516 | + foreach ($board_info['moderator_groups'] as $mod_group) { |
|
517 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
518 | + } |
|
504 | 519 | } |
505 | 520 | |
506 | 521 | if (!empty($context['link_moderators'])) |
@@ -531,9 +546,9 @@ discard block |
||
531 | 546 | // For quick reply we need a response prefix in the default forum language. |
532 | 547 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix', 600))) |
533 | 548 | { |
534 | - if ($language === $user_info['language']) |
|
535 | - $context['response_prefix'] = $txt['response_prefix']; |
|
536 | - else |
|
549 | + if ($language === $user_info['language']) { |
|
550 | + $context['response_prefix'] = $txt['response_prefix']; |
|
551 | + } else |
|
537 | 552 | { |
538 | 553 | loadLanguage('index', $language, false); |
539 | 554 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -565,8 +580,9 @@ discard block |
||
565 | 580 | list($start, $end, $allday, $span, $tz_abbrev) = buildEventDatetimes($row); |
566 | 581 | |
567 | 582 | // Sanity check |
568 | - if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) |
|
569 | - continue; |
|
583 | + if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) { |
|
584 | + continue; |
|
585 | + } |
|
570 | 586 | |
571 | 587 | $linked_calendar_event = array( |
572 | 588 | 'id' => $row['id_event'], |
@@ -615,8 +631,9 @@ discard block |
||
615 | 631 | } |
616 | 632 | $smcFunc['db_free_result']($request); |
617 | 633 | |
618 | - if (!empty($context['linked_calendar_events'])) |
|
619 | - $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
634 | + if (!empty($context['linked_calendar_events'])) { |
|
635 | + $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
636 | + } |
|
620 | 637 | } |
621 | 638 | |
622 | 639 | // Create the poll info if it exists. |
@@ -689,20 +706,21 @@ discard block |
||
689 | 706 | foreach ($guestinfo as $i => $guestvoted) |
690 | 707 | { |
691 | 708 | $guestvoted = explode(',', $guestvoted); |
692 | - if ($guestvoted[0] == $context['topicinfo']['id_poll']) |
|
693 | - break; |
|
709 | + if ($guestvoted[0] == $context['topicinfo']['id_poll']) { |
|
710 | + break; |
|
711 | + } |
|
694 | 712 | } |
695 | 713 | // Has the poll been reset since guest voted? |
696 | 714 | if ($pollinfo['reset_poll'] > $guestvoted[1]) |
697 | 715 | { |
698 | 716 | // Remove the poll info from the cookie to allow guest to vote again |
699 | 717 | unset($guestinfo[$i]); |
700 | - if (!empty($guestinfo)) |
|
701 | - $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
702 | - else |
|
703 | - unset($_COOKIE['guest_poll_vote']); |
|
704 | - } |
|
705 | - else |
|
718 | + if (!empty($guestinfo)) { |
|
719 | + $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
720 | + } else { |
|
721 | + unset($_COOKIE['guest_poll_vote']); |
|
722 | + } |
|
723 | + } else |
|
706 | 724 | { |
707 | 725 | // What did they vote for? |
708 | 726 | unset($guestvoted[0], $guestvoted[1]); |
@@ -816,23 +834,29 @@ discard block |
||
816 | 834 | // Build the poll moderation button array. |
817 | 835 | $context['poll_buttons'] = array(); |
818 | 836 | |
819 | - if ($context['allow_return_vote']) |
|
820 | - $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
837 | + if ($context['allow_return_vote']) { |
|
838 | + $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
839 | + } |
|
821 | 840 | |
822 | - if ($context['show_view_results_button']) |
|
823 | - $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
841 | + if ($context['show_view_results_button']) { |
|
842 | + $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
843 | + } |
|
824 | 844 | |
825 | - if ($context['allow_change_vote']) |
|
826 | - $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
845 | + if ($context['allow_change_vote']) { |
|
846 | + $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
847 | + } |
|
827 | 848 | |
828 | - if ($context['allow_lock_poll']) |
|
829 | - $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
849 | + if ($context['allow_lock_poll']) { |
|
850 | + $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
851 | + } |
|
830 | 852 | |
831 | - if ($context['allow_edit_poll']) |
|
832 | - $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
853 | + if ($context['allow_edit_poll']) { |
|
854 | + $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
855 | + } |
|
833 | 856 | |
834 | - if ($context['can_remove_poll']) |
|
835 | - $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
857 | + if ($context['can_remove_poll']) { |
|
858 | + $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
859 | + } |
|
836 | 860 | |
837 | 861 | // Allow mods to add additional buttons here |
838 | 862 | call_integration_hook('integrate_poll_buttons'); |
@@ -873,8 +897,9 @@ discard block |
||
873 | 897 | $all_posters = array(); |
874 | 898 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
875 | 899 | { |
876 | - if (!empty($row['id_member'])) |
|
877 | - $all_posters[$row['id_msg']] = $row['id_member']; |
|
900 | + if (!empty($row['id_member'])) { |
|
901 | + $all_posters[$row['id_msg']] = $row['id_member']; |
|
902 | + } |
|
878 | 903 | $messages[] = $row['id_msg']; |
879 | 904 | } |
880 | 905 | $smcFunc['db_free_result']($request); |
@@ -886,8 +911,9 @@ discard block |
||
886 | 911 | if (!$user_info['is_guest'] && !empty($messages)) |
887 | 912 | { |
888 | 913 | $mark_at_msg = max($messages); |
889 | - if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) |
|
890 | - $mark_at_msg = $modSettings['maxMsgID']; |
|
914 | + if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) { |
|
915 | + $mark_at_msg = $modSettings['maxMsgID']; |
|
916 | + } |
|
891 | 917 | if ($mark_at_msg >= $context['topicinfo']['new_from']) |
892 | 918 | { |
893 | 919 | $smcFunc['db_insert']($context['topicinfo']['new_from'] == 0 ? 'ignore' : 'replace', |
@@ -919,8 +945,9 @@ discard block |
||
919 | 945 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
920 | 946 | { |
921 | 947 | // Find if this topic is marked for notification... |
922 | - if (!empty($row['id_topic'])) |
|
923 | - $context['is_marked_notify'] = true; |
|
948 | + if (!empty($row['id_topic'])) { |
|
949 | + $context['is_marked_notify'] = true; |
|
950 | + } |
|
924 | 951 | |
925 | 952 | // Only do this once, but mark the notifications as "not sent yet" for next time. |
926 | 953 | if (!empty($row['sent']) && $do_once) |
@@ -942,8 +969,9 @@ discard block |
||
942 | 969 | } |
943 | 970 | |
944 | 971 | // Have we recently cached the number of new topics in this board, and it's still a lot? |
945 | - if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) |
|
946 | - $_SESSION['topicseen_cache'][$board]--; |
|
972 | + if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) { |
|
973 | + $_SESSION['topicseen_cache'][$board]--; |
|
974 | + } |
|
947 | 975 | // Mark board as seen if this is the only new topic. |
948 | 976 | elseif (isset($_REQUEST['topicseen'])) |
949 | 977 | { |
@@ -967,14 +995,16 @@ discard block |
||
967 | 995 | $smcFunc['db_free_result']($request); |
968 | 996 | |
969 | 997 | // If there're no real new topics in this board, mark the board as seen. |
970 | - if (empty($numNewTopics)) |
|
971 | - $_REQUEST['boardseen'] = true; |
|
972 | - else |
|
973 | - $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
998 | + if (empty($numNewTopics)) { |
|
999 | + $_REQUEST['boardseen'] = true; |
|
1000 | + } else { |
|
1001 | + $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
1002 | + } |
|
974 | 1003 | } |
975 | 1004 | // Probably one less topic - maybe not, but even if we decrease this too fast it will only make us look more often. |
976 | - elseif (isset($_SESSION['topicseen_cache'][$board])) |
|
977 | - $_SESSION['topicseen_cache'][$board]--; |
|
1005 | + elseif (isset($_SESSION['topicseen_cache'][$board])) { |
|
1006 | + $_SESSION['topicseen_cache'][$board]--; |
|
1007 | + } |
|
978 | 1008 | |
979 | 1009 | // Mark board as seen if we came using last post link from BoardIndex. (or other places...) |
980 | 1010 | if (isset($_REQUEST['boardseen'])) |
@@ -1031,23 +1061,26 @@ discard block |
||
1031 | 1061 | $temp = array(); |
1032 | 1062 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1033 | 1063 | { |
1034 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
1035 | - continue; |
|
1064 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
1065 | + continue; |
|
1066 | + } |
|
1036 | 1067 | |
1037 | 1068 | $temp[$row['id_attach']] = $row; |
1038 | 1069 | $temp[$row['id_attach']]['topic'] = $topic; |
1039 | 1070 | $temp[$row['id_attach']]['board'] = $board; |
1040 | 1071 | |
1041 | - if (!isset($context['loaded_attachments'][$row['id_msg']])) |
|
1042 | - $context['loaded_attachments'][$row['id_msg']] = array(); |
|
1072 | + if (!isset($context['loaded_attachments'][$row['id_msg']])) { |
|
1073 | + $context['loaded_attachments'][$row['id_msg']] = array(); |
|
1074 | + } |
|
1043 | 1075 | } |
1044 | 1076 | $smcFunc['db_free_result']($request); |
1045 | 1077 | |
1046 | 1078 | // This is better than sorting it with the query... |
1047 | 1079 | ksort($temp); |
1048 | 1080 | |
1049 | - foreach ($temp as $row) |
|
1050 | - $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
1081 | + foreach ($temp as $row) { |
|
1082 | + $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
1083 | + } |
|
1051 | 1084 | } |
1052 | 1085 | |
1053 | 1086 | $msg_parameters = array( |
@@ -1074,21 +1107,23 @@ discard block |
||
1074 | 1107 | ); |
1075 | 1108 | |
1076 | 1109 | // And the likes |
1077 | - if (!empty($modSettings['enable_likes'])) |
|
1078 | - $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
1110 | + if (!empty($modSettings['enable_likes'])) { |
|
1111 | + $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
1112 | + } |
|
1079 | 1113 | |
1080 | 1114 | // Go to the last message if the given time is beyond the time of the last message. |
1081 | - if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) |
|
1082 | - $context['start_from'] = $context['topicinfo']['num_replies']; |
|
1115 | + if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) { |
|
1116 | + $context['start_from'] = $context['topicinfo']['num_replies']; |
|
1117 | + } |
|
1083 | 1118 | |
1084 | 1119 | // Since the anchor information is needed on the top of the page we load these variables beforehand. |
1085 | 1120 | $context['first_message'] = isset($messages[$firstIndex]) ? $messages[$firstIndex] : $messages[0]; |
1086 | - if (empty($options['view_newest_first'])) |
|
1087 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
1088 | - else |
|
1089 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
1090 | - } |
|
1091 | - else |
|
1121 | + if (empty($options['view_newest_first'])) { |
|
1122 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
1123 | + } else { |
|
1124 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
1125 | + } |
|
1126 | + } else |
|
1092 | 1127 | { |
1093 | 1128 | $messages_request = false; |
1094 | 1129 | $context['first_message'] = 0; |
@@ -1124,8 +1159,9 @@ discard block |
||
1124 | 1159 | 'can_see_likes' => 'likes_view', |
1125 | 1160 | 'can_like' => 'likes_like', |
1126 | 1161 | ); |
1127 | - foreach ($common_permissions as $contextual => $perm) |
|
1128 | - $context[$contextual] = allowedTo($perm); |
|
1162 | + foreach ($common_permissions as $contextual => $perm) { |
|
1163 | + $context[$contextual] = allowedTo($perm); |
|
1164 | + } |
|
1129 | 1165 | |
1130 | 1166 | // Permissions with _any/_own versions. $context[YYY] => ZZZ_any/_own. |
1131 | 1167 | $anyown_permissions = array( |
@@ -1138,8 +1174,9 @@ discard block |
||
1138 | 1174 | 'can_reply_unapproved' => 'post_unapproved_replies', |
1139 | 1175 | 'can_view_warning' => 'profile_warning', |
1140 | 1176 | ); |
1141 | - foreach ($anyown_permissions as $contextual => $perm) |
|
1142 | - $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
1177 | + foreach ($anyown_permissions as $contextual => $perm) { |
|
1178 | + $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
1179 | + } |
|
1143 | 1180 | |
1144 | 1181 | if (!$user_info['is_admin'] && !$modSettings['topic_move_any']) |
1145 | 1182 | { |
@@ -1185,8 +1222,9 @@ discard block |
||
1185 | 1222 | // Check if the draft functions are enabled and that they have permission to use them (for quick reply.) |
1186 | 1223 | $context['drafts_save'] = !empty($modSettings['drafts_post_enabled']) && allowedTo('post_draft') && $context['can_reply']; |
1187 | 1224 | $context['drafts_autosave'] = !empty($context['drafts_save']) && !empty($modSettings['drafts_autosave_enabled']); |
1188 | - if (!empty($context['drafts_save'])) |
|
1189 | - loadLanguage('Drafts'); |
|
1225 | + if (!empty($context['drafts_save'])) { |
|
1226 | + loadLanguage('Drafts'); |
|
1227 | + } |
|
1190 | 1228 | |
1191 | 1229 | // When was the last time this topic was replied to? Should we warn them about it? |
1192 | 1230 | if (!empty($modSettings['oldTopicDays']) && ($context['can_reply'] || $context['can_reply_unapproved']) && empty($context['topicinfo']['is_sticky'])) |
@@ -1247,26 +1285,31 @@ discard block |
||
1247 | 1285 | // Message icons - customized icons are off? |
1248 | 1286 | $context['icons'] = getMessageIcons($board); |
1249 | 1287 | |
1250 | - if (!empty($context['icons'])) |
|
1251 | - $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1288 | + if (!empty($context['icons'])) { |
|
1289 | + $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1290 | + } |
|
1252 | 1291 | |
1253 | 1292 | // Build the normal button array. |
1254 | 1293 | $context['normal_buttons'] = array(); |
1255 | 1294 | |
1256 | - if ($context['can_reply']) |
|
1257 | - $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
1295 | + if ($context['can_reply']) { |
|
1296 | + $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
1297 | + } |
|
1258 | 1298 | |
1259 | - if ($context['can_add_poll']) |
|
1260 | - $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
1299 | + if ($context['can_add_poll']) { |
|
1300 | + $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
1301 | + } |
|
1261 | 1302 | |
1262 | - if ($context['can_mark_unread']) |
|
1263 | - $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1303 | + if ($context['can_mark_unread']) { |
|
1304 | + $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1305 | + } |
|
1264 | 1306 | |
1265 | - if ($context['can_print']) |
|
1266 | - $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
1307 | + if ($context['can_print']) { |
|
1308 | + $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
1309 | + } |
|
1267 | 1310 | |
1268 | - if ($context['can_set_notify']) |
|
1269 | - $context['normal_buttons']['notify'] = array( |
|
1311 | + if ($context['can_set_notify']) { |
|
1312 | + $context['normal_buttons']['notify'] = array( |
|
1270 | 1313 | 'text' => 'notify_topic_' . $context['topic_notification_mode'], |
1271 | 1314 | 'sub_buttons' => array( |
1272 | 1315 | array( |
@@ -1288,38 +1331,47 @@ discard block |
||
1288 | 1331 | ), |
1289 | 1332 | ), |
1290 | 1333 | ); |
1334 | + } |
|
1291 | 1335 | |
1292 | 1336 | // Build the mod button array |
1293 | 1337 | $context['mod_buttons'] = array(); |
1294 | 1338 | |
1295 | - if ($context['can_move']) |
|
1296 | - $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1339 | + if ($context['can_move']) { |
|
1340 | + $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1341 | + } |
|
1297 | 1342 | |
1298 | - if ($context['can_delete']) |
|
1299 | - $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
1343 | + if ($context['can_delete']) { |
|
1344 | + $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
1345 | + } |
|
1300 | 1346 | |
1301 | - if ($context['can_lock']) |
|
1302 | - $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1347 | + if ($context['can_lock']) { |
|
1348 | + $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1349 | + } |
|
1303 | 1350 | |
1304 | - if ($context['can_sticky']) |
|
1305 | - $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1351 | + if ($context['can_sticky']) { |
|
1352 | + $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1353 | + } |
|
1306 | 1354 | |
1307 | - if ($context['can_merge']) |
|
1308 | - $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
1355 | + if ($context['can_merge']) { |
|
1356 | + $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
1357 | + } |
|
1309 | 1358 | |
1310 | - if ($context['calendar_post']) |
|
1311 | - $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1359 | + if ($context['calendar_post']) { |
|
1360 | + $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1361 | + } |
|
1312 | 1362 | |
1313 | 1363 | // Restore topic. eh? No monkey business. |
1314 | - if ($context['can_restore_topic']) |
|
1315 | - $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1364 | + if ($context['can_restore_topic']) { |
|
1365 | + $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1366 | + } |
|
1316 | 1367 | |
1317 | 1368 | // Show a message in case a recently posted message became unapproved. |
1318 | 1369 | $context['becomesUnapproved'] = !empty($_SESSION['becomesUnapproved']) ? true : false; |
1319 | 1370 | |
1320 | 1371 | // Don't want to show this forever... |
1321 | - if ($context['becomesUnapproved']) |
|
1322 | - unset($_SESSION['becomesUnapproved']); |
|
1372 | + if ($context['becomesUnapproved']) { |
|
1373 | + unset($_SESSION['becomesUnapproved']); |
|
1374 | + } |
|
1323 | 1375 | |
1324 | 1376 | // Allow adding new mod buttons easily. |
1325 | 1377 | // Note: $context['normal_buttons'] and $context['mod_buttons'] are added for backward compatibility with 2.0, but are deprecated and should not be used |
@@ -1328,12 +1380,14 @@ discard block |
||
1328 | 1380 | call_integration_hook('integrate_mod_buttons', array(&$context['mod_buttons'])); |
1329 | 1381 | |
1330 | 1382 | // Load the drafts js file |
1331 | - if ($context['drafts_autosave']) |
|
1332 | - loadJavaScriptFile('drafts.js', array('defer' => false), 'smf_drafts'); |
|
1383 | + if ($context['drafts_autosave']) { |
|
1384 | + loadJavaScriptFile('drafts.js', array('defer' => false), 'smf_drafts'); |
|
1385 | + } |
|
1333 | 1386 | |
1334 | 1387 | // Spellcheck |
1335 | - if ($context['show_spellchecking']) |
|
1336 | - loadJavaScriptFile('spellcheck.js', array('defer' => false), 'smf_spellcheck'); |
|
1388 | + if ($context['show_spellchecking']) { |
|
1389 | + loadJavaScriptFile('spellcheck.js', array('defer' => false), 'smf_spellcheck'); |
|
1390 | + } |
|
1337 | 1391 | |
1338 | 1392 | // topic.js |
1339 | 1393 | loadJavaScriptFile('topic.js', array('defer' => false), 'smf_topic'); |
@@ -1367,16 +1421,19 @@ discard block |
||
1367 | 1421 | static $counter = null; |
1368 | 1422 | |
1369 | 1423 | // If the query returned false, bail. |
1370 | - if ($messages_request == false) |
|
1371 | - return false; |
|
1424 | + if ($messages_request == false) { |
|
1425 | + return false; |
|
1426 | + } |
|
1372 | 1427 | |
1373 | 1428 | // Remember which message this is. (ie. reply #83) |
1374 | - if ($counter === null || $reset) |
|
1375 | - $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
1429 | + if ($counter === null || $reset) { |
|
1430 | + $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
1431 | + } |
|
1376 | 1432 | |
1377 | 1433 | // Start from the beginning... |
1378 | - if ($reset) |
|
1379 | - return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1434 | + if ($reset) { |
|
1435 | + return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1436 | + } |
|
1380 | 1437 | |
1381 | 1438 | // Attempt to get the next message. |
1382 | 1439 | $message = $smcFunc['db_fetch_assoc']($messages_request); |
@@ -1390,19 +1447,21 @@ discard block |
||
1390 | 1447 | if (empty($context['icon_sources'])) |
1391 | 1448 | { |
1392 | 1449 | $context['icon_sources'] = array(); |
1393 | - foreach ($context['stable_icons'] as $icon) |
|
1394 | - $context['icon_sources'][$icon] = 'images_url'; |
|
1450 | + foreach ($context['stable_icons'] as $icon) { |
|
1451 | + $context['icon_sources'][$icon] = 'images_url'; |
|
1452 | + } |
|
1395 | 1453 | } |
1396 | 1454 | |
1397 | 1455 | // Message Icon Management... check the images exist. |
1398 | 1456 | if (empty($modSettings['messageIconChecks_disable'])) |
1399 | 1457 | { |
1400 | 1458 | // If the current icon isn't known, then we need to do something... |
1401 | - if (!isset($context['icon_sources'][$message['icon']])) |
|
1402 | - $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
1459 | + if (!isset($context['icon_sources'][$message['icon']])) { |
|
1460 | + $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
1461 | + } |
|
1462 | + } elseif (!isset($context['icon_sources'][$message['icon']])) { |
|
1463 | + $context['icon_sources'][$message['icon']] = 'images_url'; |
|
1403 | 1464 | } |
1404 | - elseif (!isset($context['icon_sources'][$message['icon']])) |
|
1405 | - $context['icon_sources'][$message['icon']] = 'images_url'; |
|
1406 | 1465 | |
1407 | 1466 | // If you're a lazy bum, you probably didn't give a subject... |
1408 | 1467 | $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject']; |
@@ -1427,8 +1486,7 @@ discard block |
||
1427 | 1486 | $memberContext[$message['id_member']]['email'] = $message['poster_email']; |
1428 | 1487 | $memberContext[$message['id_member']]['show_email'] = allowedTo('moderate_forum'); |
1429 | 1488 | $memberContext[$message['id_member']]['is_guest'] = true; |
1430 | - } |
|
1431 | - else |
|
1489 | + } else |
|
1432 | 1490 | { |
1433 | 1491 | // Define this here to make things a bit more readable |
1434 | 1492 | $can_view_warning = $context['user']['can_mod'] || allowedTo('view_warning_any') || ($message['id_member'] == $user_info['id'] && allowedTo('view_warning_own')); |
@@ -1451,8 +1509,9 @@ discard block |
||
1451 | 1509 | $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']); |
1452 | 1510 | |
1453 | 1511 | // If it's in the recycle bin we need to override whatever icon we did have. |
1454 | - if (!empty($board_info['recycle'])) |
|
1455 | - $message['icon'] = 'recycled'; |
|
1512 | + if (!empty($board_info['recycle'])) { |
|
1513 | + $message['icon'] = 'recycled'; |
|
1514 | + } |
|
1456 | 1515 | |
1457 | 1516 | require_once($sourcedir . '/Subs-Attachments.php'); |
1458 | 1517 | |
@@ -1496,32 +1555,36 @@ discard block |
||
1496 | 1555 | } |
1497 | 1556 | |
1498 | 1557 | // Are likes enable? |
1499 | - if (!empty($modSettings['enable_likes'])) |
|
1500 | - $output['likes'] = array( |
|
1558 | + if (!empty($modSettings['enable_likes'])) { |
|
1559 | + $output['likes'] = array( |
|
1501 | 1560 | 'count' => $message['likes'], |
1502 | 1561 | 'you' => in_array($message['id_msg'], $context['my_likes']), |
1503 | 1562 | 'can_like' => !$context['user']['is_guest'] && $message['id_member'] != $context['user']['id'] && !empty($context['can_like']), |
1504 | 1563 | ); |
1564 | + } |
|
1505 | 1565 | |
1506 | 1566 | // Is this user the message author? |
1507 | 1567 | $output['is_message_author'] = $message['id_member'] == $user_info['id']; |
1508 | - if (!empty($output['modified']['name'])) |
|
1509 | - $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
1568 | + if (!empty($output['modified']['name'])) { |
|
1569 | + $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
1570 | + } |
|
1510 | 1571 | |
1511 | 1572 | // Did they give a reason for editing? |
1512 | - if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) |
|
1513 | - $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
1573 | + if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) { |
|
1574 | + $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
1575 | + } |
|
1514 | 1576 | |
1515 | 1577 | // Any custom profile fields? |
1516 | - if (!empty($memberContext[$message['id_member']]['custom_fields'])) |
|
1517 | - foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
1578 | + if (!empty($memberContext[$message['id_member']]['custom_fields'])) { |
|
1579 | + foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
1518 | 1580 | $output['custom_fields'][$context['cust_profile_fields_placement'][$custom['placement']]][] = $custom; |
1581 | + } |
|
1519 | 1582 | |
1520 | - if (empty($options['view_newest_first'])) |
|
1521 | - $counter++; |
|
1522 | - |
|
1523 | - else |
|
1524 | - $counter--; |
|
1583 | + if (empty($options['view_newest_first'])) { |
|
1584 | + $counter++; |
|
1585 | + } else { |
|
1586 | + $counter--; |
|
1587 | + } |
|
1525 | 1588 | |
1526 | 1589 | call_integration_hook('integrate_prepare_display_context', array(&$output, &$message, $counter)); |
1527 | 1590 | |
@@ -1547,21 +1610,23 @@ discard block |
||
1547 | 1610 | $context['no_last_modified'] = true; |
1548 | 1611 | |
1549 | 1612 | // Prevent a preview image from being displayed twice. |
1550 | - if (isset($_GET['action']) && $_GET['action'] == 'dlattach' && isset($_GET['type']) && ($_GET['type'] == 'avatar' || $_GET['type'] == 'preview')) |
|
1551 | - return; |
|
1613 | + if (isset($_GET['action']) && $_GET['action'] == 'dlattach' && isset($_GET['type']) && ($_GET['type'] == 'avatar' || $_GET['type'] == 'preview')) { |
|
1614 | + return; |
|
1615 | + } |
|
1552 | 1616 | |
1553 | 1617 | // Make sure some attachment was requested! |
1554 | - if (!isset($_REQUEST['attach']) && !isset($_REQUEST['id'])) |
|
1555 | - fatal_lang_error('no_access', false); |
|
1618 | + if (!isset($_REQUEST['attach']) && !isset($_REQUEST['id'])) { |
|
1619 | + fatal_lang_error('no_access', false); |
|
1620 | + } |
|
1556 | 1621 | |
1557 | 1622 | $_REQUEST['attach'] = isset($_REQUEST['attach']) ? (int) $_REQUEST['attach'] : (int) $_REQUEST['id']; |
1558 | 1623 | |
1559 | 1624 | // Do we have a hook wanting to use our attachment system? We use $attachRequest to prevent accidental usage of $request. |
1560 | 1625 | $attachRequest = null; |
1561 | 1626 | call_integration_hook('integrate_download_request', array(&$attachRequest)); |
1562 | - if (!is_null($attachRequest) && $smcFunc['db_is_resource']($attachRequest)) |
|
1563 | - $request = $attachRequest; |
|
1564 | - else |
|
1627 | + if (!is_null($attachRequest) && $smcFunc['db_is_resource']($attachRequest)) { |
|
1628 | + $request = $attachRequest; |
|
1629 | + } else |
|
1565 | 1630 | { |
1566 | 1631 | // This checks only the current board for $board/$topic's permissions. |
1567 | 1632 | isAllowedTo('view_attachments'); |
@@ -1582,19 +1647,21 @@ discard block |
||
1582 | 1647 | ); |
1583 | 1648 | } |
1584 | 1649 | |
1585 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1586 | - fatal_lang_error('no_access', false); |
|
1650 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1651 | + fatal_lang_error('no_access', false); |
|
1652 | + } |
|
1587 | 1653 | |
1588 | 1654 | list ($id_folder, $real_filename, $file_hash, $file_ext, $id_attach, $attachment_type, $mime_type, $is_approved, $id_member) = $smcFunc['db_fetch_row']($request); |
1589 | 1655 | $smcFunc['db_free_result']($request); |
1590 | 1656 | |
1591 | 1657 | // If it isn't yet approved, do they have permission to view it? |
1592 | - if (!$is_approved && ($id_member == 0 || $user_info['id'] != $id_member) && ($attachment_type == 0 || $attachment_type == 3)) |
|
1593 | - isAllowedTo('approve_posts'); |
|
1658 | + if (!$is_approved && ($id_member == 0 || $user_info['id'] != $id_member) && ($attachment_type == 0 || $attachment_type == 3)) { |
|
1659 | + isAllowedTo('approve_posts'); |
|
1660 | + } |
|
1594 | 1661 | |
1595 | 1662 | // Update the download counter (unless it's a thumbnail). |
1596 | - if ($attachment_type != 3) |
|
1597 | - $smcFunc['db_query']('attach_download_increase', ' |
|
1663 | + if ($attachment_type != 3) { |
|
1664 | + $smcFunc['db_query']('attach_download_increase', ' |
|
1598 | 1665 | UPDATE LOW_PRIORITY {db_prefix}attachments |
1599 | 1666 | SET downloads = downloads + 1 |
1600 | 1667 | WHERE id_attach = {int:id_attach}', |
@@ -1602,15 +1669,15 @@ discard block |
||
1602 | 1669 | 'id_attach' => $id_attach, |
1603 | 1670 | ) |
1604 | 1671 | ); |
1672 | + } |
|
1605 | 1673 | |
1606 | 1674 | $filename = getAttachmentFilename($real_filename, $_REQUEST['attach'], $id_folder, false, $file_hash); |
1607 | 1675 | |
1608 | 1676 | // This is done to clear any output that was made before now. |
1609 | 1677 | ob_end_clean(); |
1610 | - if (!empty($modSettings['enableCompressedOutput']) && @filesize($filename) <= 4194304 && in_array($file_ext, array('txt', 'html', 'htm', 'js', 'doc', 'docx', 'rtf', 'css', 'php', 'log', 'xml', 'sql', 'c', 'java'))) |
|
1611 | - @ob_start('ob_gzhandler'); |
|
1612 | - |
|
1613 | - else |
|
1678 | + if (!empty($modSettings['enableCompressedOutput']) && @filesize($filename) <= 4194304 && in_array($file_ext, array('txt', 'html', 'htm', 'js', 'doc', 'docx', 'rtf', 'css', 'php', 'log', 'xml', 'sql', 'c', 'java'))) { |
|
1679 | + @ob_start('ob_gzhandler'); |
|
1680 | + } else |
|
1614 | 1681 | { |
1615 | 1682 | ob_start(); |
1616 | 1683 | header('Content-Encoding: none'); |
@@ -1653,8 +1720,9 @@ discard block |
||
1653 | 1720 | // Send the attachment headers. |
1654 | 1721 | header('Pragma: '); |
1655 | 1722 | |
1656 | - if (!isBrowser('gecko')) |
|
1657 | - header('Content-Transfer-Encoding: binary'); |
|
1723 | + if (!isBrowser('gecko')) { |
|
1724 | + header('Content-Transfer-Encoding: binary'); |
|
1725 | + } |
|
1658 | 1726 | |
1659 | 1727 | header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT'); |
1660 | 1728 | header('Last-Modified: ' . gmdate('D, d M Y H:i:s', filemtime($filename)) . ' GMT'); |
@@ -1663,18 +1731,19 @@ discard block |
||
1663 | 1731 | header('ETag: ' . $eTag); |
1664 | 1732 | |
1665 | 1733 | // Make sure the mime type warrants an inline display. |
1666 | - if (isset($_REQUEST['image']) && !empty($mime_type) && strpos($mime_type, 'image/') !== 0) |
|
1667 | - unset($_REQUEST['image']); |
|
1734 | + if (isset($_REQUEST['image']) && !empty($mime_type) && strpos($mime_type, 'image/') !== 0) { |
|
1735 | + unset($_REQUEST['image']); |
|
1736 | + } |
|
1668 | 1737 | |
1669 | 1738 | // Does this have a mime type? |
1670 | - elseif (!empty($mime_type) && (isset($_REQUEST['image']) || !in_array($file_ext, array('jpg', 'gif', 'jpeg', 'x-ms-bmp', 'png', 'psd', 'tiff', 'iff')))) |
|
1671 | - header('Content-Type: ' . strtr($mime_type, array('image/bmp' => 'image/x-ms-bmp'))); |
|
1672 | - |
|
1673 | - else |
|
1739 | + elseif (!empty($mime_type) && (isset($_REQUEST['image']) || !in_array($file_ext, array('jpg', 'gif', 'jpeg', 'x-ms-bmp', 'png', 'psd', 'tiff', 'iff')))) { |
|
1740 | + header('Content-Type: ' . strtr($mime_type, array('image/bmp' => 'image/x-ms-bmp'))); |
|
1741 | + } else |
|
1674 | 1742 | { |
1675 | 1743 | header('Content-Type: ' . (isBrowser('ie') || isBrowser('opera') ? 'application/octetstream' : 'application/octet-stream')); |
1676 | - if (isset($_REQUEST['image'])) |
|
1677 | - unset($_REQUEST['image']); |
|
1744 | + if (isset($_REQUEST['image'])) { |
|
1745 | + unset($_REQUEST['image']); |
|
1746 | + } |
|
1678 | 1747 | } |
1679 | 1748 | |
1680 | 1749 | // Convert the file to UTF-8, cuz most browsers dig that. |
@@ -1682,23 +1751,22 @@ discard block |
||
1682 | 1751 | $disposition = !isset($_REQUEST['image']) ? 'attachment' : 'inline'; |
1683 | 1752 | |
1684 | 1753 | // Different browsers like different standards... |
1685 | - if (isBrowser('firefox')) |
|
1686 | - header('Content-Disposition: ' . $disposition . '; filename*=UTF-8\'\'' . rawurlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name))); |
|
1687 | - |
|
1688 | - elseif (isBrowser('opera')) |
|
1689 | - header('Content-Disposition: ' . $disposition . '; filename="' . preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name) . '"'); |
|
1690 | - |
|
1691 | - elseif (isBrowser('ie')) |
|
1692 | - header('Content-Disposition: ' . $disposition . '; filename="' . urlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name)) . '"'); |
|
1693 | - |
|
1694 | - else |
|
1695 | - header('Content-Disposition: ' . $disposition . '; filename="' . $utf8name . '"'); |
|
1754 | + if (isBrowser('firefox')) { |
|
1755 | + header('Content-Disposition: ' . $disposition . '; filename*=UTF-8\'\'' . rawurlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name))); |
|
1756 | + } elseif (isBrowser('opera')) { |
|
1757 | + header('Content-Disposition: ' . $disposition . '; filename="' . preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name) . '"'); |
|
1758 | + } elseif (isBrowser('ie')) { |
|
1759 | + header('Content-Disposition: ' . $disposition . '; filename="' . urlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name)) . '"'); |
|
1760 | + } else { |
|
1761 | + header('Content-Disposition: ' . $disposition . '; filename="' . $utf8name . '"'); |
|
1762 | + } |
|
1696 | 1763 | |
1697 | 1764 | // If this has an "image extension" - but isn't actually an image - then ensure it isn't cached cause of silly IE. |
1698 | - if (!isset($_REQUEST['image']) && in_array($file_ext, array('gif', 'jpg', 'bmp', 'png', 'jpeg', 'tiff'))) |
|
1699 | - header('Cache-Control: no-cache'); |
|
1700 | - else |
|
1701 | - header('Cache-Control: max-age=' . (525600 * 60) . ', private'); |
|
1765 | + if (!isset($_REQUEST['image']) && in_array($file_ext, array('gif', 'jpg', 'bmp', 'png', 'jpeg', 'tiff'))) { |
|
1766 | + header('Cache-Control: no-cache'); |
|
1767 | + } else { |
|
1768 | + header('Cache-Control: max-age=' . (525600 * 60) . ', private'); |
|
1769 | + } |
|
1702 | 1770 | |
1703 | 1771 | header('Content-Length: ' . filesize($filename)); |
1704 | 1772 | |
@@ -1708,20 +1776,23 @@ discard block |
||
1708 | 1776 | // Recode line endings for text files, if enabled. |
1709 | 1777 | if (!empty($modSettings['attachmentRecodeLineEndings']) && !isset($_REQUEST['image']) && in_array($file_ext, array('txt', 'css', 'htm', 'html', 'php', 'xml'))) |
1710 | 1778 | { |
1711 | - if (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== false) |
|
1712 | - $callback = function($buffer) |
|
1779 | + if (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== false) { |
|
1780 | + $callback = function($buffer) |
|
1713 | 1781 | { |
1714 | 1782 | return preg_replace('~[\r]?\n~', "\r\n", $buffer); |
1783 | + } |
|
1715 | 1784 | }; |
1716 | - elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) |
|
1717 | - $callback = function($buffer) |
|
1785 | + elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) { |
|
1786 | + $callback = function($buffer) |
|
1718 | 1787 | { |
1719 | 1788 | return preg_replace('~[\r]?\n~', "\r", $buffer); |
1789 | + } |
|
1720 | 1790 | }; |
1721 | - else |
|
1722 | - $callback = function($buffer) |
|
1791 | + else { |
|
1792 | + $callback = function($buffer) |
|
1723 | 1793 | { |
1724 | 1794 | return preg_replace('~[\r]?\n~', "\n", $buffer); |
1795 | + } |
|
1725 | 1796 | }; |
1726 | 1797 | } |
1727 | 1798 | |
@@ -1729,23 +1800,26 @@ discard block |
||
1729 | 1800 | if (filesize($filename) > 4194304) |
1730 | 1801 | { |
1731 | 1802 | // Forcibly end any output buffering going on. |
1732 | - while (@ob_get_level() > 0) |
|
1733 | - @ob_end_clean(); |
|
1803 | + while (@ob_get_level() > 0) { |
|
1804 | + @ob_end_clean(); |
|
1805 | + } |
|
1734 | 1806 | |
1735 | 1807 | $fp = fopen($filename, 'rb'); |
1736 | 1808 | while (!feof($fp)) |
1737 | 1809 | { |
1738 | - if (isset($callback)) |
|
1739 | - echo $callback(fread($fp, 8192)); |
|
1740 | - else |
|
1741 | - echo fread($fp, 8192); |
|
1810 | + if (isset($callback)) { |
|
1811 | + echo $callback(fread($fp, 8192)); |
|
1812 | + } else { |
|
1813 | + echo fread($fp, 8192); |
|
1814 | + } |
|
1742 | 1815 | flush(); |
1743 | 1816 | } |
1744 | 1817 | fclose($fp); |
1745 | 1818 | } |
1746 | 1819 | // On some of the less-bright hosts, readfile() is disabled. It's just a faster, more byte safe, version of what's in the if. |
1747 | - elseif (isset($callback) || @readfile($filename) === null) |
|
1748 | - echo isset($callback) ? $callback(file_get_contents($filename)) : file_get_contents($filename); |
|
1820 | + elseif (isset($callback) || @readfile($filename) === null) { |
|
1821 | + echo isset($callback) ? $callback(file_get_contents($filename)) : file_get_contents($filename); |
|
1822 | + } |
|
1749 | 1823 | |
1750 | 1824 | obExit(false); |
1751 | 1825 | } |
@@ -1758,8 +1832,9 @@ discard block |
||
1758 | 1832 | */ |
1759 | 1833 | function approved_attach_sort($a, $b) |
1760 | 1834 | { |
1761 | - if ($a['is_approved'] == $b['is_approved']) |
|
1762 | - return 0; |
|
1835 | + if ($a['is_approved'] == $b['is_approved']) { |
|
1836 | + return 0; |
|
1837 | + } |
|
1763 | 1838 | |
1764 | 1839 | return $a['is_approved'] > $b['is_approved'] ? -1 : 1; |
1765 | 1840 | } |
@@ -1776,16 +1851,19 @@ discard block |
||
1776 | 1851 | |
1777 | 1852 | require_once($sourcedir . '/RemoveTopic.php'); |
1778 | 1853 | |
1779 | - if (empty($_REQUEST['msgs'])) |
|
1780 | - redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
1854 | + if (empty($_REQUEST['msgs'])) { |
|
1855 | + redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
1856 | + } |
|
1781 | 1857 | |
1782 | 1858 | $messages = array(); |
1783 | - foreach ($_REQUEST['msgs'] as $dummy) |
|
1784 | - $messages[] = (int) $dummy; |
|
1859 | + foreach ($_REQUEST['msgs'] as $dummy) { |
|
1860 | + $messages[] = (int) $dummy; |
|
1861 | + } |
|
1785 | 1862 | |
1786 | 1863 | // We are restoring messages. We handle this in another place. |
1787 | - if (isset($_REQUEST['restore_selected'])) |
|
1788 | - redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1864 | + if (isset($_REQUEST['restore_selected'])) { |
|
1865 | + redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1866 | + } |
|
1789 | 1867 | if (isset($_REQUEST['split_selection'])) |
1790 | 1868 | { |
1791 | 1869 | $request = $smcFunc['db_query']('', ' |
@@ -1804,8 +1882,9 @@ discard block |
||
1804 | 1882 | } |
1805 | 1883 | |
1806 | 1884 | // Allowed to delete any message? |
1807 | - if (allowedTo('delete_any')) |
|
1808 | - $allowed_all = true; |
|
1885 | + if (allowedTo('delete_any')) { |
|
1886 | + $allowed_all = true; |
|
1887 | + } |
|
1809 | 1888 | // Allowed to delete replies to their messages? |
1810 | 1889 | elseif (allowedTo('delete_replies')) |
1811 | 1890 | { |
@@ -1822,13 +1901,14 @@ discard block |
||
1822 | 1901 | $smcFunc['db_free_result']($request); |
1823 | 1902 | |
1824 | 1903 | $allowed_all = $starter == $user_info['id']; |
1904 | + } else { |
|
1905 | + $allowed_all = false; |
|
1825 | 1906 | } |
1826 | - else |
|
1827 | - $allowed_all = false; |
|
1828 | 1907 | |
1829 | 1908 | // Make sure they're allowed to delete their own messages, if not any. |
1830 | - if (!$allowed_all) |
|
1831 | - isAllowedTo('delete_own'); |
|
1909 | + if (!$allowed_all) { |
|
1910 | + isAllowedTo('delete_own'); |
|
1911 | + } |
|
1832 | 1912 | |
1833 | 1913 | // Allowed to remove which messages? |
1834 | 1914 | $request = $smcFunc['db_query']('', ' |
@@ -1848,8 +1928,9 @@ discard block |
||
1848 | 1928 | $messages = array(); |
1849 | 1929 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1850 | 1930 | { |
1851 | - if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) |
|
1852 | - continue; |
|
1931 | + if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) { |
|
1932 | + continue; |
|
1933 | + } |
|
1853 | 1934 | |
1854 | 1935 | $messages[$row['id_msg']] = array($row['subject'], $row['id_member']); |
1855 | 1936 | } |
@@ -1872,17 +1953,20 @@ discard block |
||
1872 | 1953 | foreach ($messages as $message => $info) |
1873 | 1954 | { |
1874 | 1955 | // Just skip the first message - if it's not the last. |
1875 | - if ($message == $first_message && $message != $last_message) |
|
1876 | - continue; |
|
1956 | + if ($message == $first_message && $message != $last_message) { |
|
1957 | + continue; |
|
1958 | + } |
|
1877 | 1959 | // If the first message is going then don't bother going back to the topic as we're effectively deleting it. |
1878 | - elseif ($message == $first_message) |
|
1879 | - $topicGone = true; |
|
1960 | + elseif ($message == $first_message) { |
|
1961 | + $topicGone = true; |
|
1962 | + } |
|
1880 | 1963 | |
1881 | 1964 | removeMessage($message); |
1882 | 1965 | |
1883 | 1966 | // Log this moderation action ;). |
1884 | - if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) |
|
1885 | - logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
1967 | + if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) { |
|
1968 | + logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
1969 | + } |
|
1886 | 1970 | } |
1887 | 1971 | |
1888 | 1972 | redirectexit(!empty($topicGone) ? 'board=' . $board : 'topic=' . $topic . '.' . $_REQUEST['start']); |