@@ -12,7 +12,8 @@ |
||
12 | 12 | header('location: ' . $boardurl); |
13 | 13 | } |
14 | 14 | // Can't find it... just forget it. |
15 | -else |
|
15 | +else { |
|
16 | 16 | exit; |
17 | +} |
|
17 | 18 | |
18 | 19 | ?> |
19 | 20 | \ No newline at end of file |
@@ -12,7 +12,8 @@ |
||
12 | 12 | header('location: ' . $boardurl); |
13 | 13 | } |
14 | 14 | // Can't find it... just forget it. |
15 | -else |
|
15 | +else { |
|
16 | 16 | exit; |
17 | +} |
|
17 | 18 | |
18 | 19 | ?> |
19 | 20 | \ No newline at end of file |
@@ -12,7 +12,8 @@ |
||
12 | 12 | header('location: ' . $boardurl); |
13 | 13 | } |
14 | 14 | // Can't find it... just forget it. |
15 | -else |
|
15 | +else { |
|
16 | 16 | exit; |
17 | +} |
|
17 | 18 | |
18 | 19 | ?> |
19 | 20 | \ No newline at end of file |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | foreach ($message['custom_fields']['above_member'] as $custom) |
233 | 233 | echo ' |
234 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
234 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
235 | 235 | |
236 | 236 | echo ' |
237 | 237 | </ul> |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | if (!empty($message['custom_fields']['below_avatar'])) |
281 | 281 | foreach ($message['custom_fields']['below_avatar'] as $custom) |
282 | 282 | echo ' |
283 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
283 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
284 | 284 | |
285 | 285 | if (!$message['member']['is_guest']) |
286 | 286 | echo ' |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | |
323 | 323 | foreach ($message['custom_fields']['icons'] as $custom) |
324 | 324 | echo ' |
325 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
325 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
326 | 326 | |
327 | 327 | echo ' |
328 | 328 | </ol> |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | if (!empty($message['custom_fields']['standard'])) |
387 | 387 | foreach ($message['custom_fields']['standard'] as $custom) |
388 | 388 | echo ' |
389 | - <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>'; |
|
389 | + <li class="custom ', $custom['col_name'], '">', $custom['title'], ': ', $custom['value'], '</li>'; |
|
390 | 390 | |
391 | 391 | // Are we showing the warning status? |
392 | 392 | if ($message['member']['can_see_warning']) |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | if (!empty($message['custom_fields']['bottom_poster'])) |
398 | 398 | foreach ($message['custom_fields']['bottom_poster'] as $custom) |
399 | 399 | echo ' |
400 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
400 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
401 | 401 | } |
402 | 402 | |
403 | 403 | // Done with the information about the poster... on to the post itself. |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | |
499 | 499 | foreach ($message['custom_fields']['above_signature'] as $custom) |
500 | 500 | echo ' |
501 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
501 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
502 | 502 | |
503 | 503 | echo ' |
504 | 504 | </ul> |
@@ -521,7 +521,7 @@ discard block |
||
521 | 521 | |
522 | 522 | foreach ($message['custom_fields']['below_signature'] as $custom) |
523 | 523 | echo ' |
524 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
524 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
525 | 525 | |
526 | 526 | echo ' |
527 | 527 | </ul> |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | while ($message = $context['get_pmessage']('subject')) |
658 | 658 | { |
659 | 659 | echo ' |
660 | - <tr class="windowbg', $message['is_unread'] ? ' unread_pm' : '','"> |
|
660 | + <tr class="windowbg', $message['is_unread'] ? ' unread_pm' : '', '"> |
|
661 | 661 | <td class="table_icon"> |
662 | 662 | <script> |
663 | 663 | currentLabels[', $message['id'], '] = {'; |
@@ -946,13 +946,13 @@ discard block |
||
946 | 946 | // You can only reply if they are not a guest... |
947 | 947 | if (!$message['member']['is_guest']) |
948 | 948 | echo ' |
949 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button , '</a>', $context['menu_separator'], ' |
|
950 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button , '</a> ', $context['menu_separator']; |
|
949 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button, '</a>', $context['menu_separator'], ' |
|
950 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button, '</a> ', $context['menu_separator']; |
|
951 | 951 | |
952 | 952 | // This is for "forwarding" - even if the member is gone. |
953 | 953 | else |
954 | 954 | echo ' |
955 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button , '</a>', $context['menu_separator']; |
|
955 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button, '</a>', $context['menu_separator']; |
|
956 | 956 | } |
957 | 957 | |
958 | 958 | echo ' |
@@ -1054,7 +1054,7 @@ discard block |
||
1054 | 1054 | <div class="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'noticebox' : 'errorbox', '"', empty($context['post_error']['messages']) ? ' style="display: none"' : '', ' id="errors"> |
1055 | 1055 | <dl> |
1056 | 1056 | <dt> |
1057 | - <strong id="error_serious">', $txt['error_while_submitting'] , '</strong> |
|
1057 | + <strong id="error_serious">', $txt['error_while_submitting'], '</strong> |
|
1058 | 1058 | </dt> |
1059 | 1059 | <dd class="error" id="error_list"> |
1060 | 1060 | ', empty($context['post_error']['messages']) ? '' : implode('<br>', $context['post_error']['messages']), ' |
@@ -1110,7 +1110,7 @@ discard block |
||
1110 | 1110 | <span', (isset($context['post_error']['no_subject']) ? ' class="error"' : ''), ' id="caption_subject">', $txt['subject'], ':</span> |
1111 | 1111 | </dt> |
1112 | 1112 | <dd id="pm_subject"> |
1113 | - <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="80"',isset($context['post_error']['no_subject']) ? ' class="error"' : '', '> |
|
1113 | + <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="80"', isset($context['post_error']['no_subject']) ? ' class="error"' : '', '> |
|
1114 | 1114 | </dd> |
1115 | 1115 | </dl>'; |
1116 | 1116 | |
@@ -1463,7 +1463,7 @@ discard block |
||
1463 | 1463 | echo ' |
1464 | 1464 | <div class="padding"> |
1465 | 1465 | <input type="submit" name="save" value="', $txt['save'], '" class="button"> |
1466 | - <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'] ,'" class="button you_sure"> |
|
1466 | + <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'], '" class="button you_sure"> |
|
1467 | 1467 | </div>'; |
1468 | 1468 | |
1469 | 1469 | echo ' |
@@ -1628,7 +1628,7 @@ discard block |
||
1628 | 1628 | if (!empty($context['rules'])) |
1629 | 1629 | echo ' |
1630 | 1630 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1631 | - <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'] ,'" class="button smalltext you_sure">'; |
|
1631 | + <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'], '" class="button smalltext you_sure">'; |
|
1632 | 1632 | |
1633 | 1633 | echo ' |
1634 | 1634 | </div> |
@@ -1871,9 +1871,9 @@ discard block |
||
1871 | 1871 | |
1872 | 1872 | echo ' |
1873 | 1873 | <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();"> |
1874 | - <option value="">', $txt['pm_rule_sel_action'] , ':</option> |
|
1875 | - <option value="lab"', $action['t'] == 'lab' ? ' selected' : '', '>', $txt['pm_rule_label'] , '</option> |
|
1876 | - <option value="del"', $action['t'] == 'del' ? ' selected' : '', '>', $txt['pm_rule_delete'] , '</option> |
|
1874 | + <option value="">', $txt['pm_rule_sel_action'], ':</option> |
|
1875 | + <option value="lab"', $action['t'] == 'lab' ? ' selected' : '', '>', $txt['pm_rule_label'], '</option> |
|
1876 | + <option value="del"', $action['t'] == 'del' ? ' selected' : '', '>', $txt['pm_rule_delete'], '</option> |
|
1877 | 1877 | </select> |
1878 | 1878 | <span id="labdiv', $k, '"> |
1879 | 1879 | <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();"> |
@@ -1985,7 +1985,7 @@ discard block |
||
1985 | 1985 | </div> |
1986 | 1986 | <ul class="quickbuttons"> |
1987 | 1987 | <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;id_draft=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons modifybutton"></span>', $txt['draft_edit'], '</a></li> |
1988 | - <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;delete=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['draft_remove'] ,'?" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['draft_delete'], '</a></li> |
|
1988 | + <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;delete=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['draft_remove'], '?" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['draft_delete'], '</a></li> |
|
1989 | 1989 | </ul> |
1990 | 1990 | </div><!-- .windowbg -->'; |
1991 | 1991 | } |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | <div id="personal_messages">'; |
22 | 22 | |
23 | 23 | // Show the capacity bar, if available. |
24 | - if (!empty($context['limit_bar'])) |
|
25 | - echo ' |
|
24 | + if (!empty($context['limit_bar'])) { |
|
25 | + echo ' |
|
26 | 26 | <div class="cat_bar"> |
27 | 27 | <h3 class="catbg"> |
28 | 28 | <span class="floatleft">', $txt['pm_capacity'], ':</span> |
@@ -32,14 +32,16 @@ discard block |
||
32 | 32 | <span class="floatright', $context['limit_bar']['percent'] > 90 ? ' alert' : '', '">', $context['limit_bar']['text'], '</span> |
33 | 33 | </h3> |
34 | 34 | </div>'; |
35 | + } |
|
35 | 36 | |
36 | 37 | // Message sent? Show a small indication. |
37 | - if (isset($context['pm_sent'])) |
|
38 | - echo ' |
|
38 | + if (isset($context['pm_sent'])) { |
|
39 | + echo ' |
|
39 | 40 | <div class="infobox"> |
40 | 41 | ', $txt['pm_sent'], ' |
41 | 42 | </div>'; |
42 | -} |
|
43 | + } |
|
44 | + } |
|
43 | 45 | |
44 | 46 | /** |
45 | 47 | * Just the end of the index bar, nothing special. |
@@ -68,13 +70,13 @@ discard block |
||
68 | 70 | </div> |
69 | 71 | <div class="pm_unread">'; |
70 | 72 | |
71 | - if (empty($context['unread_pms'])) |
|
72 | - echo ' |
|
73 | + if (empty($context['unread_pms'])) { |
|
74 | + echo ' |
|
73 | 75 | <div class="no_unread">', $txt['pm_no_unread'], '</div>'; |
74 | - else |
|
76 | + } else |
|
75 | 77 | { |
76 | - foreach ($context['unread_pms'] as $id_pm => $pm_details) |
|
77 | - echo ' |
|
78 | + foreach ($context['unread_pms'] as $id_pm => $pm_details) { |
|
79 | + echo ' |
|
78 | 80 | <div class="unread"> |
79 | 81 | ', !empty($pm_details['member']) ? $pm_details['member']['avatar']['image'] : '', ' |
80 | 82 | <div class="details"> |
@@ -85,6 +87,7 @@ discard block |
||
85 | 87 | </div> |
86 | 88 | </div> |
87 | 89 | </div>'; |
90 | + } |
|
88 | 91 | } |
89 | 92 | |
90 | 93 | echo ' |
@@ -193,14 +196,15 @@ discard block |
||
193 | 196 | if ($context['get_pmessage']('message', true)) |
194 | 197 | { |
195 | 198 | // Show the helpful titlebar - generally. |
196 | - if ($context['display_mode'] != 1) |
|
197 | - echo ' |
|
199 | + if ($context['display_mode'] != 1) { |
|
200 | + echo ' |
|
198 | 201 | <div class="cat_bar"> |
199 | 202 | <h3 class="catbg"> |
200 | 203 | <span id="author">', $txt['author'], '</span> |
201 | 204 | <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span> |
202 | 205 | </h3> |
203 | 206 | </div>'; |
207 | + } |
|
204 | 208 | |
205 | 209 | // Show a few buttons if we are in conversation mode and outputting the first message. |
206 | 210 | if ($context['display_mode'] == 2) |
@@ -228,9 +232,10 @@ discard block |
||
228 | 232 | <div class="custom_fields_above_member"> |
229 | 233 | <ul class="nolist">'; |
230 | 234 | |
231 | - foreach ($message['custom_fields']['above_member'] as $custom) |
|
232 | - echo ' |
|
235 | + foreach ($message['custom_fields']['above_member'] as $custom) { |
|
236 | + echo ' |
|
233 | 237 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
238 | + } |
|
234 | 239 | |
235 | 240 | echo ' |
236 | 241 | </ul> |
@@ -242,25 +247,28 @@ discard block |
||
242 | 247 | <a id="msg', $message['id'], '"></a>'; |
243 | 248 | |
244 | 249 | // Show online and offline buttons? |
245 | - if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) |
|
246 | - echo ' |
|
250 | + if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) { |
|
251 | + echo ' |
|
247 | 252 | <span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>'; |
253 | + } |
|
248 | 254 | |
249 | 255 | // Custom fields BEFORE the username? |
250 | - if (!empty($message['custom_fields']['before_member'])) |
|
251 | - foreach ($message['custom_fields']['before_member'] as $custom) |
|
256 | + if (!empty($message['custom_fields']['before_member'])) { |
|
257 | + foreach ($message['custom_fields']['before_member'] as $custom) |
|
252 | 258 | echo ' |
253 | 259 | <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>'; |
260 | + } |
|
254 | 261 | |
255 | 262 | // Show a link to the member's profile. |
256 | 263 | echo ' |
257 | 264 | ', $message['member']['link']; |
258 | 265 | |
259 | 266 | // Custom fields AFTER the username? |
260 | - if (!empty($message['custom_fields']['after_member'])) |
|
261 | - foreach ($message['custom_fields']['after_member'] as $custom) |
|
267 | + if (!empty($message['custom_fields']['after_member'])) { |
|
268 | + foreach ($message['custom_fields']['after_member'] as $custom) |
|
262 | 269 | echo ' |
263 | 270 | <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>'; |
271 | + } |
|
264 | 272 | |
265 | 273 | echo ' |
266 | 274 | </h4>'; |
@@ -269,48 +277,56 @@ discard block |
||
269 | 277 | <ul class="user_info">'; |
270 | 278 | |
271 | 279 | // Show the user's avatar. |
272 | - if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) |
|
273 | - echo ' |
|
280 | + if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) { |
|
281 | + echo ' |
|
274 | 282 | <li class="avatar"> |
275 | 283 | <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a> |
276 | 284 | </li>'; |
285 | + } |
|
277 | 286 | |
278 | 287 | // Are there any custom fields below the avatar? |
279 | - if (!empty($message['custom_fields']['below_avatar'])) |
|
280 | - foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
288 | + if (!empty($message['custom_fields']['below_avatar'])) { |
|
289 | + foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
281 | 290 | echo ' |
282 | 291 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
292 | + } |
|
283 | 293 | |
284 | - if (!$message['member']['is_guest']) |
|
285 | - echo ' |
|
294 | + if (!$message['member']['is_guest']) { |
|
295 | + echo ' |
|
286 | 296 | <li class="icons">', $message['member']['group_icons'], '</li>'; |
297 | + } |
|
287 | 298 | // Show the member's primary group (like 'Administrator') if they have one. |
288 | - if (isset($message['member']['group']) && $message['member']['group'] != '') |
|
289 | - echo ' |
|
299 | + if (isset($message['member']['group']) && $message['member']['group'] != '') { |
|
300 | + echo ' |
|
290 | 301 | <li class="membergroup">', $message['member']['group'], '</li>'; |
302 | + } |
|
291 | 303 | |
292 | 304 | // Show the member's custom title, if they have one. |
293 | - if (isset($message['member']['title']) && $message['member']['title'] != '') |
|
294 | - echo ' |
|
305 | + if (isset($message['member']['title']) && $message['member']['title'] != '') { |
|
306 | + echo ' |
|
295 | 307 | <li class="title">', $message['member']['title'], '</li>'; |
308 | + } |
|
296 | 309 | |
297 | 310 | // Don't show these things for guests. |
298 | 311 | if (!$message['member']['is_guest']) |
299 | 312 | { |
300 | 313 | // Show the post group if and only if they have no other group or the option is on, and they are in a post group. |
301 | - if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') |
|
302 | - echo ' |
|
314 | + if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') { |
|
315 | + echo ' |
|
303 | 316 | <li class="postgroup">', $message['member']['post_group'], '</li>'; |
317 | + } |
|
304 | 318 | |
305 | 319 | // Show how many posts they have made. |
306 | - if (!isset($context['disabled_fields']['posts'])) |
|
307 | - echo ' |
|
320 | + if (!isset($context['disabled_fields']['posts'])) { |
|
321 | + echo ' |
|
308 | 322 | <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>'; |
323 | + } |
|
309 | 324 | |
310 | 325 | // Show their personal text? |
311 | - if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') |
|
312 | - echo ' |
|
326 | + if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') { |
|
327 | + echo ' |
|
313 | 328 | <li class="blurb">', $message['member']['blurb'], '</li>'; |
329 | + } |
|
314 | 330 | |
315 | 331 | // Any custom fields to show as icons? |
316 | 332 | if (!empty($message['custom_fields']['icons'])) |
@@ -319,9 +335,10 @@ discard block |
||
319 | 335 | <li class="im_icons"> |
320 | 336 | <ol>'; |
321 | 337 | |
322 | - foreach ($message['custom_fields']['icons'] as $custom) |
|
323 | - echo ' |
|
338 | + foreach ($message['custom_fields']['icons'] as $custom) { |
|
339 | + echo ' |
|
324 | 340 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
341 | + } |
|
325 | 342 | |
326 | 343 | echo ' |
327 | 344 | </ol> |
@@ -329,25 +346,28 @@ discard block |
||
329 | 346 | } |
330 | 347 | |
331 | 348 | // Show the IP to this user for this post - because you can moderate? |
332 | - if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) |
|
333 | - echo ' |
|
349 | + if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) { |
|
350 | + echo ' |
|
334 | 351 | <li class="poster_ip"> |
335 | 352 | <a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a> |
336 | 353 | </li>'; |
354 | + } |
|
337 | 355 | |
338 | 356 | // Or, should we show it because this is you? |
339 | - elseif ($message['can_see_ip']) |
|
340 | - echo ' |
|
357 | + elseif ($message['can_see_ip']) { |
|
358 | + echo ' |
|
341 | 359 | <li class="poster_ip"> |
342 | 360 | <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a> |
343 | 361 | </li>'; |
362 | + } |
|
344 | 363 | |
345 | 364 | // Okay, you are logged in, then we can show something about why IPs are logged... |
346 | - else |
|
347 | - echo ' |
|
365 | + else { |
|
366 | + echo ' |
|
348 | 367 | <li class="poster_ip"> |
349 | 368 | <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a> |
350 | 369 | </li>'; |
370 | + } |
|
351 | 371 | |
352 | 372 | // Show the profile, website, email address, and personal message buttons. |
353 | 373 | if ($message['member']['show_profile_buttons']) |
@@ -357,24 +377,28 @@ discard block |
||
357 | 377 | <ol class="profile_icons">'; |
358 | 378 | |
359 | 379 | // Show the profile button |
360 | - if ($message['member']['can_view_profile']) |
|
361 | - echo ' |
|
380 | + if ($message['member']['can_view_profile']) { |
|
381 | + echo ' |
|
362 | 382 | <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '">' : $txt['view_profile']), '</a></li>'; |
383 | + } |
|
363 | 384 | |
364 | 385 | // Don't show an icon if they haven't specified a website. |
365 | - if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) |
|
366 | - echo ' |
|
386 | + if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) { |
|
387 | + echo ' |
|
367 | 388 | <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
389 | + } |
|
368 | 390 | |
369 | 391 | // Don't show the email address if they want it hidden. |
370 | - if ($message['member']['show_email']) |
|
371 | - echo ' |
|
392 | + if ($message['member']['show_email']) { |
|
393 | + echo ' |
|
372 | 394 | <li><a href="mailto:', $message['member']['email'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>'; |
395 | + } |
|
373 | 396 | |
374 | 397 | // Since we know this person isn't a guest, you *can* message them. |
375 | - if ($context['can_send_pm']) |
|
376 | - echo ' |
|
398 | + if ($context['can_send_pm']) { |
|
399 | + echo ' |
|
377 | 400 | <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="generic_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>'; |
401 | + } |
|
378 | 402 | |
379 | 403 | echo ' |
380 | 404 | </ol> |
@@ -382,21 +406,24 @@ discard block |
||
382 | 406 | } |
383 | 407 | |
384 | 408 | // Any custom fields for standard placement? |
385 | - if (!empty($message['custom_fields']['standard'])) |
|
386 | - foreach ($message['custom_fields']['standard'] as $custom) |
|
409 | + if (!empty($message['custom_fields']['standard'])) { |
|
410 | + foreach ($message['custom_fields']['standard'] as $custom) |
|
387 | 411 | echo ' |
388 | 412 | <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>'; |
413 | + } |
|
389 | 414 | |
390 | 415 | // Are we showing the warning status? |
391 | - if ($message['member']['can_see_warning']) |
|
392 | - echo ' |
|
416 | + if ($message['member']['can_see_warning']) { |
|
417 | + echo ' |
|
393 | 418 | <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="generic_icons warning_', $message['member']['warning_status'], '"></span>', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>'; |
419 | + } |
|
394 | 420 | |
395 | 421 | // Are there any custom fields to show at the bottom of the poster info? |
396 | - if (!empty($message['custom_fields']['bottom_poster'])) |
|
397 | - foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
422 | + if (!empty($message['custom_fields']['bottom_poster'])) { |
|
423 | + foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
398 | 424 | echo ' |
399 | 425 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
426 | + } |
|
400 | 427 | } |
401 | 428 | |
402 | 429 | // Done with the information about the poster... on to the post itself. |
@@ -415,25 +442,29 @@ discard block |
||
415 | 442 | <span class="smalltext">« <strong> ', $txt['sent_to'], ':</strong> '; |
416 | 443 | |
417 | 444 | // People it was sent directly to.... |
418 | - if (!empty($message['recipients']['to'])) |
|
419 | - echo implode(', ', $message['recipients']['to']); |
|
445 | + if (!empty($message['recipients']['to'])) { |
|
446 | + echo implode(', ', $message['recipients']['to']); |
|
447 | + } |
|
420 | 448 | |
421 | 449 | // Otherwise, we're just going to say "some people"... |
422 | - elseif ($context['folder'] != 'sent') |
|
423 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
450 | + elseif ($context['folder'] != 'sent') { |
|
451 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
452 | + } |
|
424 | 453 | |
425 | 454 | echo ' |
426 | 455 | <strong> ', $txt['on'], ':</strong> ', $message['time'], ' » |
427 | 456 | </span>'; |
428 | 457 | |
429 | 458 | // If we're in the sent items, show who it was sent to besides the "To:" people. |
430 | - if (!empty($message['recipients']['bcc'])) |
|
431 | - echo '<br> |
|
459 | + if (!empty($message['recipients']['bcc'])) { |
|
460 | + echo '<br> |
|
432 | 461 | <span class="smalltext">« <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' »</span>'; |
462 | + } |
|
433 | 463 | |
434 | - if (!empty($message['is_replied_to'])) |
|
435 | - echo '<br> |
|
464 | + if (!empty($message['is_replied_to'])) { |
|
465 | + echo '<br> |
|
436 | 466 | <span class="smalltext">« ', $context['folder'] == 'sent' ? $txt['pm_sent_is_replied_to'] : $txt['pm_is_replied_to'], ' »</span>'; |
467 | + } |
|
437 | 468 | |
438 | 469 | echo ' |
439 | 470 | </div><!-- .keyinfo --> |
@@ -443,13 +474,15 @@ discard block |
||
443 | 474 | ', $message['body'], ' |
444 | 475 | </div>'; |
445 | 476 | |
446 | - if ($message['can_report'] || $context['can_send_pm']) |
|
447 | - echo ' |
|
477 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
478 | + echo ' |
|
448 | 479 | <div class="under_message">'; |
480 | + } |
|
449 | 481 | |
450 | - if ($message['can_report']) |
|
451 | - echo ' |
|
482 | + if ($message['can_report']) { |
|
483 | + echo ' |
|
452 | 484 | <a href="' . $scripturl . '?action=pm;sa=report;l=' . $context['current_label_id'] . ';pmsg=' . $message['id'] . '" class="floatright">' . $txt['pm_report_to_admin'] . '</a>'; |
485 | + } |
|
453 | 486 | |
454 | 487 | echo ' |
455 | 488 | <ul class="quickbuttons">'; |
@@ -461,32 +494,36 @@ discard block |
||
461 | 494 | if (!$message['member']['is_guest']) |
462 | 495 | { |
463 | 496 | // Is there than more than one recipient you can reply to? |
464 | - if ($message['number_recipients'] > 1) |
|
465 | - echo ' |
|
497 | + if ($message['number_recipients'] > 1) { |
|
498 | + echo ' |
|
466 | 499 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=all"><span class="generic_icons reply_all_button"></span>', $txt['reply_to_all'], '</a></li>'; |
500 | + } |
|
467 | 501 | |
468 | 502 | echo ' |
469 | 503 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li> |
470 | 504 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote', $context['folder'] == 'sent' ? '' : ';u=' . $message['member']['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
471 | 505 | } |
472 | 506 | // This is for "forwarding" - even if the member is gone. |
473 | - else |
|
474 | - echo ' |
|
507 | + else { |
|
508 | + echo ' |
|
475 | 509 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote"><span class="generic_icons quote"></span>', $txt['reply_quote'], '</a></li>'; |
510 | + } |
|
476 | 511 | } |
477 | 512 | echo ' |
478 | 513 | <li><a href="', $scripturl, '?action=pm;sa=pmactions;pm_actions%5b', $message['id'], '%5D=delete;f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', addslashes($txt['remove_message_question']), '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['delete'], '</a></li>'; |
479 | 514 | |
480 | - if (empty($context['display_mode'])) |
|
481 | - echo ' |
|
515 | + if (empty($context['display_mode'])) { |
|
516 | + echo ' |
|
482 | 517 | <li><input type="checkbox" name="pms[]" id="deletedisplay', $message['id'], '" value="', $message['id'], '" onclick="document.getElementById(\'deletelisting', $message['id'], '\').checked = this.checked;"></li>'; |
518 | + } |
|
483 | 519 | |
484 | 520 | echo ' |
485 | 521 | </ul>'; |
486 | 522 | |
487 | - if ($message['can_report'] || $context['can_send_pm']) |
|
488 | - echo ' |
|
523 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
524 | + echo ' |
|
489 | 525 | </div><!-- .under_message -->'; |
526 | + } |
|
490 | 527 | |
491 | 528 | // Are there any custom profile fields for above the signature? |
492 | 529 | if (!empty($message['custom_fields']['above_signature'])) |
@@ -495,9 +532,10 @@ discard block |
||
495 | 532 | <div class="custom_fields_above_signature"> |
496 | 533 | <ul class="nolist">'; |
497 | 534 | |
498 | - foreach ($message['custom_fields']['above_signature'] as $custom) |
|
499 | - echo ' |
|
535 | + foreach ($message['custom_fields']['above_signature'] as $custom) { |
|
536 | + echo ' |
|
500 | 537 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
538 | + } |
|
501 | 539 | |
502 | 540 | echo ' |
503 | 541 | </ul> |
@@ -505,11 +543,12 @@ discard block |
||
505 | 543 | } |
506 | 544 | |
507 | 545 | // Show the member's signature? |
508 | - if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) |
|
509 | - echo ' |
|
546 | + if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) { |
|
547 | + echo ' |
|
510 | 548 | <div class="signature"> |
511 | 549 | ', $message['member']['signature'], ' |
512 | 550 | </div>'; |
551 | + } |
|
513 | 552 | |
514 | 553 | // Are there any custom profile fields for below the signature? |
515 | 554 | if (!empty($message['custom_fields']['below_signature'])) |
@@ -518,9 +557,10 @@ discard block |
||
518 | 557 | <div class="custom_fields_below_signature"> |
519 | 558 | <ul class="nolist">'; |
520 | 559 | |
521 | - foreach ($message['custom_fields']['below_signature'] as $custom) |
|
522 | - echo ' |
|
560 | + foreach ($message['custom_fields']['below_signature'] as $custom) { |
|
561 | + echo ' |
|
523 | 562 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
563 | + } |
|
524 | 564 | |
525 | 565 | echo ' |
526 | 566 | </ul> |
@@ -547,10 +587,11 @@ discard block |
||
547 | 587 | echo ' |
548 | 588 | <option value="" disabled>', $txt['pm_msg_label_apply'], ':</option>'; |
549 | 589 | |
550 | - foreach ($context['labels'] as $label) |
|
551 | - if (!isset($message['labels'][$label['id']])) |
|
590 | + foreach ($context['labels'] as $label) { |
|
591 | + if (!isset($message['labels'][$label['id']])) |
|
552 | 592 | echo ' |
553 | 593 | <option value="', $label['id'], '">', $label['name'], '</option>'; |
594 | + } |
|
554 | 595 | } |
555 | 596 | |
556 | 597 | // ... and are there any that can be removed? |
@@ -559,9 +600,10 @@ discard block |
||
559 | 600 | echo ' |
560 | 601 | <option value="" disabled>', $txt['pm_msg_label_remove'], ':</option>'; |
561 | 602 | |
562 | - foreach ($message['labels'] as $label) |
|
563 | - echo ' |
|
603 | + foreach ($message['labels'] as $label) { |
|
604 | + echo ' |
|
564 | 605 | <option value="', $label['id'], '"> ', $label['name'], '</option>'; |
606 | + } |
|
565 | 607 | } |
566 | 608 | echo ' |
567 | 609 | </select> |
@@ -580,14 +622,15 @@ discard block |
||
580 | 622 | </div><!-- .windowbg -->'; |
581 | 623 | } |
582 | 624 | |
583 | - if (empty($context['display_mode'])) |
|
584 | - echo ' |
|
625 | + if (empty($context['display_mode'])) { |
|
626 | + echo ' |
|
585 | 627 | <div class="pagesection"> |
586 | 628 | <div class="floatleft">', $context['page_index'], '</div> |
587 | 629 | <div class="floatright"> |
588 | 630 | <input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button"> |
589 | 631 | </div> |
590 | 632 | </div>'; |
633 | + } |
|
591 | 634 | |
592 | 635 | // Show a few buttons if we are in conversation mode and outputting the first message. |
593 | 636 | elseif ($context['display_mode'] == 2 && isset($context['conversation_buttons'])) |
@@ -647,11 +690,12 @@ discard block |
||
647 | 690 | </thead> |
648 | 691 | <tbody>'; |
649 | 692 | |
650 | - if (!$context['show_delete']) |
|
651 | - echo ' |
|
693 | + if (!$context['show_delete']) { |
|
694 | + echo ' |
|
652 | 695 | <tr class="windowbg"> |
653 | 696 | <td colspan="5">', $txt['pm_alert_none'], '</td> |
654 | 697 | </tr>'; |
698 | + } |
|
655 | 699 | |
656 | 700 | while ($message = $context['get_pmessage']('subject')) |
657 | 701 | { |
@@ -709,17 +753,19 @@ discard block |
||
709 | 753 | |
710 | 754 | foreach ($context['labels'] as $label) |
711 | 755 | { |
712 | - if ($label['id'] != $context['current_label_id']) |
|
713 | - echo ' |
|
756 | + if ($label['id'] != $context['current_label_id']) { |
|
757 | + echo ' |
|
714 | 758 | <option value="add_', $label['id'], '"> ', $label['name'], '</option>'; |
759 | + } |
|
715 | 760 | } |
716 | 761 | |
717 | 762 | echo ' |
718 | 763 | <option value="" disabled>', $txt['pm_msg_label_remove'], ':</option>'; |
719 | 764 | |
720 | - foreach ($context['labels'] as $label) |
|
721 | - echo ' |
|
765 | + foreach ($context['labels'] as $label) { |
|
766 | + echo ' |
|
722 | 767 | <option value="rem_', $label['id'], '"> ', $label['name'], '</option>'; |
768 | + } |
|
723 | 769 | |
724 | 770 | echo ' |
725 | 771 | </select> |
@@ -750,11 +796,12 @@ discard block |
||
750 | 796 | <h3 class="catbg">', $txt['pm_search_title'], '</h3> |
751 | 797 | </div>'; |
752 | 798 | |
753 | - if (!empty($context['search_errors'])) |
|
754 | - echo ' |
|
799 | + if (!empty($context['search_errors'])) { |
|
800 | + echo ' |
|
755 | 801 | <div class="errorbox"> |
756 | 802 | ', implode('<br>', $context['search_errors']['messages']), ' |
757 | 803 | </div>'; |
804 | + } |
|
758 | 805 | |
759 | 806 | |
760 | 807 | echo ' |
@@ -803,9 +850,10 @@ discard block |
||
803 | 850 | </dd> |
804 | 851 | </dl>'; |
805 | 852 | |
806 | - if (!$context['currently_using_labels']) |
|
807 | - echo ' |
|
853 | + if (!$context['currently_using_labels']) { |
|
854 | + echo ' |
|
808 | 855 | <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button">'; |
856 | + } |
|
809 | 857 | |
810 | 858 | echo ' |
811 | 859 | <br class="clear_right"> |
@@ -826,12 +874,13 @@ discard block |
||
826 | 874 | <div id="advanced_panel_div"> |
827 | 875 | <ul id="searchLabelsExpand">'; |
828 | 876 | |
829 | - foreach ($context['search_labels'] as $label) |
|
830 | - echo ' |
|
877 | + foreach ($context['search_labels'] as $label) { |
|
878 | + echo ' |
|
831 | 879 | <li> |
832 | 880 | <label for="searchlabel_', $label['id'], '"><input type="checkbox" id="searchlabel_', $label['id'], '" name="searchlabel[', $label['id'], ']" value="', $label['id'], '"', $label['checked'] ? ' checked' : '', '> |
833 | 881 | ', $label['name'], '</label> |
834 | 882 | </li>'; |
883 | + } |
|
835 | 884 | |
836 | 885 | echo ' |
837 | 886 | </ul> |
@@ -893,8 +942,8 @@ discard block |
||
893 | 942 | </div>'; |
894 | 943 | |
895 | 944 | // Complete results? |
896 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
897 | - echo ' |
|
945 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
946 | + echo ' |
|
898 | 947 | <table class="table_grid"> |
899 | 948 | <thead> |
900 | 949 | <tr class="title_bar"> |
@@ -904,6 +953,7 @@ discard block |
||
904 | 953 | </tr> |
905 | 954 | </thead> |
906 | 955 | <tbody>'; |
956 | + } |
|
907 | 957 | |
908 | 958 | // Print each message out... |
909 | 959 | foreach ($context['personal_messages'] as $message) |
@@ -923,12 +973,14 @@ discard block |
||
923 | 973 | |
924 | 974 | // Show the recipients. |
925 | 975 | // @todo This doesn't deal with the sent item searching quite right for bcc. |
926 | - if (!empty($message['recipients']['to'])) |
|
927 | - echo implode(', ', $message['recipients']['to']); |
|
976 | + if (!empty($message['recipients']['to'])) { |
|
977 | + echo implode(', ', $message['recipients']['to']); |
|
978 | + } |
|
928 | 979 | |
929 | 980 | // Otherwise, we're just going to say "some people"... |
930 | - elseif ($context['folder'] != 'sent') |
|
931 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
981 | + elseif ($context['folder'] != 'sent') { |
|
982 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
983 | + } |
|
932 | 984 | |
933 | 985 | echo ' |
934 | 986 | </h3> |
@@ -943,15 +995,17 @@ discard block |
||
943 | 995 | $reply_button = create_button('im_reply.png', 'reply', 'reply', 'class="centericon"'); |
944 | 996 | |
945 | 997 | // You can only reply if they are not a guest... |
946 | - if (!$message['member']['is_guest']) |
|
947 | - echo ' |
|
998 | + if (!$message['member']['is_guest']) { |
|
999 | + echo ' |
|
948 | 1000 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button , '</a>', $context['menu_separator'], ' |
949 | 1001 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button , '</a> ', $context['menu_separator']; |
1002 | + } |
|
950 | 1003 | |
951 | 1004 | // This is for "forwarding" - even if the member is gone. |
952 | - else |
|
953 | - echo ' |
|
1005 | + else { |
|
1006 | + echo ' |
|
954 | 1007 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button , '</a>', $context['menu_separator']; |
1008 | + } |
|
955 | 1009 | } |
956 | 1010 | |
957 | 1011 | echo ' |
@@ -960,27 +1014,30 @@ discard block |
||
960 | 1014 | } |
961 | 1015 | // Otherwise just a simple list! |
962 | 1016 | // @todo No context at all of the search? |
963 | - else |
|
964 | - echo ' |
|
1017 | + else { |
|
1018 | + echo ' |
|
965 | 1019 | <tr class="windowbg"> |
966 | 1020 | <td>', $message['time'], '</td> |
967 | 1021 | <td>', $message['link'], '</td> |
968 | 1022 | <td>', $message['member']['link'], '</td> |
969 | 1023 | </tr>'; |
1024 | + } |
|
970 | 1025 | } |
971 | 1026 | |
972 | 1027 | // Finish off the page... |
973 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
974 | - echo ' |
|
1028 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
1029 | + echo ' |
|
975 | 1030 | </tbody> |
976 | 1031 | </table>'; |
1032 | + } |
|
977 | 1033 | |
978 | 1034 | // No results? |
979 | - if (empty($context['personal_messages'])) |
|
980 | - echo ' |
|
1035 | + if (empty($context['personal_messages'])) { |
|
1036 | + echo ' |
|
981 | 1037 | <div class="windowbg"> |
982 | 1038 | <p class="centertext">', $txt['pm_search_none_found'], '</p> |
983 | 1039 | </div>'; |
1040 | + } |
|
984 | 1041 | |
985 | 1042 | echo ' |
986 | 1043 | <div class="pagesection"> |
@@ -1005,15 +1062,17 @@ discard block |
||
1005 | 1062 | </div> |
1006 | 1063 | <div class="windowbg">'; |
1007 | 1064 | |
1008 | - if (!empty($context['send_log']['sent'])) |
|
1009 | - foreach ($context['send_log']['sent'] as $log_entry) |
|
1065 | + if (!empty($context['send_log']['sent'])) { |
|
1066 | + foreach ($context['send_log']['sent'] as $log_entry) |
|
1010 | 1067 | echo ' |
1011 | 1068 | <span class="error">', $log_entry, '</span><br>'; |
1069 | + } |
|
1012 | 1070 | |
1013 | - if (!empty($context['send_log']['failed'])) |
|
1014 | - foreach ($context['send_log']['failed'] as $log_entry) |
|
1071 | + if (!empty($context['send_log']['failed'])) { |
|
1072 | + foreach ($context['send_log']['failed'] as $log_entry) |
|
1015 | 1073 | echo ' |
1016 | 1074 | <span class="error">', $log_entry, '</span><br>'; |
1075 | + } |
|
1017 | 1076 | |
1018 | 1077 | echo ' |
1019 | 1078 | </div> |
@@ -1061,12 +1120,13 @@ discard block |
||
1061 | 1120 | </dl> |
1062 | 1121 | </div>'; |
1063 | 1122 | |
1064 | - if (!empty($modSettings['drafts_pm_enabled'])) |
|
1065 | - echo ' |
|
1123 | + if (!empty($modSettings['drafts_pm_enabled'])) { |
|
1124 | + echo ' |
|
1066 | 1125 | <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>', |
1067 | 1126 | sprintf($txt['draft_pm_saved'], $scripturl . '?action=pm;sa=showpmdrafts'), ' |
1068 | 1127 | ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), ' |
1069 | 1128 | </div>'; |
1129 | + } |
|
1070 | 1130 | |
1071 | 1131 | echo ' |
1072 | 1132 | <dl id="post_header">'; |
@@ -1132,22 +1192,24 @@ discard block |
||
1132 | 1192 | <dt><strong>', $txt['subject'], '</strong></dt> |
1133 | 1193 | <dd><strong>', $txt['draft_saved_on'], '</strong></dd>'; |
1134 | 1194 | |
1135 | - foreach ($context['drafts'] as $draft) |
|
1136 | - echo ' |
|
1195 | + foreach ($context['drafts'] as $draft) { |
|
1196 | + echo ' |
|
1137 | 1197 | <dt>', $draft['link'], '</dt> |
1138 | 1198 | <dd>', $draft['poster_time'], '</dd>'; |
1199 | + } |
|
1139 | 1200 | echo ' |
1140 | 1201 | </dl> |
1141 | 1202 | </div>'; |
1142 | 1203 | } |
1143 | 1204 | |
1144 | 1205 | // Require an image to be typed to save spamming? |
1145 | - if ($context['require_verification']) |
|
1146 | - echo ' |
|
1206 | + if ($context['require_verification']) { |
|
1207 | + echo ' |
|
1147 | 1208 | <div class="post_verification"> |
1148 | 1209 | <strong>', $txt['pm_visual_verification_label'], ':</strong> |
1149 | 1210 | ', template_control_verification($context['visual_verification_id'], 'all'), ' |
1150 | 1211 | </div>'; |
1212 | + } |
|
1151 | 1213 | |
1152 | 1214 | // Send, Preview, spellcheck buttons. |
1153 | 1215 | echo ' |
@@ -1265,8 +1327,8 @@ discard block |
||
1265 | 1327 | }'; |
1266 | 1328 | |
1267 | 1329 | // Code for showing and hiding drafts |
1268 | - if (!empty($context['drafts'])) |
|
1269 | - echo ' |
|
1330 | + if (!empty($context['drafts'])) { |
|
1331 | + echo ' |
|
1270 | 1332 | var oSwapDraftOptions = new smc_Toggle({ |
1271 | 1333 | bToggleEnabled: true, |
1272 | 1334 | bCurrentlyCollapsed: true, |
@@ -1288,13 +1350,14 @@ discard block |
||
1288 | 1350 | } |
1289 | 1351 | ] |
1290 | 1352 | });'; |
1353 | + } |
|
1291 | 1354 | |
1292 | 1355 | echo ' |
1293 | 1356 | </script>'; |
1294 | 1357 | |
1295 | 1358 | // Show the message you're replying to. |
1296 | - if ($context['reply']) |
|
1297 | - echo ' |
|
1359 | + if ($context['reply']) { |
|
1360 | + echo ' |
|
1298 | 1361 | <br><br> |
1299 | 1362 | <div class="cat_bar"> |
1300 | 1363 | <h3 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h3> |
@@ -1308,6 +1371,7 @@ discard block |
||
1308 | 1371 | ', $context['quoted_message']['body'], ' |
1309 | 1372 | </div> |
1310 | 1373 | <br class="clear">'; |
1374 | + } |
|
1311 | 1375 | |
1312 | 1376 | echo ' |
1313 | 1377 | <script> |
@@ -1319,23 +1383,25 @@ discard block |
||
1319 | 1383 | sToControlId: \'to_control\', |
1320 | 1384 | aToRecipients: ['; |
1321 | 1385 | |
1322 | - foreach ($context['recipients']['to'] as $i => $member) |
|
1323 | - echo ' |
|
1386 | + foreach ($context['recipients']['to'] as $i => $member) { |
|
1387 | + echo ' |
|
1324 | 1388 | { |
1325 | 1389 | sItemId: ', JavaScriptEscape($member['id']), ', |
1326 | 1390 | sItemName: ', JavaScriptEscape($member['name']), ' |
1327 | 1391 | }', $i == count($context['recipients']['to']) - 1 ? '' : ','; |
1392 | + } |
|
1328 | 1393 | |
1329 | 1394 | echo ' |
1330 | 1395 | ], |
1331 | 1396 | aBccRecipients: ['; |
1332 | 1397 | |
1333 | - foreach ($context['recipients']['bcc'] as $i => $member) |
|
1334 | - echo ' |
|
1398 | + foreach ($context['recipients']['bcc'] as $i => $member) { |
|
1399 | + echo ' |
|
1335 | 1400 | { |
1336 | 1401 | sItemId: ', JavaScriptEscape($member['id']), ', |
1337 | 1402 | sItemName: ', JavaScriptEscape($member['name']), ' |
1338 | 1403 | }', $i == count($context['recipients']['bcc']) - 1 ? '' : ','; |
1404 | + } |
|
1339 | 1405 | |
1340 | 1406 | echo ' |
1341 | 1407 | ], |
@@ -1424,26 +1490,28 @@ discard block |
||
1424 | 1490 | </th> |
1425 | 1491 | <th class="centertext table_icon">'; |
1426 | 1492 | |
1427 | - if (count($context['labels']) > 2) |
|
1428 | - echo ' |
|
1493 | + if (count($context['labels']) > 2) { |
|
1494 | + echo ' |
|
1429 | 1495 | <input type="checkbox" onclick="invertAll(this, this.form);">'; |
1496 | + } |
|
1430 | 1497 | |
1431 | 1498 | echo ' |
1432 | 1499 | </th> |
1433 | 1500 | </tr> |
1434 | 1501 | </thead> |
1435 | 1502 | <tbody>'; |
1436 | - if (count($context['labels']) < 2) |
|
1437 | - echo ' |
|
1503 | + if (count($context['labels']) < 2) { |
|
1504 | + echo ' |
|
1438 | 1505 | <tr class="windowbg"> |
1439 | 1506 | <td colspan="2">', $txt['pm_labels_no_exist'], '</td> |
1440 | 1507 | </tr>'; |
1441 | - else |
|
1508 | + } else |
|
1442 | 1509 | { |
1443 | 1510 | foreach ($context['labels'] as $label) |
1444 | 1511 | { |
1445 | - if ($label['id'] == -1) |
|
1446 | - continue; |
|
1512 | + if ($label['id'] == -1) { |
|
1513 | + continue; |
|
1514 | + } |
|
1447 | 1515 | |
1448 | 1516 | echo ' |
1449 | 1517 | <tr class="windowbg"> |
@@ -1458,12 +1526,13 @@ discard block |
||
1458 | 1526 | </tbody> |
1459 | 1527 | </table>'; |
1460 | 1528 | |
1461 | - if (!count($context['labels']) < 2) |
|
1462 | - echo ' |
|
1529 | + if (!count($context['labels']) < 2) { |
|
1530 | + echo ' |
|
1463 | 1531 | <div class="padding"> |
1464 | 1532 | <input type="submit" name="save" value="', $txt['save'], '" class="button"> |
1465 | 1533 | <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'] ,'" class="button you_sure"> |
1466 | 1534 | </div>'; |
1535 | + } |
|
1467 | 1536 | |
1468 | 1537 | echo ' |
1469 | 1538 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -1520,9 +1589,10 @@ discard block |
||
1520 | 1589 | <select name="id_admin"> |
1521 | 1590 | <option value="0">', $txt['pm_report_all_admins'], '</option>'; |
1522 | 1591 | |
1523 | - foreach ($context['admins'] as $id => $name) |
|
1524 | - echo ' |
|
1592 | + foreach ($context['admins'] as $id => $name) { |
|
1593 | + echo ' |
|
1525 | 1594 | <option value="', $id, '">', $name, '</option>'; |
1595 | + } |
|
1526 | 1596 | |
1527 | 1597 | echo ' |
1528 | 1598 | </select> |
@@ -1585,9 +1655,10 @@ discard block |
||
1585 | 1655 | </th> |
1586 | 1656 | <th class="centertext table_icon">'; |
1587 | 1657 | |
1588 | - if (!empty($context['rules'])) |
|
1589 | - echo ' |
|
1658 | + if (!empty($context['rules'])) { |
|
1659 | + echo ' |
|
1590 | 1660 | <input type="checkbox" onclick="invertAll(this, this.form);">'; |
1661 | + } |
|
1591 | 1662 | |
1592 | 1663 | echo ' |
1593 | 1664 | </th> |
@@ -1595,16 +1666,17 @@ discard block |
||
1595 | 1666 | </thead> |
1596 | 1667 | <tbody>'; |
1597 | 1668 | |
1598 | - if (empty($context['rules'])) |
|
1599 | - echo ' |
|
1669 | + if (empty($context['rules'])) { |
|
1670 | + echo ' |
|
1600 | 1671 | <tr class="windowbg"> |
1601 | 1672 | <td colspan="2"> |
1602 | 1673 | ', $txt['pm_rules_none'], ' |
1603 | 1674 | </td> |
1604 | 1675 | </tr>'; |
1676 | + } |
|
1605 | 1677 | |
1606 | - foreach ($context['rules'] as $rule) |
|
1607 | - echo ' |
|
1678 | + foreach ($context['rules'] as $rule) { |
|
1679 | + echo ' |
|
1608 | 1680 | <tr class="windowbg"> |
1609 | 1681 | <td> |
1610 | 1682 | <a href="', $scripturl, '?action=pm;sa=manrules;add;rid=', $rule['id'], '">', $rule['name'], '</a> |
@@ -1613,6 +1685,7 @@ discard block |
||
1613 | 1685 | <input type="checkbox" name="delrule[', $rule['id'], ']"> |
1614 | 1686 | </td> |
1615 | 1687 | </tr>'; |
1688 | + } |
|
1616 | 1689 | |
1617 | 1690 | echo ' |
1618 | 1691 | </tbody> |
@@ -1620,14 +1693,16 @@ discard block |
||
1620 | 1693 | <div class="righttext"> |
1621 | 1694 | <a class="button" href="', $scripturl, '?action=pm;sa=manrules;add;rid=0">', $txt['pm_add_rule'], '</a>'; |
1622 | 1695 | |
1623 | - if (!empty($context['rules'])) |
|
1624 | - echo ' |
|
1696 | + if (!empty($context['rules'])) { |
|
1697 | + echo ' |
|
1625 | 1698 | [<a href="', $scripturl, '?action=pm;sa=manrules;apply;', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['pm_js_apply_rules_confirm'], '\');">', $txt['pm_apply_rules'], '</a>]'; |
1699 | + } |
|
1626 | 1700 | |
1627 | - if (!empty($context['rules'])) |
|
1628 | - echo ' |
|
1701 | + if (!empty($context['rules'])) { |
|
1702 | + echo ' |
|
1629 | 1703 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1630 | 1704 | <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'] ,'" class="button smalltext you_sure">'; |
1705 | + } |
|
1631 | 1706 | |
1632 | 1707 | echo ' |
1633 | 1708 | </div> |
@@ -1649,14 +1724,16 @@ discard block |
||
1649 | 1724 | var groups = new Array() |
1650 | 1725 | var labels = new Array()'; |
1651 | 1726 | |
1652 | - foreach ($context['groups'] as $id => $title) |
|
1653 | - echo ' |
|
1727 | + foreach ($context['groups'] as $id => $title) { |
|
1728 | + echo ' |
|
1654 | 1729 | groups[', $id, '] = "', addslashes($title), '";'; |
1730 | + } |
|
1655 | 1731 | |
1656 | - foreach ($context['labels'] as $label) |
|
1657 | - if ($label['id'] != -1) |
|
1732 | + foreach ($context['labels'] as $label) { |
|
1733 | + if ($label['id'] != -1) |
|
1658 | 1734 | echo ' |
1659 | 1735 | labels[', ($label['id']), '] = "', addslashes($label['name']), '";'; |
1736 | + } |
|
1660 | 1737 | |
1661 | 1738 | echo ' |
1662 | 1739 | function addCriteriaOption() |
@@ -1671,8 +1748,9 @@ discard block |
||
1671 | 1748 | |
1672 | 1749 | setOuterHTML(document.getElementById("criteriaAddHere"), \'<br><select name="ruletype[\' + criteriaNum + \']" id="ruletype\' + criteriaNum + \'" onchange="updateRuleDef(\' + criteriaNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_criteria_pick']), ':<\' + \'/option><option value="mid">', addslashes($txt['pm_rule_mid']), '<\' + \'/option><option value="gid">', addslashes($txt['pm_rule_gid']), '<\' + \'/option><option value="sub">', addslashes($txt['pm_rule_sub']), '<\' + \'/option><option value="msg">', addslashes($txt['pm_rule_msg']), '<\' + \'/option><option value="bud">', addslashes($txt['pm_rule_bud']), '<\' + \'/option><\' + \'/select> <span id="defdiv\' + criteriaNum + \'" style="display: none;"><input type="text" name="ruledef[\' + criteriaNum + \']" id="ruledef\' + criteriaNum + \'" onkeyup="rebuildRuleDesc();" value=""><\' + \'/span><span id="defseldiv\' + criteriaNum + \'" style="display: none;"><select name="ruledefgroup[\' + criteriaNum + \']" id="ruledefgroup\' + criteriaNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_group']), '<\' + \'/option>'; |
1673 | 1750 | |
1674 | - foreach ($context['groups'] as $id => $group) |
|
1675 | - echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
1751 | + foreach ($context['groups'] as $id => $group) { |
|
1752 | + echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
1753 | + } |
|
1676 | 1754 | |
1677 | 1755 | echo '<\' + \'/select><\' + \'/span><span id="criteriaAddHere"><\' + \'/span>\'); |
1678 | 1756 | } |
@@ -1689,9 +1767,10 @@ discard block |
||
1689 | 1767 | |
1690 | 1768 | setOuterHTML(document.getElementById("actionAddHere"), \'<br><select name="acttype[\' + actionNum + \']" id="acttype\' + actionNum + \'" onchange="updateActionDef(\' + actionNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_action']), ':<\' + \'/option><option value="lab">', addslashes($txt['pm_rule_label']), '<\' + \'/option><option value="del">', addslashes($txt['pm_rule_delete']), '<\' + \'/option><\' + \'/select> <span id="labdiv\' + actionNum + \'" style="display: none;"><select name="labdef[\' + actionNum + \']" id="labdef\' + actionNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_label']), '<\' + \'/option>'; |
1691 | 1769 | |
1692 | - foreach ($context['labels'] as $label) |
|
1693 | - if ($label['id'] != -1) |
|
1770 | + foreach ($context['labels'] as $label) { |
|
1771 | + if ($label['id'] != -1) |
|
1694 | 1772 | echo '<option value="', ($label['id']), '">', addslashes($label['name']), '<\' + \'/option>'; |
1773 | + } |
|
1695 | 1774 | |
1696 | 1775 | echo '<\' + \'/select><\' + \'/span><span id="actionAddHere"><\' + \'/span>\'); |
1697 | 1776 | } |
@@ -1805,19 +1884,20 @@ discard block |
||
1805 | 1884 | $isFirst = true; |
1806 | 1885 | foreach ($context['rule']['criteria'] as $k => $criteria) |
1807 | 1886 | { |
1808 | - if (!$isFirst && $criteria['t'] == '') |
|
1809 | - echo '<div id="removeonjs1">'; |
|
1810 | - |
|
1811 | - elseif (!$isFirst) |
|
1812 | - echo '<br>'; |
|
1887 | + if (!$isFirst && $criteria['t'] == '') { |
|
1888 | + echo '<div id="removeonjs1">'; |
|
1889 | + } elseif (!$isFirst) { |
|
1890 | + echo '<br>'; |
|
1891 | + } |
|
1813 | 1892 | |
1814 | 1893 | echo ' |
1815 | 1894 | <select name="ruletype[', $k, ']" id="ruletype', $k, '" onchange="updateRuleDef(', $k, '); rebuildRuleDesc();"> |
1816 | 1895 | <option value="">', $txt['pm_rule_criteria_pick'], ':</option>'; |
1817 | 1896 | |
1818 | - foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) |
|
1819 | - echo ' |
|
1897 | + foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) { |
|
1898 | + echo ' |
|
1820 | 1899 | <option value="', $cr, '"', $criteria['t'] == $cr ? ' selected' : '', '>', $txt['pm_rule_' . $cr], '</option>'; |
1900 | + } |
|
1821 | 1901 | |
1822 | 1902 | echo ' |
1823 | 1903 | </select> |
@@ -1828,19 +1908,20 @@ discard block |
||
1828 | 1908 | <select name="ruledefgroup[', $k, ']" id="ruledefgroup', $k, '" onchange="rebuildRuleDesc();"> |
1829 | 1909 | <option value="">', $txt['pm_rule_sel_group'], '</option>'; |
1830 | 1910 | |
1831 | - foreach ($context['groups'] as $id => $group) |
|
1832 | - echo ' |
|
1911 | + foreach ($context['groups'] as $id => $group) { |
|
1912 | + echo ' |
|
1833 | 1913 | <option value="', $id, '"', $criteria['t'] == 'gid' && $criteria['v'] == $id ? ' selected' : '', '>', $group, '</option>'; |
1914 | + } |
|
1834 | 1915 | echo ' |
1835 | 1916 | </select> |
1836 | 1917 | </span>'; |
1837 | 1918 | |
1838 | 1919 | // If this is the dummy we add a means to hide for non js users. |
1839 | - if ($isFirst) |
|
1840 | - $isFirst = false; |
|
1841 | - |
|
1842 | - elseif ($criteria['t'] == '') |
|
1843 | - echo '</div><!-- .removeonjs1 -->'; |
|
1920 | + if ($isFirst) { |
|
1921 | + $isFirst = false; |
|
1922 | + } elseif ($criteria['t'] == '') { |
|
1923 | + echo '</div><!-- .removeonjs1 -->'; |
|
1924 | + } |
|
1844 | 1925 | } |
1845 | 1926 | |
1846 | 1927 | echo ' |
@@ -1863,10 +1944,11 @@ discard block |
||
1863 | 1944 | $isFirst = true; |
1864 | 1945 | foreach ($context['rule']['actions'] as $k => $action) |
1865 | 1946 | { |
1866 | - if (!$isFirst && $action['t'] == '') |
|
1867 | - echo '<div id="removeonjs2">'; |
|
1868 | - elseif (!$isFirst) |
|
1869 | - echo '<br>'; |
|
1947 | + if (!$isFirst && $action['t'] == '') { |
|
1948 | + echo '<div id="removeonjs2">'; |
|
1949 | + } elseif (!$isFirst) { |
|
1950 | + echo '<br>'; |
|
1951 | + } |
|
1870 | 1952 | |
1871 | 1953 | echo ' |
1872 | 1954 | <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();"> |
@@ -1878,20 +1960,21 @@ discard block |
||
1878 | 1960 | <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();"> |
1879 | 1961 | <option value="">', $txt['pm_rule_sel_label'], '</option>'; |
1880 | 1962 | |
1881 | - foreach ($context['labels'] as $label) |
|
1882 | - if ($label['id'] != -1) |
|
1963 | + foreach ($context['labels'] as $label) { |
|
1964 | + if ($label['id'] != -1) |
|
1883 | 1965 | echo ' |
1884 | 1966 | <option value="', ($label['id']), '"', $action['t'] == 'lab' && $action['v'] == $label['id'] ? ' selected' : '', '>', $label['name'], '</option>'; |
1967 | + } |
|
1885 | 1968 | |
1886 | 1969 | echo ' |
1887 | 1970 | </select> |
1888 | 1971 | </span>'; |
1889 | 1972 | |
1890 | - if ($isFirst) |
|
1891 | - $isFirst = false; |
|
1892 | - |
|
1893 | - elseif ($action['t'] == '') |
|
1894 | - echo '</div><!-- .removeonjs2 -->'; |
|
1973 | + if ($isFirst) { |
|
1974 | + $isFirst = false; |
|
1975 | + } elseif ($action['t'] == '') { |
|
1976 | + echo '</div><!-- .removeonjs2 -->'; |
|
1977 | + } |
|
1895 | 1978 | } |
1896 | 1979 | |
1897 | 1980 | echo ' |
@@ -1915,22 +1998,25 @@ discard block |
||
1915 | 1998 | echo ' |
1916 | 1999 | <script>'; |
1917 | 2000 | |
1918 | - foreach ($context['rule']['criteria'] as $k => $c) |
|
1919 | - echo ' |
|
2001 | + foreach ($context['rule']['criteria'] as $k => $c) { |
|
2002 | + echo ' |
|
1920 | 2003 | updateRuleDef(', $k, ');'; |
2004 | + } |
|
1921 | 2005 | |
1922 | - foreach ($context['rule']['actions'] as $k => $c) |
|
1923 | - echo ' |
|
2006 | + foreach ($context['rule']['actions'] as $k => $c) { |
|
2007 | + echo ' |
|
1924 | 2008 | updateActionDef(', $k, ');'; |
2009 | + } |
|
1925 | 2010 | |
1926 | 2011 | echo ' |
1927 | 2012 | rebuildRuleDesc();'; |
1928 | 2013 | |
1929 | 2014 | // If this isn't a new rule and we have JS enabled remove the JS compatibility stuff. |
1930 | - if ($context['rid']) |
|
1931 | - echo ' |
|
2015 | + if ($context['rid']) { |
|
2016 | + echo ' |
|
1932 | 2017 | document.getElementById("removeonjs1").style.display = "none"; |
1933 | 2018 | document.getElementById("removeonjs2").style.display = "none";'; |
2019 | + } |
|
1934 | 2020 | |
1935 | 2021 | echo ' |
1936 | 2022 | document.getElementById("addonjs1").style.display = ""; |
@@ -1958,12 +2044,12 @@ discard block |
||
1958 | 2044 | </div>'; |
1959 | 2045 | |
1960 | 2046 | // No drafts? Just show an informative message. |
1961 | - if (empty($context['drafts'])) |
|
1962 | - echo ' |
|
2047 | + if (empty($context['drafts'])) { |
|
2048 | + echo ' |
|
1963 | 2049 | <div class="windowbg centertext"> |
1964 | 2050 | ', $txt['draft_none'], ' |
1965 | 2051 | </div>'; |
1966 | - else |
|
2052 | + } else |
|
1967 | 2053 | { |
1968 | 2054 | // For every draft to be displayed, give it its own div, and show the important details of the draft. |
1969 | 2055 | foreach ($context['drafts'] as $draft) |
@@ -140,7 +140,7 @@ |
||
140 | 140 | $max_age = $time - $cached['time'] + (5 * 86400); |
141 | 141 | header('content-type: ' . $cached['content_type']); |
142 | 142 | header('content-length: ' . $cached['size']); |
143 | - header('cache-control: public, max-age=' . $max_age ); |
|
143 | + header('cache-control: public, max-age=' . $max_age); |
|
144 | 144 | header('last-modified: ' . gmdate('D, d M Y H:i:s', $cached['time']) . ' GMT'); |
145 | 145 | header('etag: ' . $eTag); |
146 | 146 | echo base64_decode($cached['body']); |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | define('SMF', 'proxy'); |
18 | +} |
|
18 | 19 | |
19 | 20 | global $proxyhousekeeping; |
20 | 21 | |
@@ -68,33 +69,38 @@ discard block |
||
68 | 69 | */ |
69 | 70 | public function checkRequest() |
70 | 71 | { |
71 | - if (!$this->enabled) |
|
72 | - return false; |
|
72 | + if (!$this->enabled) { |
|
73 | + return false; |
|
74 | + } |
|
73 | 75 | |
74 | 76 | // Try to create the image cache directory if it doesn't exist |
75 | - if (!file_exists($this->cache)) |
|
76 | - if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | + if (!file_exists($this->cache)) { |
|
78 | + if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | 79 | return false; |
80 | + } |
|
78 | 81 | |
79 | 82 | // Basic sanity check |
80 | 83 | $_GET['request'] = validate_iri($_GET['request']); |
81 | 84 | |
82 | 85 | // We aren't going anywhere without these |
83 | - if (empty($_GET['hash']) || empty($_GET['request'])) |
|
84 | - return false; |
|
86 | + if (empty($_GET['hash']) || empty($_GET['request'])) { |
|
87 | + return false; |
|
88 | + } |
|
85 | 89 | |
86 | 90 | $hash = $_GET['hash']; |
87 | 91 | $request = $_GET['request']; |
88 | 92 | |
89 | - if (md5($request . $this->secret) != $hash) |
|
90 | - return false; |
|
93 | + if (md5($request . $this->secret) != $hash) { |
|
94 | + return false; |
|
95 | + } |
|
91 | 96 | |
92 | 97 | // Ensure any non-ASCII characters in the URL are encoded correctly |
93 | 98 | $request = iri_to_url($request); |
94 | 99 | |
95 | 100 | // Attempt to cache the request if it doesn't exist |
96 | - if (!$this->isCached($request)) |
|
97 | - return $this->cacheImage($request); |
|
101 | + if (!$this->isCached($request)) { |
|
102 | + return $this->cacheImage($request); |
|
103 | + } |
|
98 | 104 | |
99 | 105 | return true; |
100 | 106 | } |
@@ -131,8 +137,9 @@ discard block |
||
131 | 137 | if (!$cached || $time - $cached['time'] > ($this->maxDays * 86400)) |
132 | 138 | { |
133 | 139 | @unlink($cached_file); |
134 | - if ($this->checkRequest()) |
|
135 | - $this->serve(); |
|
140 | + if ($this->checkRequest()) { |
|
141 | + $this->serve(); |
|
142 | + } |
|
136 | 143 | $this::redirectexit($request); |
137 | 144 | } |
138 | 145 | |
@@ -145,8 +152,9 @@ discard block |
||
145 | 152 | |
146 | 153 | // Make sure we're serving an image |
147 | 154 | $contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : ''); |
148 | - if ($contentParts[0] != 'image') |
|
149 | - exit; |
|
155 | + if ($contentParts[0] != 'image') { |
|
156 | + exit; |
|
157 | + } |
|
150 | 158 | |
151 | 159 | $max_age = $time - $cached['time'] + (5 * 86400); |
152 | 160 | header('content-type: ' . $cached['content_type']); |
@@ -196,25 +204,29 @@ discard block |
||
196 | 204 | $image = fetch_web_data($request); |
197 | 205 | |
198 | 206 | // Looks like nobody was home |
199 | - if (empty($image)) |
|
200 | - return -1; |
|
207 | + if (empty($image)) { |
|
208 | + return -1; |
|
209 | + } |
|
201 | 210 | |
202 | 211 | // What kind of file did they give us? |
203 | 212 | $finfo = finfo_open(FILEINFO_MIME_TYPE); |
204 | 213 | $mime_type = finfo_buffer($finfo, $image); |
205 | 214 | |
206 | 215 | // SVG needs a little extra care |
207 | - if ($ext == 'svg' && $mime_type == 'text/plain') |
|
208 | - $mime_type = 'image/svg+xml'; |
|
216 | + if ($ext == 'svg' && $mime_type == 'text/plain') { |
|
217 | + $mime_type = 'image/svg+xml'; |
|
218 | + } |
|
209 | 219 | |
210 | 220 | // Make sure the url is returning an image |
211 | - if (strpos($mime_type, 'image/') !== 0) |
|
212 | - return -1; |
|
221 | + if (strpos($mime_type, 'image/') !== 0) { |
|
222 | + return -1; |
|
223 | + } |
|
213 | 224 | |
214 | 225 | // Validate the filesize |
215 | 226 | $size = strlen($image); |
216 | - if ($size > ($this->maxSize * 1024)) |
|
217 | - return 0; |
|
227 | + if ($size > ($this->maxSize * 1024)) { |
|
228 | + return 0; |
|
229 | + } |
|
218 | 230 | |
219 | 231 | // Cache it for later |
220 | 232 | return file_put_contents($dest, json_encode(array( |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
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', |
@@ -33,7 +34,8 @@ discard block |
||
33 | 34 | 'db_get_vendor' => 'smf_db_get_vendor', |
34 | 35 | 'db_allow_persistent' => 'smf_db_allow_persistent', |
35 | 36 | ); |
36 | -} |
|
37 | + } |
|
38 | + } |
|
37 | 39 | |
38 | 40 | /** |
39 | 41 | * Backup $table to $backup_table. |
@@ -75,8 +77,9 @@ discard block |
||
75 | 77 | )); |
76 | 78 | |
77 | 79 | // Old school or no school? |
78 | - if ($request) |
|
79 | - return $request; |
|
80 | + if ($request) { |
|
81 | + return $request; |
|
82 | + } |
|
80 | 83 | } |
81 | 84 | |
82 | 85 | // At this point, the quick method failed. |
@@ -100,8 +103,9 @@ discard block |
||
100 | 103 | foreach ($create as $k => $l) |
101 | 104 | { |
102 | 105 | // Get the name of the auto_increment column. |
103 | - if (strpos($l, 'auto_increment')) |
|
104 | - $auto_inc = trim($l); |
|
106 | + if (strpos($l, 'auto_increment')) { |
|
107 | + $auto_inc = trim($l); |
|
108 | + } |
|
105 | 109 | |
106 | 110 | // For the engine type, see if we can work out what it is. |
107 | 111 | if (strpos($l, 'ENGINE') !== false || strpos($l, 'TYPE') !== false) |
@@ -109,30 +113,36 @@ discard block |
||
109 | 113 | // Extract the engine type. |
110 | 114 | preg_match('~(ENGINE|TYPE)=(\w+)(\sDEFAULT)?(\sCHARSET=(\w+))?(\sCOLLATE=(\w+))?~', $l, $match); |
111 | 115 | |
112 | - if (!empty($match[1])) |
|
113 | - $engine = $match[1]; |
|
116 | + if (!empty($match[1])) { |
|
117 | + $engine = $match[1]; |
|
118 | + } |
|
114 | 119 | |
115 | - if (!empty($match[2])) |
|
116 | - $engine = $match[2]; |
|
120 | + if (!empty($match[2])) { |
|
121 | + $engine = $match[2]; |
|
122 | + } |
|
117 | 123 | |
118 | - if (!empty($match[5])) |
|
119 | - $charset = $match[5]; |
|
124 | + if (!empty($match[5])) { |
|
125 | + $charset = $match[5]; |
|
126 | + } |
|
120 | 127 | |
121 | - if (!empty($match[7])) |
|
122 | - $collate = $match[7]; |
|
128 | + if (!empty($match[7])) { |
|
129 | + $collate = $match[7]; |
|
130 | + } |
|
123 | 131 | } |
124 | 132 | |
125 | 133 | // Skip everything but keys... |
126 | - if (strpos($l, 'KEY') === false) |
|
127 | - unset($create[$k]); |
|
134 | + if (strpos($l, 'KEY') === false) { |
|
135 | + unset($create[$k]); |
|
136 | + } |
|
128 | 137 | } |
129 | 138 | |
130 | - if (!empty($create)) |
|
131 | - $create = '( |
|
139 | + if (!empty($create)) { |
|
140 | + $create = '( |
|
132 | 141 | ' . implode(' |
133 | 142 | ', $create) . ')'; |
134 | - else |
|
135 | - $create = ''; |
|
143 | + } else { |
|
144 | + $create = ''; |
|
145 | + } |
|
136 | 146 | |
137 | 147 | $request = $smcFunc['db_query']('', ' |
138 | 148 | CREATE TABLE {raw:backup_table} {raw:create} |
@@ -151,8 +161,9 @@ discard block |
||
151 | 161 | |
152 | 162 | if ($auto_inc != '') |
153 | 163 | { |
154 | - if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') |
|
155 | - $auto_inc = substr($auto_inc, 0, -1); |
|
164 | + if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') { |
|
165 | + $auto_inc = substr($auto_inc, 0, -1); |
|
166 | + } |
|
156 | 167 | |
157 | 168 | $smcFunc['db_query']('', ' |
158 | 169 | ALTER TABLE {raw:backup_table} |
@@ -196,8 +207,9 @@ discard block |
||
196 | 207 | 'table' => $table, |
197 | 208 | ) |
198 | 209 | ); |
199 | - if (!$request) |
|
200 | - return -1; |
|
210 | + if (!$request) { |
|
211 | + return -1; |
|
212 | + } |
|
201 | 213 | |
202 | 214 | // How much left? |
203 | 215 | $request = $smcFunc['db_query']('', ' |
@@ -240,8 +252,9 @@ discard block |
||
240 | 252 | ) |
241 | 253 | ); |
242 | 254 | $tables = array(); |
243 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
244 | - $tables[] = $row[0]; |
|
255 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
256 | + $tables[] = $row[0]; |
|
257 | + } |
|
245 | 258 | $smcFunc['db_free_result']($request); |
246 | 259 | |
247 | 260 | return $tables; |
@@ -285,8 +298,9 @@ discard block |
||
285 | 298 | if (!empty($row['Default']) || $row['Null'] !== 'YES') |
286 | 299 | { |
287 | 300 | // Make a special case of auto-timestamp. |
288 | - if ($row['Default'] == 'CURRENT_TIMESTAMP') |
|
289 | - $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
301 | + if ($row['Default'] == 'CURRENT_TIMESTAMP') { |
|
302 | + $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
303 | + } |
|
290 | 304 | // Text shouldn't have a default. |
291 | 305 | elseif ($row['Default'] !== null) |
292 | 306 | { |
@@ -321,14 +335,16 @@ discard block |
||
321 | 335 | $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'] . '`'; |
322 | 336 | |
323 | 337 | // Is this the first column in the index? |
324 | - if (empty($indexes[$row['Key_name']])) |
|
325 | - $indexes[$row['Key_name']] = array(); |
|
338 | + if (empty($indexes[$row['Key_name']])) { |
|
339 | + $indexes[$row['Key_name']] = array(); |
|
340 | + } |
|
326 | 341 | |
327 | 342 | // A sub part, like only indexing 15 characters of a varchar. |
328 | - if (!empty($row['Sub_part'])) |
|
329 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
330 | - else |
|
331 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
343 | + if (!empty($row['Sub_part'])) { |
|
344 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
345 | + } else { |
|
346 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
347 | + } |
|
332 | 348 | } |
333 | 349 | $smcFunc['db_free_result']($result); |
334 | 350 | |
@@ -366,8 +382,9 @@ discard block |
||
366 | 382 | { |
367 | 383 | static $ver; |
368 | 384 | |
369 | - if (!empty($ver)) |
|
370 | - return $ver; |
|
385 | + if (!empty($ver)) { |
|
386 | + return $ver; |
|
387 | + } |
|
371 | 388 | |
372 | 389 | global $smcFunc; |
373 | 390 | |
@@ -392,8 +409,9 @@ discard block |
||
392 | 409 | global $smcFunc; |
393 | 410 | static $db_type; |
394 | 411 | |
395 | - if (!empty($db_type)) |
|
396 | - return $db_type; |
|
412 | + if (!empty($db_type)) { |
|
413 | + return $db_type; |
|
414 | + } |
|
397 | 415 | |
398 | 416 | $request = $smcFunc['db_query']('', 'SELECT @@version_comment'); |
399 | 417 | list ($comment) = $smcFunc['db_fetch_row']($request); |
@@ -402,13 +420,15 @@ discard block |
||
402 | 420 | // Skip these if we don't have a comment. |
403 | 421 | if (!empty($comment)) |
404 | 422 | { |
405 | - if (stripos($comment, 'percona') !== false) |
|
406 | - return 'Percona'; |
|
407 | - if (stripos($comment, 'mariadb') !== false) |
|
408 | - return 'MariaDB'; |
|
423 | + if (stripos($comment, 'percona') !== false) { |
|
424 | + return 'Percona'; |
|
425 | + } |
|
426 | + if (stripos($comment, 'mariadb') !== false) { |
|
427 | + return 'MariaDB'; |
|
428 | + } |
|
429 | + } else { |
|
430 | + return 'fail'; |
|
409 | 431 | } |
410 | - else |
|
411 | - return 'fail'; |
|
412 | 432 | |
413 | 433 | return 'MySQL'; |
414 | 434 | } |
@@ -421,10 +441,11 @@ discard block |
||
421 | 441 | function smf_db_allow_persistent() |
422 | 442 | { |
423 | 443 | $value = ini_get('mysqli.allow_persistent'); |
424 | - if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') |
|
425 | - return true; |
|
426 | - else |
|
427 | - return false; |
|
428 | -} |
|
444 | + if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') { |
|
445 | + return true; |
|
446 | + } else { |
|
447 | + return false; |
|
448 | + } |
|
449 | + } |
|
429 | 450 | |
430 | 451 | ?> |
431 | 452 | \ No newline at end of file |
@@ -461,7 +461,7 @@ |
||
461 | 461 | $fields = ''; |
462 | 462 | foreach ($context['print_custom_fields']['below_signature'] as $field) |
463 | 463 | if (!empty($field['output_html'])) |
464 | - $fields .= ' |
|
464 | + $fields .= ' |
|
465 | 465 | <li>' . $field['output_html'] . '</li>'; |
466 | 466 | |
467 | 467 | if (!empty($fields)) |
@@ -2192,10 +2192,10 @@ discard block |
||
2192 | 2192 | */ |
2193 | 2193 | function template_ignoreboards() |
2194 | 2194 | { |
2195 | - global $context, $txt, $scripturl; |
|
2195 | + global $context, $txt, $scripturl; |
|
2196 | 2196 | |
2197 | - // The main containing header. |
|
2198 | - echo ' |
|
2197 | + // The main containing header. |
|
2198 | + echo ' |
|
2199 | 2199 | <form action="', $scripturl, '?action=profile;area=ignoreboards;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator"> |
2200 | 2200 | <div class="cat_bar"> |
2201 | 2201 | <h3 class="catbg profile_hd"> |
@@ -2207,34 +2207,34 @@ discard block |
||
2207 | 2207 | <div class="flow_hidden boardslist"> |
2208 | 2208 | <ul>'; |
2209 | 2209 | |
2210 | - foreach ($context['categories'] as $category) |
|
2211 | - { |
|
2212 | - echo ' |
|
2210 | + foreach ($context['categories'] as $category) |
|
2211 | + { |
|
2212 | + echo ' |
|
2213 | 2213 | <li> |
2214 | 2214 | <a href="javascript:void(0);" onclick="selectBoards([', implode(', ', $category['child_ids']), '], \'creator\'); return false;">', $category['name'], '</a> |
2215 | 2215 | <ul>'; |
2216 | 2216 | |
2217 | - foreach ($category['boards'] as $board) |
|
2218 | - { |
|
2219 | - echo ' |
|
2217 | + foreach ($category['boards'] as $board) |
|
2218 | + { |
|
2219 | + echo ' |
|
2220 | 2220 | <li style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;"> |
2221 | 2221 | <label for="ignore_brd', $board['id'], '"><input type="checkbox" id="brd', $board['id'], '" name="ignore_brd[', $board['id'], ']" value="', $board['id'], '"', $board['selected'] ? ' checked' : '', '> ', $board['name'], '</label> |
2222 | 2222 | </li>'; |
2223 | - } |
|
2223 | + } |
|
2224 | 2224 | |
2225 | - echo ' |
|
2225 | + echo ' |
|
2226 | 2226 | </ul> |
2227 | 2227 | </li>'; |
2228 | - } |
|
2228 | + } |
|
2229 | 2229 | |
2230 | - echo ' |
|
2230 | + echo ' |
|
2231 | 2231 | </ul> |
2232 | 2232 | </div><!-- .flow_hidden boardslist -->'; |
2233 | 2233 | |
2234 | - // Show the standard "Save Settings" profile button. |
|
2235 | - template_profile_save(); |
|
2234 | + // Show the standard "Save Settings" profile button. |
|
2235 | + template_profile_save(); |
|
2236 | 2236 | |
2237 | - echo ' |
|
2237 | + echo ' |
|
2238 | 2238 | </div><!-- .windowbg --> |
2239 | 2239 | </form> |
2240 | 2240 | <br>'; |
@@ -18,23 +18,25 @@ discard block |
||
18 | 18 | global $context; |
19 | 19 | |
20 | 20 | // Prevent Chrome from auto completing fields when viewing/editing other members profiles |
21 | - if (isBrowser('is_chrome') && !$context['user']['is_owner']) |
|
22 | - echo ' |
|
21 | + if (isBrowser('is_chrome') && !$context['user']['is_owner']) { |
|
22 | + echo ' |
|
23 | 23 | <script> |
24 | 24 | disableAutoComplete(); |
25 | 25 | </script>'; |
26 | + } |
|
26 | 27 | |
27 | 28 | // If an error occurred while trying to save previously, give the user a clue! |
28 | 29 | echo ' |
29 | 30 | ', template_error_message(); |
30 | 31 | |
31 | 32 | // If the profile was update successfully, let the user know this. |
32 | - if (!empty($context['profile_updated'])) |
|
33 | - echo ' |
|
33 | + if (!empty($context['profile_updated'])) { |
|
34 | + echo ' |
|
34 | 35 | <div class="infobox"> |
35 | 36 | ', $context['profile_updated'], ' |
36 | 37 | </div>'; |
37 | -} |
|
38 | + } |
|
39 | + } |
|
38 | 40 | |
39 | 41 | /** |
40 | 42 | * Template for any HTML needed below the profile (closing off divs/tables, etc.) |
@@ -99,19 +101,19 @@ discard block |
||
99 | 101 | </div> |
100 | 102 | <div class="alerts_unread">'; |
101 | 103 | |
102 | - if (empty($context['unread_alerts'])) |
|
103 | - template_alerts_all_read(); |
|
104 | - |
|
105 | - else |
|
104 | + if (empty($context['unread_alerts'])) { |
|
105 | + template_alerts_all_read(); |
|
106 | + } else |
|
106 | 107 | { |
107 | - foreach ($context['unread_alerts'] as $id_alert => $details) |
|
108 | - echo ' |
|
108 | + foreach ($context['unread_alerts'] as $id_alert => $details) { |
|
109 | + echo ' |
|
109 | 110 | <div class="unread"> |
110 | 111 | ', !empty($details['sender']) ? $details['sender']['avatar']['image'] : '', ' |
111 | 112 | <div class="details"> |
112 | 113 | ', !empty($details['icon']) ? $details['icon'] : '', '<span>', $details['text'], '</span> - ', $details['time'], ' |
113 | 114 | </div> |
114 | 115 | </div>'; |
116 | + } |
|
115 | 117 | } |
116 | 118 | |
117 | 119 | echo ' |
@@ -158,37 +160,41 @@ discard block |
||
158 | 160 | if (!empty($context['print_custom_fields']['above_member'])) |
159 | 161 | { |
160 | 162 | $fields = ''; |
161 | - foreach ($context['print_custom_fields']['above_member'] as $field) |
|
162 | - if (!empty($field['output_html'])) |
|
163 | + foreach ($context['print_custom_fields']['above_member'] as $field) { |
|
164 | + if (!empty($field['output_html'])) |
|
163 | 165 | $fields .= ' |
164 | 166 | <li>' . $field['output_html'] . '</li>'; |
167 | + } |
|
165 | 168 | |
166 | - if (!empty($fields)) |
|
167 | - echo ' |
|
169 | + if (!empty($fields)) { |
|
170 | + echo ' |
|
168 | 171 | <div class="custom_fields_above_name"> |
169 | 172 | <ul>', $fields, ' |
170 | 173 | </ul> |
171 | 174 | </div>'; |
175 | + } |
|
172 | 176 | } |
173 | 177 | |
174 | 178 | echo ' |
175 | 179 | <div class="username clear"> |
176 | 180 | <h4>'; |
177 | 181 | |
178 | - if (!empty($context['print_custom_fields']['before_member'])) |
|
179 | - foreach ($context['print_custom_fields']['before_member'] as $field) |
|
182 | + if (!empty($context['print_custom_fields']['before_member'])) { |
|
183 | + foreach ($context['print_custom_fields']['before_member'] as $field) |
|
180 | 184 | if (!empty($field['output_html'])) |
181 | 185 | echo ' |
182 | 186 | <span>', $field['output_html'], '</span>'; |
187 | + } |
|
183 | 188 | |
184 | 189 | echo ' |
185 | 190 | ', $context['member']['name']; |
186 | 191 | |
187 | - if (!empty($context['print_custom_fields']['after_member'])) |
|
188 | - foreach ($context['print_custom_fields']['after_member'] as $field) |
|
192 | + if (!empty($context['print_custom_fields']['after_member'])) { |
|
193 | + foreach ($context['print_custom_fields']['after_member'] as $field) |
|
189 | 194 | if (!empty($field['output_html'])) |
190 | 195 | echo ' |
191 | 196 | <span>', $field['output_html'], '</span>'; |
197 | + } |
|
192 | 198 | |
193 | 199 | |
194 | 200 | echo ' |
@@ -201,39 +207,44 @@ discard block |
||
201 | 207 | if (!empty($context['print_custom_fields']['below_avatar'])) |
202 | 208 | { |
203 | 209 | $fields = ''; |
204 | - foreach ($context['print_custom_fields']['below_avatar'] as $field) |
|
205 | - if (!empty($field['output_html'])) |
|
210 | + foreach ($context['print_custom_fields']['below_avatar'] as $field) { |
|
211 | + if (!empty($field['output_html'])) |
|
206 | 212 | $fields .= ' |
207 | 213 | <li>' . $field['output_html'] . '</li>'; |
214 | + } |
|
208 | 215 | |
209 | - if (!empty($fields)) |
|
210 | - echo ' |
|
216 | + if (!empty($fields)) { |
|
217 | + echo ' |
|
211 | 218 | <div class="custom_fields_below_avatar"> |
212 | 219 | <ul>', $fields, ' |
213 | 220 | </ul> |
214 | 221 | </div>'; |
222 | + } |
|
215 | 223 | } |
216 | 224 | |
217 | 225 | echo ' |
218 | 226 | <ul class="icon_fields clear">'; |
219 | 227 | |
220 | 228 | // Email is only visible if it's your profile or you have the moderate_forum permission |
221 | - if ($context['member']['show_email']) |
|
222 | - echo ' |
|
229 | + if ($context['member']['show_email']) { |
|
230 | + echo ' |
|
223 | 231 | <li><a href="mailto:', $context['member']['email'], '" title="', $context['member']['email'], '" rel="nofollow"><span class="generic_icons mail" title="' . $txt['email'] . '"></span></a></li>'; |
232 | + } |
|
224 | 233 | |
225 | 234 | // Don't show an icon if they haven't specified a website. |
226 | - if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) |
|
227 | - echo ' |
|
235 | + if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) { |
|
236 | + echo ' |
|
228 | 237 | <li><a href="', $context['member']['website']['url'], '" title="' . $context['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www" title="' . $context['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
238 | + } |
|
229 | 239 | |
230 | 240 | // Are there any custom profile fields as icons? |
231 | 241 | if (!empty($context['print_custom_fields']['icons'])) |
232 | 242 | { |
233 | - foreach ($context['print_custom_fields']['icons'] as $field) |
|
234 | - if (!empty($field['output_html'])) |
|
243 | + foreach ($context['print_custom_fields']['icons'] as $field) { |
|
244 | + if (!empty($field['output_html'])) |
|
235 | 245 | echo ' |
236 | 246 | <li class="custom_field">', $field['output_html'], '</li>'; |
247 | + } |
|
237 | 248 | } |
238 | 249 | |
239 | 250 | echo ' |
@@ -242,24 +253,27 @@ discard block |
||
242 | 253 | ', $context['can_send_pm'] ? '<a href="' . $context['member']['online']['href'] . '" title="' . $context['member']['online']['text'] . '" rel="nofollow">' : '', $settings['use_image_buttons'] ? '<span class="' . ($context['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $context['member']['online']['text'] . '"></span>' : $context['member']['online']['label'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $context['member']['online']['label'] . '</span>' : ''; |
243 | 254 | |
244 | 255 | // Can they add this member as a buddy? |
245 | - if (!empty($context['can_have_buddy']) && !$context['user']['is_owner']) |
|
246 | - echo ' |
|
256 | + if (!empty($context['can_have_buddy']) && !$context['user']['is_owner']) { |
|
257 | + echo ' |
|
247 | 258 | <br> |
248 | 259 | <a href="', $scripturl, '?action=buddy;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['buddy_' . ($context['member']['is_buddy'] ? 'remove' : 'add')], '</a>'; |
260 | + } |
|
249 | 261 | |
250 | 262 | echo ' |
251 | 263 | </span>'; |
252 | 264 | |
253 | - if (!$context['user']['is_owner'] && $context['can_send_pm']) |
|
254 | - echo ' |
|
265 | + if (!$context['user']['is_owner'] && $context['can_send_pm']) { |
|
266 | + echo ' |
|
255 | 267 | <a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], '" class="infolinks">', $txt['profile_sendpm_short'], '</a>'; |
268 | + } |
|
256 | 269 | |
257 | 270 | echo ' |
258 | 271 | <a href="', $scripturl, '?action=profile;area=showposts;u=', $context['id_member'], '" class="infolinks">', $txt['showPosts'], '</a>'; |
259 | 272 | |
260 | - if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled'])) |
|
261 | - echo ' |
|
273 | + if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled'])) { |
|
274 | + echo ' |
|
262 | 275 | <a href="', $scripturl, '?action=profile;area=showdrafts;u=', $context['id_member'], '" class="infolinks">', $txt['drafts_show'], '</a>'; |
276 | + } |
|
263 | 277 | |
264 | 278 | echo ' |
265 | 279 | <a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '" class="infolinks">', $txt['statPanel'], '</a>'; |
@@ -268,17 +282,19 @@ discard block |
||
268 | 282 | if (!empty($context['print_custom_fields']['bottom_poster'])) |
269 | 283 | { |
270 | 284 | $fields = ''; |
271 | - foreach ($context['print_custom_fields']['bottom_poster'] as $field) |
|
272 | - if (!empty($field['output_html'])) |
|
285 | + foreach ($context['print_custom_fields']['bottom_poster'] as $field) { |
|
286 | + if (!empty($field['output_html'])) |
|
273 | 287 | $fields .= ' |
274 | 288 | <li>' . $field['output_html'] . '</li>'; |
289 | + } |
|
275 | 290 | |
276 | - if (!empty($fields)) |
|
277 | - echo ' |
|
291 | + if (!empty($fields)) { |
|
292 | + echo ' |
|
278 | 293 | <div class="custom_fields_bottom"> |
279 | 294 | <ul class="nolist">', $fields, ' |
280 | 295 | </ul> |
281 | 296 | </div>'; |
297 | + } |
|
282 | 298 | } |
283 | 299 | |
284 | 300 | echo ' |
@@ -287,30 +303,35 @@ discard block |
||
287 | 303 | <div id="detailedinfo"> |
288 | 304 | <dl class="settings">'; |
289 | 305 | |
290 | - if ($context['user']['is_owner'] || $context['user']['is_admin']) |
|
291 | - echo ' |
|
306 | + if ($context['user']['is_owner'] || $context['user']['is_admin']) { |
|
307 | + echo ' |
|
292 | 308 | <dt>', $txt['username'], ': </dt> |
293 | 309 | <dd>', $context['member']['username'], '</dd>'; |
310 | + } |
|
294 | 311 | |
295 | - if (!isset($context['disabled_fields']['posts'])) |
|
296 | - echo ' |
|
312 | + if (!isset($context['disabled_fields']['posts'])) { |
|
313 | + echo ' |
|
297 | 314 | <dt>', $txt['profile_posts'], ': </dt> |
298 | 315 | <dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>'; |
316 | + } |
|
299 | 317 | |
300 | - if ($context['member']['show_email']) |
|
301 | - echo ' |
|
318 | + if ($context['member']['show_email']) { |
|
319 | + echo ' |
|
302 | 320 | <dt>', $txt['email'], ': </dt> |
303 | 321 | <dd><a href="mailto:', $context['member']['email'], '">', $context['member']['email'], '</a></dd>'; |
322 | + } |
|
304 | 323 | |
305 | - if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) |
|
306 | - echo ' |
|
324 | + if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) { |
|
325 | + echo ' |
|
307 | 326 | <dt>', $txt['custom_title'], ': </dt> |
308 | 327 | <dd>', $context['member']['title'], '</dd>'; |
328 | + } |
|
309 | 329 | |
310 | - if (!empty($context['member']['blurb'])) |
|
311 | - echo ' |
|
330 | + if (!empty($context['member']['blurb'])) { |
|
331 | + echo ' |
|
312 | 332 | <dt>', $txt['personal_text'], ': </dt> |
313 | 333 | <dd>', $context['member']['blurb'], '</dd>'; |
334 | + } |
|
314 | 335 | |
315 | 336 | echo ' |
316 | 337 | <dt>', $txt['age'], ':</dt> |
@@ -324,19 +345,21 @@ discard block |
||
324 | 345 | { |
325 | 346 | $fields = array(); |
326 | 347 | |
327 | - foreach ($context['print_custom_fields']['standard'] as $field) |
|
328 | - if (!empty($field['output_html'])) |
|
348 | + foreach ($context['print_custom_fields']['standard'] as $field) { |
|
349 | + if (!empty($field['output_html'])) |
|
329 | 350 | $fields[] = $field; |
351 | + } |
|
330 | 352 | |
331 | 353 | if (count($fields) > 0) |
332 | 354 | { |
333 | 355 | echo ' |
334 | 356 | <dl class="settings">'; |
335 | 357 | |
336 | - foreach ($fields as $field) |
|
337 | - echo ' |
|
358 | + foreach ($fields as $field) { |
|
359 | + echo ' |
|
338 | 360 | <dt>', $field['name'], ':</dt> |
339 | 361 | <dd>', $field['output_html'], '</dd>'; |
362 | + } |
|
340 | 363 | |
341 | 364 | echo ' |
342 | 365 | </dl>'; |
@@ -355,9 +378,10 @@ discard block |
||
355 | 378 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=', ($context['can_issue_warning'] && !$context['user']['is_owner'] ? 'issuewarning' : 'viewwarning'), '">', $context['member']['warning'], '%</a>'; |
356 | 379 | |
357 | 380 | // Can we provide information on what this means? |
358 | - if (!empty($context['warning_status'])) |
|
359 | - echo ' |
|
381 | + if (!empty($context['warning_status'])) { |
|
382 | + echo ' |
|
360 | 383 | <span class="smalltext">(', $context['warning_status'], ')</span>'; |
384 | + } |
|
361 | 385 | |
362 | 386 | echo ' |
363 | 387 | </dd>'; |
@@ -367,11 +391,12 @@ discard block |
||
367 | 391 | if (!empty($context['activate_message']) || !empty($context['member']['bans'])) |
368 | 392 | { |
369 | 393 | // If the person looking at the summary has permission, and the account isn't activated, give the viewer the ability to do it themselves. |
370 | - if (!empty($context['activate_message'])) |
|
371 | - echo ' |
|
394 | + if (!empty($context['activate_message'])) { |
|
395 | + echo ' |
|
372 | 396 | <dt class="clear"> |
373 | 397 | <span class="alert">', $context['activate_message'], '</span> (<a href="', $context['activate_link'], '"', ($context['activate_type'] == 4 ? ' class="you_sure" data-confirm="' . $txt['profileConfirm'] . '"' : ''), '>', $context['activate_link_text'], '</a>) |
374 | 398 | </dt>'; |
399 | + } |
|
375 | 400 | |
376 | 401 | // If the current member is banned, show a message and possibly a link to the ban. |
377 | 402 | if (!empty($context['member']['bans'])) |
@@ -383,10 +408,11 @@ discard block |
||
383 | 408 | <dt class="clear" id="ban_info" style="display: none;"> |
384 | 409 | <strong>', $txt['user_banned_by_following'], ':</strong>'; |
385 | 410 | |
386 | - foreach ($context['member']['bans'] as $ban) |
|
387 | - echo ' |
|
411 | + foreach ($context['member']['bans'] as $ban) { |
|
412 | + echo ' |
|
388 | 413 | <br> |
389 | 414 | <span class="smalltext">', $ban['explanation'], '</span>'; |
415 | + } |
|
390 | 416 | |
391 | 417 | echo ' |
392 | 418 | </dt>'; |
@@ -400,30 +426,34 @@ discard block |
||
400 | 426 | // If the person looking is allowed, they can check the members IP address and hostname. |
401 | 427 | if ($context['can_see_ip']) |
402 | 428 | { |
403 | - if (!empty($context['member']['ip'])) |
|
404 | - echo ' |
|
429 | + if (!empty($context['member']['ip'])) { |
|
430 | + echo ' |
|
405 | 431 | <dt>', $txt['ip'], ': </dt> |
406 | 432 | <dd><a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['member']['ip'], ';u=', $context['member']['id'], '">', $context['member']['ip'], '</a></dd>'; |
433 | + } |
|
407 | 434 | |
408 | - if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip'])) |
|
409 | - echo ' |
|
435 | + if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip'])) { |
|
436 | + echo ' |
|
410 | 437 | <dt>', $txt['hostname'], ': </dt> |
411 | 438 | <dd>', $context['member']['hostname'], '</dd>'; |
439 | + } |
|
412 | 440 | } |
413 | 441 | |
414 | 442 | echo ' |
415 | 443 | <dt>', $txt['local_time'], ':</dt> |
416 | 444 | <dd>', $context['member']['local_time'], '</dd>'; |
417 | 445 | |
418 | - if (!empty($modSettings['userLanguage']) && !empty($context['member']['language'])) |
|
419 | - echo ' |
|
446 | + if (!empty($modSettings['userLanguage']) && !empty($context['member']['language'])) { |
|
447 | + echo ' |
|
420 | 448 | <dt>', $txt['language'], ':</dt> |
421 | 449 | <dd>', $context['member']['language'], '</dd>'; |
450 | + } |
|
422 | 451 | |
423 | - if ($context['member']['show_last_login']) |
|
424 | - echo ' |
|
452 | + if ($context['member']['show_last_login']) { |
|
453 | + echo ' |
|
425 | 454 | <dt>', $txt['lastLoggedIn'], ': </dt> |
426 | 455 | <dd>', $context['member']['last_login'], (!empty($context['member']['is_hidden']) ? ' (' . $txt['hidden'] . ')' : ''), '</dd>'; |
456 | + } |
|
427 | 457 | |
428 | 458 | echo ' |
429 | 459 | </dl>'; |
@@ -432,42 +462,47 @@ discard block |
||
432 | 462 | if (!empty($context['print_custom_fields']['above_signature'])) |
433 | 463 | { |
434 | 464 | $fields = ''; |
435 | - foreach ($context['print_custom_fields']['above_signature'] as $field) |
|
436 | - if (!empty($field['output_html'])) |
|
465 | + foreach ($context['print_custom_fields']['above_signature'] as $field) { |
|
466 | + if (!empty($field['output_html'])) |
|
437 | 467 | $fields .= ' |
438 | 468 | <li>' . $field['output_html'] . '</li>'; |
469 | + } |
|
439 | 470 | |
440 | - if (!empty($fields)) |
|
441 | - echo ' |
|
471 | + if (!empty($fields)) { |
|
472 | + echo ' |
|
442 | 473 | <div class="custom_fields_above_signature"> |
443 | 474 | <ul class="nolist">', $fields, ' |
444 | 475 | </ul> |
445 | 476 | </div>'; |
477 | + } |
|
446 | 478 | } |
447 | 479 | |
448 | 480 | // Show the users signature. |
449 | - if ($context['signature_enabled'] && !empty($context['member']['signature'])) |
|
450 | - echo ' |
|
481 | + if ($context['signature_enabled'] && !empty($context['member']['signature'])) { |
|
482 | + echo ' |
|
451 | 483 | <div class="signature"> |
452 | 484 | <h5>', $txt['signature'], ':</h5> |
453 | 485 | ', $context['member']['signature'], ' |
454 | 486 | </div>'; |
487 | + } |
|
455 | 488 | |
456 | 489 | // Are there any custom profile fields for below the signature? |
457 | 490 | if (!empty($context['print_custom_fields']['below_signature'])) |
458 | 491 | { |
459 | 492 | $fields = ''; |
460 | - foreach ($context['print_custom_fields']['below_signature'] as $field) |
|
461 | - if (!empty($field['output_html'])) |
|
493 | + foreach ($context['print_custom_fields']['below_signature'] as $field) { |
|
494 | + if (!empty($field['output_html'])) |
|
462 | 495 | $fields .= ' |
463 | 496 | <li>' . $field['output_html'] . '</li>'; |
497 | + } |
|
464 | 498 | |
465 | - if (!empty($fields)) |
|
466 | - echo ' |
|
499 | + if (!empty($fields)) { |
|
500 | + echo ' |
|
467 | 501 | <div class="custom_fields_below_signature"> |
468 | 502 | <ul class="nolist">', $fields, ' |
469 | 503 | </ul> |
470 | 504 | </div>'; |
505 | + } |
|
471 | 506 | } |
472 | 507 | |
473 | 508 | echo ' |
@@ -509,62 +544,70 @@ discard block |
||
509 | 544 | </div> |
510 | 545 | <div class="list_posts">'; |
511 | 546 | |
512 | - if (!$post['approved']) |
|
513 | - echo ' |
|
547 | + if (!$post['approved']) { |
|
548 | + echo ' |
|
514 | 549 | <div class="approve_post"> |
515 | 550 | <em>', $txt['post_awaiting_approval'], '</em> |
516 | 551 | </div>'; |
552 | + } |
|
517 | 553 | |
518 | 554 | echo ' |
519 | 555 | ', $post['body'], ' |
520 | 556 | </div>'; |
521 | 557 | |
522 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
523 | - echo ' |
|
558 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
559 | + echo ' |
|
524 | 560 | <div class="floatright"> |
525 | 561 | <ul class="quickbuttons">'; |
562 | + } |
|
526 | 563 | |
527 | 564 | // If they *can* reply? |
528 | - if ($post['can_reply']) |
|
529 | - echo ' |
|
565 | + if ($post['can_reply']) { |
|
566 | + echo ' |
|
530 | 567 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
568 | + } |
|
531 | 569 | |
532 | 570 | // If they *can* quote? |
533 | - if ($post['can_quote']) |
|
534 | - echo ' |
|
571 | + if ($post['can_quote']) { |
|
572 | + echo ' |
|
535 | 573 | <li><a href="', $scripturl . '?action=post;topic=', $post['topic'], '.', $post['start'], ';quote=', $post['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
574 | + } |
|
536 | 575 | |
537 | 576 | // How about... even... remove it entirely?! |
538 | - if ($post['can_delete']) |
|
539 | - echo ' |
|
577 | + if ($post['can_delete']) { |
|
578 | + echo ' |
|
540 | 579 | <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';profile;u=', $context['member']['id'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['remove_message'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['remove'], '</a></li>'; |
580 | + } |
|
541 | 581 | |
542 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
543 | - echo ' |
|
582 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
583 | + echo ' |
|
544 | 584 | </ul> |
545 | 585 | </div><!-- .floatright -->'; |
586 | + } |
|
546 | 587 | |
547 | 588 | echo ' |
548 | 589 | </div><!-- $post[css_class] -->'; |
549 | 590 | } |
591 | + } else { |
|
592 | + template_show_list('attachments'); |
|
550 | 593 | } |
551 | - else |
|
552 | - template_show_list('attachments'); |
|
553 | 594 | |
554 | 595 | // No posts? Just end with a informative message. |
555 | - if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts']))) |
|
556 | - echo ' |
|
596 | + if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts']))) { |
|
597 | + echo ' |
|
557 | 598 | <div class="windowbg"> |
558 | 599 | ', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), ' |
559 | 600 | </div>'; |
601 | + } |
|
560 | 602 | |
561 | 603 | // Show more page numbers. |
562 | - if (!empty($context['page_index'])) |
|
563 | - echo ' |
|
604 | + if (!empty($context['page_index'])) { |
|
605 | + echo ' |
|
564 | 606 | <div class="pagesection"> |
565 | 607 | <div class="pagelinks">', $context['page_index'], '</div> |
566 | 608 | </div>'; |
567 | -} |
|
609 | + } |
|
610 | + } |
|
568 | 611 | |
569 | 612 | /** |
570 | 613 | * Template for showing alerts within the alerts popup |
@@ -574,11 +617,12 @@ discard block |
||
574 | 617 | global $context, $txt, $scripturl; |
575 | 618 | |
576 | 619 | // Do we have an update message? |
577 | - if (!empty($context['update_message'])) |
|
578 | - echo ' |
|
620 | + if (!empty($context['update_message'])) { |
|
621 | + echo ' |
|
579 | 622 | <div class="infobox"> |
580 | 623 | ', $context['update_message'], ' |
581 | 624 | </div>'; |
625 | + } |
|
582 | 626 | |
583 | 627 | echo ' |
584 | 628 | <div class="cat_bar"> |
@@ -587,18 +631,18 @@ discard block |
||
587 | 631 | </h3> |
588 | 632 | </div>'; |
589 | 633 | |
590 | - if (empty($context['alerts'])) |
|
591 | - echo ' |
|
634 | + if (empty($context['alerts'])) { |
|
635 | + echo ' |
|
592 | 636 | <div class="information"> |
593 | 637 | ', $txt['alerts_none'], ' |
594 | 638 | </div>'; |
595 | - |
|
596 | - else |
|
639 | + } else |
|
597 | 640 | { |
598 | 641 | // Start the form if checkboxes are in use |
599 | - if ($context['showCheckboxes']) |
|
600 | - echo ' |
|
642 | + if ($context['showCheckboxes']) { |
|
643 | + echo ' |
|
601 | 644 | <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;save" method="post" accept-charset="', $context['character_set'], '" id="mark_all">'; |
645 | + } |
|
602 | 646 | |
603 | 647 | echo ' |
604 | 648 | <table id="alerts" class="table_grid">'; |
@@ -614,9 +658,10 @@ discard block |
||
614 | 658 | <li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=remove;aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['delete'], '</a></li> |
615 | 659 | <li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=', ($alert['is_read'] != 0 ? 'unread' : 'read'), ';aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons ', $alert['is_read'] != 0 ? 'unread_button' : 'read_button', '"></span>', ($alert['is_read'] != 0 ? $txt['mark_unread'] : $txt['mark_read_short']), '</a></li>'; |
616 | 660 | |
617 | - if ($context['showCheckboxes']) |
|
618 | - echo ' |
|
661 | + if ($context['showCheckboxes']) { |
|
662 | + echo ' |
|
619 | 663 | <li><input type="checkbox" name="mark[', $id, ']" value="', $id, '"></li>'; |
664 | + } |
|
620 | 665 | |
621 | 666 | echo ' |
622 | 667 | </ul> |
@@ -631,8 +676,8 @@ discard block |
||
631 | 676 | ', $context['pagination'], ' |
632 | 677 | </div>'; |
633 | 678 | |
634 | - if ($context['showCheckboxes']) |
|
635 | - echo ' |
|
679 | + if ($context['showCheckboxes']) { |
|
680 | + echo ' |
|
636 | 681 | <div class="floatright"> |
637 | 682 | ', $txt['check_all'], ': <input type="checkbox" name="select_all" id="select_all"> |
638 | 683 | <select name="mark_as"> |
@@ -643,14 +688,16 @@ discard block |
||
643 | 688 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
644 | 689 | <input type="submit" name="req" value="', $txt['quick_mod_go'], '" class="button you_sure"> |
645 | 690 | </div>'; |
691 | + } |
|
646 | 692 | |
647 | 693 | echo ' |
648 | 694 | </div>'; |
649 | 695 | |
650 | - if ($context['showCheckboxes']) |
|
651 | - echo ' |
|
696 | + if ($context['showCheckboxes']) { |
|
697 | + echo ' |
|
652 | 698 | </form>'; |
653 | 699 | } |
700 | + } |
|
654 | 701 | } |
655 | 702 | |
656 | 703 | /** |
@@ -671,12 +718,12 @@ discard block |
||
671 | 718 | </div>' : ''; |
672 | 719 | |
673 | 720 | // No drafts? Just show an informative message. |
674 | - if (empty($context['drafts'])) |
|
675 | - echo ' |
|
721 | + if (empty($context['drafts'])) { |
|
722 | + echo ' |
|
676 | 723 | <div class="windowbg centertext"> |
677 | 724 | ', $txt['draft_none'], ' |
678 | 725 | </div>'; |
679 | - else |
|
726 | + } else |
|
680 | 727 | { |
681 | 728 | // For every draft to be displayed, give it its own div, and show the important details of the draft. |
682 | 729 | foreach ($context['drafts'] as $draft) |
@@ -688,13 +735,15 @@ discard block |
||
688 | 735 | <h5> |
689 | 736 | <strong><a href="', $scripturl, '?board=', $draft['board']['id'], '.0">', $draft['board']['name'], '</a> / ', $draft['topic']['link'], '</strong> '; |
690 | 737 | |
691 | - if (!empty($draft['sticky'])) |
|
692 | - echo ' |
|
738 | + if (!empty($draft['sticky'])) { |
|
739 | + echo ' |
|
693 | 740 | <span class="generic_icons sticky" title="', $txt['sticky_topic'], '"></span>'; |
741 | + } |
|
694 | 742 | |
695 | - if (!empty($draft['locked'])) |
|
696 | - echo ' |
|
743 | + if (!empty($draft['locked'])) { |
|
744 | + echo ' |
|
697 | 745 | <span class="generic_icons lock" title="', $txt['locked_topic'], '"></span>'; |
746 | + } |
|
698 | 747 | |
699 | 748 | echo ' |
700 | 749 | </h5> |
@@ -727,13 +776,13 @@ discard block |
||
727 | 776 | { |
728 | 777 | global $context, $scripturl, $txt; |
729 | 778 | |
730 | - if (!empty($context['saved_successful'])) |
|
731 | - echo ' |
|
779 | + if (!empty($context['saved_successful'])) { |
|
780 | + echo ' |
|
732 | 781 | <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>'; |
733 | - |
|
734 | - elseif (!empty($context['saved_failed'])) |
|
735 | - echo ' |
|
782 | + } elseif (!empty($context['saved_failed'])) { |
|
783 | + echo ' |
|
736 | 784 | <div class="errorbox">', $context['saved_failed'], '</div>'; |
785 | + } |
|
737 | 786 | |
738 | 787 | echo ' |
739 | 788 | <div id="edit_buddies"> |
@@ -748,14 +797,16 @@ discard block |
||
748 | 797 | <th scope="col" class="quarter_table">', $txt['name'], '</th> |
749 | 798 | <th scope="col">', $txt['status'], '</th>'; |
750 | 799 | |
751 | - if ($context['can_moderate_forum']) |
|
752 | - echo ' |
|
800 | + if ($context['can_moderate_forum']) { |
|
801 | + echo ' |
|
753 | 802 | <th scope="col">', $txt['email'], '</th>'; |
803 | + } |
|
754 | 804 | |
755 | - if (!empty($context['custom_pf'])) |
|
756 | - foreach ($context['custom_pf'] as $column) |
|
805 | + if (!empty($context['custom_pf'])) { |
|
806 | + foreach ($context['custom_pf'] as $column) |
|
757 | 807 | echo ' |
758 | 808 | <th scope="col">', $column['label'], '</th>'; |
809 | + } |
|
759 | 810 | |
760 | 811 | echo ' |
761 | 812 | <th scope="col">', $txt['remove'], '</th> |
@@ -764,13 +815,14 @@ discard block |
||
764 | 815 | <tbody>'; |
765 | 816 | |
766 | 817 | // If they don't have any buddies don't list them! |
767 | - if (empty($context['buddies'])) |
|
768 | - echo ' |
|
818 | + if (empty($context['buddies'])) { |
|
819 | + echo ' |
|
769 | 820 | <tr class="windowbg"> |
770 | 821 | <td colspan="', $context['can_moderate_forum'] ? '10' : '9', '"> |
771 | 822 | <strong>', $txt['no_buddies'], '</strong> |
772 | 823 | </td> |
773 | 824 | </tr>'; |
825 | + } |
|
774 | 826 | |
775 | 827 | // Now loop through each buddy showing info on each. |
776 | 828 | else |
@@ -784,17 +836,19 @@ discard block |
||
784 | 836 | <a href="', $buddy['online']['href'], '"><span class="' . ($buddy['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $buddy['online']['text'] . '"></span></a> |
785 | 837 | </td>'; |
786 | 838 | |
787 | - if ($buddy['show_email']) |
|
788 | - echo ' |
|
839 | + if ($buddy['show_email']) { |
|
840 | + echo ' |
|
789 | 841 | <td> |
790 | 842 | <a href="mailto:' . $buddy['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a> |
791 | 843 | </td>'; |
844 | + } |
|
792 | 845 | |
793 | 846 | // Show the custom profile fields for this user. |
794 | - if (!empty($context['custom_pf'])) |
|
795 | - foreach ($context['custom_pf'] as $key => $column) |
|
847 | + if (!empty($context['custom_pf'])) { |
|
848 | + foreach ($context['custom_pf'] as $key => $column) |
|
796 | 849 | echo ' |
797 | 850 | <td class="lefttext">', $buddy['options'][$key], '</td>'; |
851 | + } |
|
798 | 852 | |
799 | 853 | echo ' |
800 | 854 | <td> |
@@ -827,9 +881,10 @@ discard block |
||
827 | 881 | </dl> |
828 | 882 | </div>'; |
829 | 883 | |
830 | - if (!empty($context['token_check'])) |
|
831 | - echo ' |
|
884 | + if (!empty($context['token_check'])) { |
|
885 | + echo ' |
|
832 | 886 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
887 | + } |
|
833 | 888 | |
834 | 889 | echo ' |
835 | 890 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -855,13 +910,13 @@ discard block |
||
855 | 910 | { |
856 | 911 | global $context, $scripturl, $txt; |
857 | 912 | |
858 | - if (!empty($context['saved_successful'])) |
|
859 | - echo ' |
|
913 | + if (!empty($context['saved_successful'])) { |
|
914 | + echo ' |
|
860 | 915 | <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>'; |
861 | - |
|
862 | - elseif (!empty($context['saved_failed'])) |
|
863 | - echo ' |
|
916 | + } elseif (!empty($context['saved_failed'])) { |
|
917 | + echo ' |
|
864 | 918 | <div class="errorbox">', $context['saved_failed'], '</div>'; |
919 | + } |
|
865 | 920 | |
866 | 921 | echo ' |
867 | 922 | <div id="edit_buddies"> |
@@ -876,9 +931,10 @@ discard block |
||
876 | 931 | <th scope="col" class="quarter_table">', $txt['name'], '</th> |
877 | 932 | <th scope="col">', $txt['status'], '</th>'; |
878 | 933 | |
879 | - if ($context['can_moderate_forum']) |
|
880 | - echo ' |
|
934 | + if ($context['can_moderate_forum']) { |
|
935 | + echo ' |
|
881 | 936 | <th scope="col">', $txt['email'], '</th>'; |
937 | + } |
|
882 | 938 | |
883 | 939 | echo ' |
884 | 940 | <th scope="col">', $txt['ignore_remove'], '</th> |
@@ -887,13 +943,14 @@ discard block |
||
887 | 943 | <tbody>'; |
888 | 944 | |
889 | 945 | // If they don't have anyone on their ignore list, don't list it! |
890 | - if (empty($context['ignore_list'])) |
|
891 | - echo ' |
|
946 | + if (empty($context['ignore_list'])) { |
|
947 | + echo ' |
|
892 | 948 | <tr class="windowbg"> |
893 | 949 | <td colspan="', $context['can_moderate_forum'] ? '4' : '3', '"> |
894 | 950 | <strong>', $txt['no_ignore'], '</strong> |
895 | 951 | </td> |
896 | 952 | </tr>'; |
953 | + } |
|
897 | 954 | |
898 | 955 | // Now loop through each buddy showing info on each. |
899 | 956 | foreach ($context['ignore_list'] as $member) |
@@ -905,11 +962,12 @@ discard block |
||
905 | 962 | <a href="', $member['online']['href'], '"><span class="' . ($member['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $member['online']['text'] . '"></span></a> |
906 | 963 | </td>'; |
907 | 964 | |
908 | - if ($context['can_moderate_forum']) |
|
909 | - echo ' |
|
965 | + if ($context['can_moderate_forum']) { |
|
966 | + echo ' |
|
910 | 967 | <td> |
911 | 968 | <a href="mailto:' . $member['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $member['name'] . '"></span></a> |
912 | 969 | </td>'; |
970 | + } |
|
913 | 971 | echo ' |
914 | 972 | <td> |
915 | 973 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore;remove=', $member['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['ignore_remove'], '"></span></a> |
@@ -940,9 +998,10 @@ discard block |
||
940 | 998 | </dl> |
941 | 999 | </div>'; |
942 | 1000 | |
943 | - if (!empty($context['token_check'])) |
|
944 | - echo ' |
|
1001 | + if (!empty($context['token_check'])) { |
|
1002 | + echo ' |
|
945 | 1003 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
1004 | + } |
|
946 | 1005 | |
947 | 1006 | echo ' |
948 | 1007 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -987,9 +1046,10 @@ discard block |
||
987 | 1046 | <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>'; |
988 | 1047 | |
989 | 1048 | // Second address detected? |
990 | - if (!empty($context['last_ip2'])) |
|
991 | - echo ' |
|
1049 | + if (!empty($context['last_ip2'])) { |
|
1050 | + echo ' |
|
992 | 1051 | , <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>'; |
1052 | + } |
|
993 | 1053 | |
994 | 1054 | echo ' |
995 | 1055 | </dd>'; |
@@ -1055,9 +1115,10 @@ discard block |
||
1055 | 1115 | </div> |
1056 | 1116 | <div class="windowbg">'; |
1057 | 1117 | |
1058 | - foreach ($context['whois_servers'] as $server) |
|
1059 | - echo ' |
|
1118 | + foreach ($context['whois_servers'] as $server) { |
|
1119 | + echo ' |
|
1060 | 1120 | <a href="', $server['url'], '" target="_blank" rel="noopener"', '>', $server['name'], '</a><br>'; |
1121 | + } |
|
1061 | 1122 | echo ' |
1062 | 1123 | </div> |
1063 | 1124 | <br>'; |
@@ -1069,13 +1130,12 @@ discard block |
||
1069 | 1130 | <h3 class="catbg">', $txt['members_from_ip'], ' ', $context['ip'], '</h3> |
1070 | 1131 | </div>'; |
1071 | 1132 | |
1072 | - if (empty($context['ips'])) |
|
1073 | - echo ' |
|
1133 | + if (empty($context['ips'])) { |
|
1134 | + echo ' |
|
1074 | 1135 | <p class="windowbg description"> |
1075 | 1136 | <em>', $txt['no_members_from_ip'], '</em> |
1076 | 1137 | </p>'; |
1077 | - |
|
1078 | - else |
|
1138 | + } else |
|
1079 | 1139 | { |
1080 | 1140 | echo ' |
1081 | 1141 | <table class="table_grid"> |
@@ -1088,12 +1148,13 @@ discard block |
||
1088 | 1148 | <tbody>'; |
1089 | 1149 | |
1090 | 1150 | // Loop through each of the members and display them. |
1091 | - foreach ($context['ips'] as $ip => $memberlist) |
|
1092 | - echo ' |
|
1151 | + foreach ($context['ips'] as $ip => $memberlist) { |
|
1152 | + echo ' |
|
1093 | 1153 | <tr class="windowbg"> |
1094 | 1154 | <td><a href="', $context['base_url'], ';searchip=', $ip, '">', $ip, '</a></td> |
1095 | 1155 | <td>', implode(', ', $memberlist), '</td> |
1096 | 1156 | </tr>'; |
1157 | + } |
|
1097 | 1158 | |
1098 | 1159 | echo ' |
1099 | 1160 | </tbody> |
@@ -1135,11 +1196,10 @@ discard block |
||
1135 | 1196 | </h3> |
1136 | 1197 | </div>'; |
1137 | 1198 | |
1138 | - if ($context['member']['has_all_permissions']) |
|
1139 | - echo ' |
|
1199 | + if ($context['member']['has_all_permissions']) { |
|
1200 | + echo ' |
|
1140 | 1201 | <div class="information">', $txt['showPermissions_all'], '</div>'; |
1141 | - |
|
1142 | - else |
|
1202 | + } else |
|
1143 | 1203 | { |
1144 | 1204 | echo ' |
1145 | 1205 | <div class="information">',$txt['showPermissions_help'], '</div> |
@@ -1154,9 +1214,10 @@ discard block |
||
1154 | 1214 | <div class="windowbg smalltext"> |
1155 | 1215 | ', $txt['showPermissions_restricted_boards_desc'], ':<br>'; |
1156 | 1216 | |
1157 | - foreach ($context['no_access_boards'] as $no_access_board) |
|
1158 | - echo ' |
|
1217 | + foreach ($context['no_access_boards'] as $no_access_board) { |
|
1218 | + echo ' |
|
1159 | 1219 | <a href="', $scripturl, '?board=', $no_access_board['id'], '.0">', $no_access_board['name'], '</a>', $no_access_board['is_last'] ? '' : ', '; |
1220 | + } |
|
1160 | 1221 | echo ' |
1161 | 1222 | </div>'; |
1162 | 1223 | } |
@@ -1188,12 +1249,13 @@ discard block |
||
1188 | 1249 | </td> |
1189 | 1250 | <td class="smalltext">'; |
1190 | 1251 | |
1191 | - if ($permission['is_denied']) |
|
1192 | - echo ' |
|
1252 | + if ($permission['is_denied']) { |
|
1253 | + echo ' |
|
1193 | 1254 | <span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>'; |
1194 | - else |
|
1195 | - echo ' |
|
1255 | + } else { |
|
1256 | + echo ' |
|
1196 | 1257 | ', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']); |
1258 | + } |
|
1197 | 1259 | |
1198 | 1260 | echo ' |
1199 | 1261 | </td> |
@@ -1204,10 +1266,10 @@ discard block |
||
1204 | 1266 | </table> |
1205 | 1267 | </div><!-- .tborder --> |
1206 | 1268 | <br>'; |
1207 | - } |
|
1208 | - else |
|
1209 | - echo ' |
|
1269 | + } else { |
|
1270 | + echo ' |
|
1210 | 1271 | <p class="windowbg">', $txt['showPermissions_none_general'], '</p>'; |
1272 | + } |
|
1211 | 1273 | |
1212 | 1274 | // Board permission section. |
1213 | 1275 | echo ' |
@@ -1218,14 +1280,16 @@ discard block |
||
1218 | 1280 | <select name="board" onchange="if (this.options[this.selectedIndex].value) this.form.submit();"> |
1219 | 1281 | <option value="0"', $context['board'] == 0 ? ' selected' : '', '>', $txt['showPermissions_global'], '</option>'; |
1220 | 1282 | |
1221 | - if (!empty($context['boards'])) |
|
1222 | - echo ' |
|
1283 | + if (!empty($context['boards'])) { |
|
1284 | + echo ' |
|
1223 | 1285 | <option value="" disabled>---------------------------</option>'; |
1286 | + } |
|
1224 | 1287 | |
1225 | 1288 | // Fill the box with any local permission boards. |
1226 | - foreach ($context['boards'] as $board) |
|
1227 | - echo ' |
|
1289 | + foreach ($context['boards'] as $board) { |
|
1290 | + echo ' |
|
1228 | 1291 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['name'], ' (', $board['profile_name'], ')</option>'; |
1292 | + } |
|
1229 | 1293 | |
1230 | 1294 | echo ' |
1231 | 1295 | </select> |
@@ -1254,13 +1318,13 @@ discard block |
||
1254 | 1318 | </td> |
1255 | 1319 | <td class="smalltext">'; |
1256 | 1320 | |
1257 | - if ($permission['is_denied']) |
|
1258 | - echo ' |
|
1321 | + if ($permission['is_denied']) { |
|
1322 | + echo ' |
|
1259 | 1323 | <span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>'; |
1260 | - |
|
1261 | - else |
|
1262 | - echo ' |
|
1324 | + } else { |
|
1325 | + echo ' |
|
1263 | 1326 | ', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']); |
1327 | + } |
|
1264 | 1328 | |
1265 | 1329 | echo ' |
1266 | 1330 | </td> |
@@ -1269,10 +1333,10 @@ discard block |
||
1269 | 1333 | echo ' |
1270 | 1334 | </tbody> |
1271 | 1335 | </table>'; |
1272 | - } |
|
1273 | - else |
|
1274 | - echo ' |
|
1336 | + } else { |
|
1337 | + echo ' |
|
1275 | 1338 | <p class="windowbg">', $txt['showPermissions_none_board'], '</p>'; |
1339 | + } |
|
1276 | 1340 | echo ' |
1277 | 1341 | </div><!-- #permissions -->'; |
1278 | 1342 | } |
@@ -1313,9 +1377,10 @@ discard block |
||
1313 | 1377 | </div>'; |
1314 | 1378 | |
1315 | 1379 | // If they haven't post at all, don't draw the graph. |
1316 | - if (empty($context['posts_by_time'])) |
|
1317 | - echo ' |
|
1380 | + if (empty($context['posts_by_time'])) { |
|
1381 | + echo ' |
|
1318 | 1382 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
1383 | + } |
|
1319 | 1384 | |
1320 | 1385 | // Otherwise do! |
1321 | 1386 | else |
@@ -1324,8 +1389,8 @@ discard block |
||
1324 | 1389 | <ul class="activity_stats flow_hidden">'; |
1325 | 1390 | |
1326 | 1391 | // The labels. |
1327 | - foreach ($context['posts_by_time'] as $time_of_day) |
|
1328 | - echo ' |
|
1392 | + foreach ($context['posts_by_time'] as $time_of_day) { |
|
1393 | + echo ' |
|
1329 | 1394 | <li> |
1330 | 1395 | <div class="generic_bar vertical"> |
1331 | 1396 | <div class="bar" style="height: ', (int) $time_of_day['relative_percent'], '%;"> |
@@ -1334,6 +1399,7 @@ discard block |
||
1334 | 1399 | </div> |
1335 | 1400 | <span class="stats_hour">', $time_of_day['hour_format'], '</span> |
1336 | 1401 | </li>'; |
1402 | + } |
|
1337 | 1403 | |
1338 | 1404 | echo ' |
1339 | 1405 | </ul>'; |
@@ -1352,11 +1418,10 @@ discard block |
||
1352 | 1418 | </h3> |
1353 | 1419 | </div>'; |
1354 | 1420 | |
1355 | - if (empty($context['popular_boards'])) |
|
1356 | - echo ' |
|
1421 | + if (empty($context['popular_boards'])) { |
|
1422 | + echo ' |
|
1357 | 1423 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
1358 | - |
|
1359 | - else |
|
1424 | + } else |
|
1360 | 1425 | { |
1361 | 1426 | echo ' |
1362 | 1427 | <dl class="stats">'; |
@@ -1386,10 +1451,10 @@ discard block |
||
1386 | 1451 | </h3> |
1387 | 1452 | </div>'; |
1388 | 1453 | |
1389 | - if (empty($context['board_activity'])) |
|
1390 | - echo ' |
|
1454 | + if (empty($context['board_activity'])) { |
|
1455 | + echo ' |
|
1391 | 1456 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
1392 | - else |
|
1457 | + } else |
|
1393 | 1458 | { |
1394 | 1459 | echo ' |
1395 | 1460 | <dl class="stats">'; |
@@ -1440,90 +1505,97 @@ discard block |
||
1440 | 1505 | <h3 class="catbg profile_hd">'; |
1441 | 1506 | |
1442 | 1507 | // Don't say "Profile" if this isn't the profile... |
1443 | - if (!empty($context['profile_header_text'])) |
|
1444 | - echo ' |
|
1508 | + if (!empty($context['profile_header_text'])) { |
|
1509 | + echo ' |
|
1445 | 1510 | ', $context['profile_header_text']; |
1446 | - else |
|
1447 | - echo ' |
|
1511 | + } else { |
|
1512 | + echo ' |
|
1448 | 1513 | ', $txt['profile']; |
1514 | + } |
|
1449 | 1515 | |
1450 | 1516 | echo ' |
1451 | 1517 | </h3> |
1452 | 1518 | </div>'; |
1453 | 1519 | |
1454 | 1520 | // Have we some description? |
1455 | - if ($context['page_desc']) |
|
1456 | - echo ' |
|
1521 | + if ($context['page_desc']) { |
|
1522 | + echo ' |
|
1457 | 1523 | <p class="information">', $context['page_desc'], '</p>'; |
1524 | + } |
|
1458 | 1525 | |
1459 | 1526 | echo ' |
1460 | 1527 | <div class="roundframe">'; |
1461 | 1528 | |
1462 | 1529 | // Any bits at the start? |
1463 | - if (!empty($context['profile_prehtml'])) |
|
1464 | - echo ' |
|
1530 | + if (!empty($context['profile_prehtml'])) { |
|
1531 | + echo ' |
|
1465 | 1532 | <div>', $context['profile_prehtml'], '</div>'; |
1533 | + } |
|
1466 | 1534 | |
1467 | - if (!empty($context['profile_fields'])) |
|
1468 | - echo ' |
|
1535 | + if (!empty($context['profile_fields'])) { |
|
1536 | + echo ' |
|
1469 | 1537 | <dl class="settings">'; |
1538 | + } |
|
1470 | 1539 | |
1471 | 1540 | // Start the big old loop 'of love. |
1472 | 1541 | $lastItem = 'hr'; |
1473 | 1542 | foreach ($context['profile_fields'] as $key => $field) |
1474 | 1543 | { |
1475 | 1544 | // We add a little hack to be sure we never get more than one hr in a row! |
1476 | - if ($lastItem == 'hr' && $field['type'] == 'hr') |
|
1477 | - continue; |
|
1545 | + if ($lastItem == 'hr' && $field['type'] == 'hr') { |
|
1546 | + continue; |
|
1547 | + } |
|
1478 | 1548 | |
1479 | 1549 | $lastItem = $field['type']; |
1480 | - if ($field['type'] == 'hr') |
|
1481 | - echo ' |
|
1550 | + if ($field['type'] == 'hr') { |
|
1551 | + echo ' |
|
1482 | 1552 | </dl> |
1483 | 1553 | <hr> |
1484 | 1554 | <dl class="settings">'; |
1485 | - |
|
1486 | - elseif ($field['type'] == 'callback') |
|
1555 | + } elseif ($field['type'] == 'callback') |
|
1487 | 1556 | { |
1488 | 1557 | if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
1489 | 1558 | { |
1490 | 1559 | $callback_func = 'template_profile_' . $field['callback_func']; |
1491 | 1560 | $callback_func(); |
1492 | 1561 | } |
1493 | - } |
|
1494 | - else |
|
1562 | + } else |
|
1495 | 1563 | { |
1496 | 1564 | echo ' |
1497 | 1565 | <dt> |
1498 | 1566 | <strong', !empty($field['is_error']) ? ' class="error"' : '', '>', $field['type'] !== 'label' ? '<label for="' . $key . '">' : '', $field['label'], $field['type'] !== 'label' ? '</label>' : '', '</strong>'; |
1499 | 1567 | |
1500 | 1568 | // Does it have any subtext to show? |
1501 | - if (!empty($field['subtext'])) |
|
1502 | - echo ' |
|
1569 | + if (!empty($field['subtext'])) { |
|
1570 | + echo ' |
|
1503 | 1571 | <br> |
1504 | 1572 | <span class="smalltext">', $field['subtext'], '</span>'; |
1573 | + } |
|
1505 | 1574 | |
1506 | 1575 | echo ' |
1507 | 1576 | </dt> |
1508 | 1577 | <dd>'; |
1509 | 1578 | |
1510 | 1579 | // Want to put something infront of the box? |
1511 | - if (!empty($field['preinput'])) |
|
1512 | - echo ' |
|
1580 | + if (!empty($field['preinput'])) { |
|
1581 | + echo ' |
|
1513 | 1582 | ', $field['preinput']; |
1583 | + } |
|
1514 | 1584 | |
1515 | 1585 | // What type of data are we showing? |
1516 | - if ($field['type'] == 'label') |
|
1517 | - echo ' |
|
1586 | + if ($field['type'] == 'label') { |
|
1587 | + echo ' |
|
1518 | 1588 | ', $field['value']; |
1589 | + } |
|
1519 | 1590 | |
1520 | 1591 | // Maybe it's a text box - very likely! |
1521 | 1592 | elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'number', 'time', 'url'))) |
1522 | 1593 | { |
1523 | - if ($field['type'] == 'int' || $field['type'] == 'float') |
|
1524 | - $type = 'number'; |
|
1525 | - else |
|
1526 | - $type = $field['type']; |
|
1594 | + if ($field['type'] == 'int' || $field['type'] == 'float') { |
|
1595 | + $type = 'number'; |
|
1596 | + } else { |
|
1597 | + $type = $field['type']; |
|
1598 | + } |
|
1527 | 1599 | $step = $field['type'] == 'float' ? ' step="0.1"' : ''; |
1528 | 1600 | |
1529 | 1601 | |
@@ -1531,10 +1603,11 @@ discard block |
||
1531 | 1603 | <input type="', $type, '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" ', $field['input_attr'], ' ', $step, '>'; |
1532 | 1604 | } |
1533 | 1605 | // You "checking" me out? ;) |
1534 | - elseif ($field['type'] == 'check') |
|
1535 | - echo ' |
|
1606 | + elseif ($field['type'] == 'check') { |
|
1607 | + echo ' |
|
1536 | 1608 | <input type="hidden" name="', $key, '" value="0"> |
1537 | 1609 | <input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" ', $field['input_attr'], '>'; |
1610 | + } |
|
1538 | 1611 | |
1539 | 1612 | // Always fun - select boxes! |
1540 | 1613 | elseif ($field['type'] == 'select') |
@@ -1545,14 +1618,16 @@ discard block |
||
1545 | 1618 | if (isset($field['options'])) |
1546 | 1619 | { |
1547 | 1620 | // Is this some code to generate the options? |
1548 | - if (!is_array($field['options'])) |
|
1549 | - $field['options'] = $field['options'](); |
|
1621 | + if (!is_array($field['options'])) { |
|
1622 | + $field['options'] = $field['options'](); |
|
1623 | + } |
|
1550 | 1624 | |
1551 | 1625 | // Assuming we now have some! |
1552 | - if (is_array($field['options'])) |
|
1553 | - foreach ($field['options'] as $value => $name) |
|
1626 | + if (is_array($field['options'])) { |
|
1627 | + foreach ($field['options'] as $value => $name) |
|
1554 | 1628 | echo ' |
1555 | 1629 | <option', is_numeric($value) ? ' value="" disabled' : ' value="' . $value . '"', $value === $field['value'] ? ' selected' : '', '>', $name, '</option>'; |
1630 | + } |
|
1556 | 1631 | } |
1557 | 1632 | |
1558 | 1633 | echo ' |
@@ -1560,31 +1635,34 @@ discard block |
||
1560 | 1635 | } |
1561 | 1636 | |
1562 | 1637 | // Something to end with? |
1563 | - if (!empty($field['postinput'])) |
|
1564 | - echo ' |
|
1638 | + if (!empty($field['postinput'])) { |
|
1639 | + echo ' |
|
1565 | 1640 | ', $field['postinput']; |
1641 | + } |
|
1566 | 1642 | |
1567 | 1643 | echo ' |
1568 | 1644 | </dd>'; |
1569 | 1645 | } |
1570 | 1646 | } |
1571 | 1647 | |
1572 | - if (!empty($context['profile_fields'])) |
|
1573 | - echo ' |
|
1648 | + if (!empty($context['profile_fields'])) { |
|
1649 | + echo ' |
|
1574 | 1650 | </dl>'; |
1651 | + } |
|
1575 | 1652 | |
1576 | 1653 | // Are there any custom profile fields - if so print them! |
1577 | 1654 | if (!empty($context['custom_fields'])) |
1578 | 1655 | { |
1579 | - if ($lastItem != 'hr') |
|
1580 | - echo ' |
|
1656 | + if ($lastItem != 'hr') { |
|
1657 | + echo ' |
|
1581 | 1658 | <hr>'; |
1659 | + } |
|
1582 | 1660 | |
1583 | 1661 | echo ' |
1584 | 1662 | <dl class="settings">'; |
1585 | 1663 | |
1586 | - foreach ($context['custom_fields'] as $field) |
|
1587 | - echo ' |
|
1664 | + foreach ($context['custom_fields'] as $field) { |
|
1665 | + echo ' |
|
1588 | 1666 | <dt> |
1589 | 1667 | <strong>', $field['name'], ': </strong><br> |
1590 | 1668 | <span class="smalltext">', $field['desc'], '</span> |
@@ -1592,19 +1670,21 @@ discard block |
||
1592 | 1670 | <dd> |
1593 | 1671 | ', $field['input_html'], ' |
1594 | 1672 | </dd>'; |
1673 | + } |
|
1595 | 1674 | |
1596 | 1675 | echo ' |
1597 | 1676 | </dl>'; |
1598 | 1677 | } |
1599 | 1678 | |
1600 | 1679 | // Any closing HTML? |
1601 | - if (!empty($context['profile_posthtml'])) |
|
1602 | - echo ' |
|
1680 | + if (!empty($context['profile_posthtml'])) { |
|
1681 | + echo ' |
|
1603 | 1682 | <div>', $context['profile_posthtml'], '</div>'; |
1683 | + } |
|
1604 | 1684 | |
1605 | 1685 | // Only show the password box if it's actually needed. |
1606 | - if ($context['require_password']) |
|
1607 | - echo ' |
|
1686 | + if ($context['require_password']) { |
|
1687 | + echo ' |
|
1608 | 1688 | <dl class="settings"> |
1609 | 1689 | <dt> |
1610 | 1690 | <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '><label for="oldpasswrd">', $txt['current_password'], ': </label></strong><br> |
@@ -1614,18 +1694,21 @@ discard block |
||
1614 | 1694 | <input type="password" name="oldpasswrd" id="oldpasswrd" size="20"> |
1615 | 1695 | </dd> |
1616 | 1696 | </dl>'; |
1697 | + } |
|
1617 | 1698 | |
1618 | 1699 | // The button shouldn't say "Change profile" unless we're changing the profile... |
1619 | - if (!empty($context['submit_button_text'])) |
|
1620 | - echo ' |
|
1700 | + if (!empty($context['submit_button_text'])) { |
|
1701 | + echo ' |
|
1621 | 1702 | <input type="submit" name="save" value="', $context['submit_button_text'], '" class="button floatright">'; |
1622 | - else |
|
1623 | - echo ' |
|
1703 | + } else { |
|
1704 | + echo ' |
|
1624 | 1705 | <input type="submit" name="save" value="', $txt['change_profile'], '" class="button floatright">'; |
1706 | + } |
|
1625 | 1707 | |
1626 | - if (!empty($context['token_check'])) |
|
1627 | - echo ' |
|
1708 | + if (!empty($context['token_check'])) { |
|
1709 | + echo ' |
|
1628 | 1710 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
1711 | + } |
|
1629 | 1712 | |
1630 | 1713 | echo ' |
1631 | 1714 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -1635,10 +1718,11 @@ discard block |
||
1635 | 1718 | </form>'; |
1636 | 1719 | |
1637 | 1720 | // Any final spellchecking stuff? |
1638 | - if (!empty($context['show_spellchecking'])) |
|
1639 | - echo ' |
|
1721 | + if (!empty($context['show_spellchecking'])) { |
|
1722 | + echo ' |
|
1640 | 1723 | <form name="spell_form" id="spell_form" method="post" accept-charset="', $context['character_set'], '" target="spellWindow" action="', $scripturl, '?action=spellcheck"><input type="hidden" name="spellstring" value=""></form>'; |
1641 | -} |
|
1724 | + } |
|
1725 | + } |
|
1642 | 1726 | |
1643 | 1727 | /** |
1644 | 1728 | * Personal Message settings. |
@@ -1675,10 +1759,11 @@ discard block |
||
1675 | 1759 | <select name="pm_receive_from" id="pm_receive_from"> |
1676 | 1760 | <option value="0"', empty($context['receive_from']) || (empty($modSettings['enable_buddylist']) && $context['receive_from'] < 3) ? ' selected' : '', '>', $txt['pm_receive_from_everyone'], '</option>'; |
1677 | 1761 | |
1678 | - if (!empty($modSettings['enable_buddylist'])) |
|
1679 | - echo ' |
|
1762 | + if (!empty($modSettings['enable_buddylist'])) { |
|
1763 | + echo ' |
|
1680 | 1764 | <option value="1"', !empty($context['receive_from']) && $context['receive_from'] == 1 ? ' selected' : '', '>', $txt['pm_receive_from_ignore'], '</option> |
1681 | 1765 | <option value="2"', !empty($context['receive_from']) && $context['receive_from'] == 2 ? ' selected' : '', '>', $txt['pm_receive_from_buddies'], '</option>'; |
1766 | + } |
|
1682 | 1767 | |
1683 | 1768 | echo ' |
1684 | 1769 | <option value="3"', !empty($context['receive_from']) && $context['receive_from'] > 2 ? ' selected' : '', '>', $txt['pm_receive_from_admins'], '</option> |
@@ -1721,11 +1806,12 @@ discard block |
||
1721 | 1806 | if (empty($setting) || !is_array($setting)) |
1722 | 1807 | { |
1723 | 1808 | // Insert a separator (unless this is the first item in the list) |
1724 | - if ($i !== $first_option_key) |
|
1725 | - echo ' |
|
1809 | + if ($i !== $first_option_key) { |
|
1810 | + echo ' |
|
1726 | 1811 | </dl> |
1727 | 1812 | <hr> |
1728 | 1813 | <dl class="settings">'; |
1814 | + } |
|
1729 | 1815 | |
1730 | 1816 | // Should we give a name to this section? |
1731 | 1817 | if (is_string($setting) && !empty($setting)) |
@@ -1734,51 +1820,55 @@ discard block |
||
1734 | 1820 | echo ' |
1735 | 1821 | <dt><strong>' . $setting . '</strong></dt> |
1736 | 1822 | <dd></dd>'; |
1823 | + } else { |
|
1824 | + $titled_section = false; |
|
1737 | 1825 | } |
1738 | - else |
|
1739 | - $titled_section = false; |
|
1740 | 1826 | |
1741 | 1827 | continue; |
1742 | 1828 | } |
1743 | 1829 | |
1744 | 1830 | // Is this disabled? |
1745 | - if (isset($setting['enabled']) && $setting['enabled'] === false) |
|
1746 | - continue; |
|
1831 | + if (isset($setting['enabled']) && $setting['enabled'] === false) { |
|
1832 | + continue; |
|
1833 | + } |
|
1747 | 1834 | |
1748 | 1835 | // Some of these may not be set... Set to defaults here |
1749 | 1836 | $opts = array('calendar_start_day', 'topics_per_page', 'messages_per_page', 'display_quick_mod'); |
1750 | - if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']])) |
|
1751 | - $context['member']['options'][$setting['id']] = 0; |
|
1752 | - |
|
1753 | - if (!isset($setting['type']) || $setting['type'] == 'bool') |
|
1754 | - $setting['type'] = 'checkbox'; |
|
1755 | - |
|
1756 | - elseif ($setting['type'] == 'int' || $setting['type'] == 'integer') |
|
1757 | - $setting['type'] = 'number'; |
|
1837 | + if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']])) { |
|
1838 | + $context['member']['options'][$setting['id']] = 0; |
|
1839 | + } |
|
1758 | 1840 | |
1759 | - elseif ($setting['type'] == 'string') |
|
1760 | - $setting['type'] = 'text'; |
|
1841 | + if (!isset($setting['type']) || $setting['type'] == 'bool') { |
|
1842 | + $setting['type'] = 'checkbox'; |
|
1843 | + } elseif ($setting['type'] == 'int' || $setting['type'] == 'integer') { |
|
1844 | + $setting['type'] = 'number'; |
|
1845 | + } elseif ($setting['type'] == 'string') { |
|
1846 | + $setting['type'] = 'text'; |
|
1847 | + } |
|
1761 | 1848 | |
1762 | - if (isset($setting['options'])) |
|
1763 | - $setting['type'] = 'list'; |
|
1849 | + if (isset($setting['options'])) { |
|
1850 | + $setting['type'] = 'list'; |
|
1851 | + } |
|
1764 | 1852 | |
1765 | 1853 | echo ' |
1766 | 1854 | <dt> |
1767 | 1855 | <label for="', $setting['id'], '">', !$titled_section ? '<strong>' : '', $setting['label'], !$titled_section ? '</strong>' : '', '</label>'; |
1768 | 1856 | |
1769 | - if (isset($setting['description'])) |
|
1770 | - echo ' |
|
1857 | + if (isset($setting['description'])) { |
|
1858 | + echo ' |
|
1771 | 1859 | <br> |
1772 | 1860 | <span class="smalltext">', $setting['description'], '</span>'; |
1861 | + } |
|
1773 | 1862 | echo ' |
1774 | 1863 | </dt> |
1775 | 1864 | <dd>'; |
1776 | 1865 | |
1777 | 1866 | // Display checkbox options |
1778 | - if ($setting['type'] == 'checkbox') |
|
1779 | - echo ' |
|
1867 | + if ($setting['type'] == 'checkbox') { |
|
1868 | + echo ' |
|
1780 | 1869 | <input type="hidden" name="default_options[' . $setting['id'] . ']" value="0"> |
1781 | 1870 | <input type="checkbox" name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', !empty($context['member']['options'][$setting['id']]) ? ' checked' : '', ' value="1">'; |
1871 | + } |
|
1782 | 1872 | |
1783 | 1873 | // How about selection lists, we all love them |
1784 | 1874 | elseif ($setting['type'] == 'list') |
@@ -1786,9 +1876,10 @@ discard block |
||
1786 | 1876 | echo ' |
1787 | 1877 | <select name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', '>'; |
1788 | 1878 | |
1789 | - foreach ($setting['options'] as $value => $label) |
|
1790 | - echo ' |
|
1879 | + foreach ($setting['options'] as $value => $label) { |
|
1880 | + echo ' |
|
1791 | 1881 | <option value="', $value, '"', $value == $context['member']['options'][$setting['id']] ? ' selected' : '', '>', $label, '</option>'; |
1882 | + } |
|
1792 | 1883 | |
1793 | 1884 | echo ' |
1794 | 1885 | </select>'; |
@@ -1804,14 +1895,13 @@ discard block |
||
1804 | 1895 | |
1805 | 1896 | echo ' |
1806 | 1897 | <input type="number"', $min . $max . $step; |
1807 | - } |
|
1808 | - elseif (isset($setting['type']) && $setting['type'] == 'url') |
|
1809 | - echo' |
|
1898 | + } elseif (isset($setting['type']) && $setting['type'] == 'url') { |
|
1899 | + echo' |
|
1810 | 1900 | <input type="url"'; |
1811 | - |
|
1812 | - else |
|
1813 | - echo ' |
|
1901 | + } else { |
|
1902 | + echo ' |
|
1814 | 1903 | <input type="text"'; |
1904 | + } |
|
1815 | 1905 | |
1816 | 1906 | echo ' name="default_options[', $setting['id'], ']" id="', $setting['id'], '" value="', isset($context['member']['options'][$setting['id']]) ? $context['member']['options'][$setting['id']] : $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : '', '>'; |
1817 | 1907 | } |
@@ -1848,8 +1938,8 @@ discard block |
||
1848 | 1938 | <dl class="settings">'; |
1849 | 1939 | |
1850 | 1940 | // Allow notification on announcements to be disabled? |
1851 | - if (!empty($modSettings['allow_disableAnnounce'])) |
|
1852 | - echo ' |
|
1941 | + if (!empty($modSettings['allow_disableAnnounce'])) { |
|
1942 | + echo ' |
|
1853 | 1943 | <dt> |
1854 | 1944 | <label for="notify_announcements">', $txt['notify_important_email'], '</label> |
1855 | 1945 | </dt> |
@@ -1857,15 +1947,17 @@ discard block |
||
1857 | 1947 | <input type="hidden" name="notify_announcements" value="0"> |
1858 | 1948 | <input type="checkbox" id="notify_announcements" name="notify_announcements" value="1"', !empty($context['member']['notify_announcements']) ? ' checked' : '', '> |
1859 | 1949 | </dd>'; |
1950 | + } |
|
1860 | 1951 | |
1861 | - if (!empty($modSettings['enable_ajax_alerts'])) |
|
1862 | - echo ' |
|
1952 | + if (!empty($modSettings['enable_ajax_alerts'])) { |
|
1953 | + echo ' |
|
1863 | 1954 | <dt> |
1864 | 1955 | <label for="notify_send_body">', $txt['notify_alert_timeout'], '</label> |
1865 | 1956 | </dt> |
1866 | 1957 | <dd> |
1867 | 1958 | <input type="number" size="4" id="notify_alert_timeout" name="opt_alert_timeout" min="0" value="', $context['member']['alert_timeout'], '"> |
1868 | 1959 | </dd>'; |
1960 | + } |
|
1869 | 1961 | |
1870 | 1962 | echo ' |
1871 | 1963 | </dl> |
@@ -1897,9 +1989,10 @@ discard block |
||
1897 | 1989 | |
1898 | 1990 | $label = $txt['alert_opt_' . $opts[1]]; |
1899 | 1991 | $label_pos = isset($opts['label']) ? $opts['label'] : ''; |
1900 | - if ($label_pos == 'before') |
|
1901 | - echo ' |
|
1992 | + if ($label_pos == 'before') { |
|
1993 | + echo ' |
|
1902 | 1994 | <label for="opt_', $opts[1], '">', $label, '</label>'; |
1995 | + } |
|
1903 | 1996 | |
1904 | 1997 | $this_value = isset($context['alert_prefs'][$opts[1]]) ? $context['alert_prefs'][$opts[1]] : 0; |
1905 | 1998 | switch ($opts[0]) |
@@ -1913,17 +2006,19 @@ discard block |
||
1913 | 2006 | echo ' |
1914 | 2007 | <select name="opt_', $opts[1], '" id="opt_', $opts[1], '">'; |
1915 | 2008 | |
1916 | - foreach ($opts['opts'] as $k => $v) |
|
1917 | - echo ' |
|
2009 | + foreach ($opts['opts'] as $k => $v) { |
|
2010 | + echo ' |
|
1918 | 2011 | <option value="', $k, '"', $this_value == $k ? ' selected' : '', '>', $v, '</option>'; |
2012 | + } |
|
1919 | 2013 | echo ' |
1920 | 2014 | </select>'; |
1921 | 2015 | break; |
1922 | 2016 | } |
1923 | 2017 | |
1924 | - if ($label_pos == 'after') |
|
1925 | - echo ' |
|
2018 | + if ($label_pos == 'after') { |
|
2019 | + echo ' |
|
1926 | 2020 | <label for="opt_', $opts[1], '">', $label, '</label>'; |
2021 | + } |
|
1927 | 2022 | |
1928 | 2023 | echo ' |
1929 | 2024 | </td> |
@@ -2040,11 +2135,12 @@ discard block |
||
2040 | 2135 | <p class="information">', $txt['groupMembership_info'], '</p>'; |
2041 | 2136 | |
2042 | 2137 | // Do we have an update message? |
2043 | - if (!empty($context['update_message'])) |
|
2044 | - echo ' |
|
2138 | + if (!empty($context['update_message'])) { |
|
2139 | + echo ' |
|
2045 | 2140 | <div class="infobox"> |
2046 | 2141 | ', $context['update_message'], '. |
2047 | 2142 | </div>'; |
2143 | + } |
|
2048 | 2144 | |
2049 | 2145 | echo ' |
2050 | 2146 | <div id="groups">'; |
@@ -2066,8 +2162,7 @@ discard block |
||
2066 | 2162 | </div> |
2067 | 2163 | </div> |
2068 | 2164 | </div><!-- .groupmembership -->'; |
2069 | - } |
|
2070 | - else |
|
2165 | + } else |
|
2071 | 2166 | { |
2072 | 2167 | echo ' |
2073 | 2168 | <div class="title_bar"> |
@@ -2079,27 +2174,30 @@ discard block |
||
2079 | 2174 | echo ' |
2080 | 2175 | <div class="windowbg" id="primdiv_', $group['id'], '">'; |
2081 | 2176 | |
2082 | - if ($context['can_edit_primary']) |
|
2083 | - echo ' |
|
2177 | + if ($context['can_edit_primary']) { |
|
2178 | + echo ' |
|
2084 | 2179 | <input type="radio" name="primary" id="primary_', $group['id'], '" value="', $group['id'], '"', $group['is_primary'] ? ' checked' : '', ' onclick="highlightSelected(\'primdiv_' . $group['id'] . '\');"', $group['can_be_primary'] ? '' : ' disabled', '>'; |
2180 | + } |
|
2085 | 2181 | |
2086 | 2182 | echo ' |
2087 | 2183 | <label for="primary_', $group['id'], '"><strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '</label>'; |
2088 | 2184 | |
2089 | 2185 | // Can they leave their group? |
2090 | - if ($group['can_leave']) |
|
2091 | - echo ' |
|
2186 | + if ($group['can_leave']) { |
|
2187 | + echo ' |
|
2092 | 2188 | <a href="' . $scripturl . '?action=profile;save;u=' . $context['id_member'] . ';area=groupmembership;' . $context['session_var'] . '=' . $context['session_id'] . ';gid=' . $group['id'] . ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">' . $txt['leave_group'] . '</a>'; |
2189 | + } |
|
2093 | 2190 | |
2094 | 2191 | echo ' |
2095 | 2192 | </div><!-- .windowbg -->'; |
2096 | 2193 | } |
2097 | 2194 | |
2098 | - if ($context['can_edit_primary']) |
|
2099 | - echo ' |
|
2195 | + if ($context['can_edit_primary']) { |
|
2196 | + echo ' |
|
2100 | 2197 | <div class="padding righttext"> |
2101 | 2198 | <input type="submit" value="', $txt['make_primary'], '" class="button"> |
2102 | 2199 | </div>'; |
2200 | + } |
|
2103 | 2201 | |
2104 | 2202 | // Any groups they can join? |
2105 | 2203 | if (!empty($context['groups']['available'])) |
@@ -2115,17 +2213,16 @@ discard block |
||
2115 | 2213 | <div class="windowbg"> |
2116 | 2214 | <strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), ''; |
2117 | 2215 | |
2118 | - if ($group['type'] == 3) |
|
2119 | - echo ' |
|
2216 | + if ($group['type'] == 3) { |
|
2217 | + echo ' |
|
2120 | 2218 | <a href="', $scripturl, '?action=profile;save;u=', $context['id_member'], ';area=groupmembership;', $context['session_var'], '=', $context['session_id'], ';gid=', $group['id'], ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '" class="button floatright">', $txt['join_group'], '</a>'; |
2121 | - |
|
2122 | - elseif ($group['type'] == 2 && $group['pending']) |
|
2123 | - echo ' |
|
2219 | + } elseif ($group['type'] == 2 && $group['pending']) { |
|
2220 | + echo ' |
|
2124 | 2221 | <span class="floatright">', $txt['approval_pending'], '</span>'; |
2125 | - |
|
2126 | - elseif ($group['type'] == 2) |
|
2127 | - echo ' |
|
2222 | + } elseif ($group['type'] == 2) { |
|
2223 | + echo ' |
|
2128 | 2224 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=groupmembership;request=', $group['id'], '" class="button floatright">', $txt['request_group'], '</a>'; |
2225 | + } |
|
2129 | 2226 | |
2130 | 2227 | echo ' |
2131 | 2228 | </div><!-- .windowbg -->'; |
@@ -2148,9 +2245,10 @@ discard block |
||
2148 | 2245 | |
2149 | 2246 | prevDiv.className = "windowbg"; |
2150 | 2247 | }'; |
2151 | - if (isset($context['groups']['member'][$context['primary_group']])) |
|
2152 | - echo ' |
|
2248 | + if (isset($context['groups']['member'][$context['primary_group']])) { |
|
2249 | + echo ' |
|
2153 | 2250 | highlightSelected("primdiv_' . $context['primary_group'] . '");'; |
2251 | + } |
|
2154 | 2252 | |
2155 | 2253 | echo ' |
2156 | 2254 | </script>'; |
@@ -2159,9 +2257,10 @@ discard block |
||
2159 | 2257 | echo ' |
2160 | 2258 | </div><!-- #groups -->'; |
2161 | 2259 | |
2162 | - if (!empty($context['token_check'])) |
|
2163 | - echo ' |
|
2260 | + if (!empty($context['token_check'])) { |
|
2261 | + echo ' |
|
2164 | 2262 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
2263 | + } |
|
2165 | 2264 | |
2166 | 2265 | echo ' |
2167 | 2266 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2239,10 +2338,11 @@ discard block |
||
2239 | 2338 | |
2240 | 2339 | // Work out the starting warning. |
2241 | 2340 | $context['current_warning_mode'] = $context['warning_mode'][0]; |
2242 | - foreach ($context['warning_mode'] as $limit => $warning) |
|
2243 | - if ($context['member']['warning'] >= $limit) |
|
2341 | + foreach ($context['warning_mode'] as $limit => $warning) { |
|
2342 | + if ($context['member']['warning'] >= $limit) |
|
2244 | 2343 | $context['current_warning_mode'] = $warning; |
2245 | -} |
|
2344 | + } |
|
2345 | + } |
|
2246 | 2346 | |
2247 | 2347 | // Show all warnings of a user? |
2248 | 2348 | function template_viewWarning() |
@@ -2277,14 +2377,15 @@ discard block |
||
2277 | 2377 | </dd>'; |
2278 | 2378 | |
2279 | 2379 | // There's some impact of this? |
2280 | - if (!empty($context['level_effects'][$context['current_level']])) |
|
2281 | - echo ' |
|
2380 | + if (!empty($context['level_effects'][$context['current_level']])) { |
|
2381 | + echo ' |
|
2282 | 2382 | <dt> |
2283 | 2383 | <strong>', $txt['profile_viewwarning_impact'], ':</strong> |
2284 | 2384 | </dt> |
2285 | 2385 | <dd> |
2286 | 2386 | ', $context['level_effects'][$context['current_level']], ' |
2287 | 2387 | </dd>'; |
2388 | + } |
|
2288 | 2389 | |
2289 | 2390 | echo ' |
2290 | 2391 | </dl> |
@@ -2322,10 +2423,11 @@ discard block |
||
2322 | 2423 | |
2323 | 2424 | // Otherwise see what we can do...'; |
2324 | 2425 | |
2325 | - foreach ($context['notification_templates'] as $k => $type) |
|
2326 | - echo ' |
|
2426 | + foreach ($context['notification_templates'] as $k => $type) { |
|
2427 | + echo ' |
|
2327 | 2428 | if (index == ', $k, ') |
2328 | 2429 | document.getElementById(\'warn_body\').value = "', strtr($type['body'], array('"' => "'", "\n" => '\\n', "\r" => '')), '";'; |
2430 | + } |
|
2329 | 2431 | |
2330 | 2432 | echo ' |
2331 | 2433 | } |
@@ -2335,10 +2437,11 @@ discard block |
||
2335 | 2437 | // Also set the right effect. |
2336 | 2438 | effectText = "";'; |
2337 | 2439 | |
2338 | - foreach ($context['level_effects'] as $limit => $text) |
|
2339 | - echo ' |
|
2440 | + foreach ($context['level_effects'] as $limit => $text) { |
|
2441 | + echo ' |
|
2340 | 2442 | if (slideAmount >= ', $limit, ') |
2341 | 2443 | effectText = "', $text, '";'; |
2444 | + } |
|
2342 | 2445 | |
2343 | 2446 | echo ' |
2344 | 2447 | setInnerHTML(document.getElementById(\'cur_level_div\'), slideAmount + \'% (\' + effectText + \')\'); |
@@ -2353,32 +2456,35 @@ discard block |
||
2353 | 2456 | </h3> |
2354 | 2457 | </div>'; |
2355 | 2458 | |
2356 | - if (!$context['user']['is_owner']) |
|
2357 | - echo ' |
|
2459 | + if (!$context['user']['is_owner']) { |
|
2460 | + echo ' |
|
2358 | 2461 | <p class="information">', $txt['profile_warning_desc'], '</p>'; |
2462 | + } |
|
2359 | 2463 | |
2360 | 2464 | echo ' |
2361 | 2465 | <div class="windowbg"> |
2362 | 2466 | <dl class="settings">'; |
2363 | 2467 | |
2364 | - if (!$context['user']['is_owner']) |
|
2365 | - echo ' |
|
2468 | + if (!$context['user']['is_owner']) { |
|
2469 | + echo ' |
|
2366 | 2470 | <dt> |
2367 | 2471 | <strong>', $txt['profile_warning_name'], ':</strong> |
2368 | 2472 | </dt> |
2369 | 2473 | <dd> |
2370 | 2474 | <strong>', $context['member']['name'], '</strong> |
2371 | 2475 | </dd>'; |
2476 | + } |
|
2372 | 2477 | |
2373 | 2478 | echo ' |
2374 | 2479 | <dt> |
2375 | 2480 | <strong>', $txt['profile_warning_level'], ':</strong>'; |
2376 | 2481 | |
2377 | 2482 | // Is there only so much they can apply? |
2378 | - if ($context['warning_limit']) |
|
2379 | - echo ' |
|
2483 | + if ($context['warning_limit']) { |
|
2484 | + echo ' |
|
2380 | 2485 | <br> |
2381 | 2486 | <span class="smalltext">', sprintf($txt['profile_warning_limit_attribute'], $context['warning_limit']), '</span>'; |
2487 | + } |
|
2382 | 2488 | |
2383 | 2489 | echo ' |
2384 | 2490 | </dt> |
@@ -2433,9 +2539,10 @@ discard block |
||
2433 | 2539 | <option value="-1">', $txt['profile_warning_notify_template'], '</option> |
2434 | 2540 | <option value="-1" disabled>------------------------------</option>'; |
2435 | 2541 | |
2436 | - foreach ($context['notification_templates'] as $id_template => $template) |
|
2437 | - echo ' |
|
2542 | + foreach ($context['notification_templates'] as $id_template => $template) { |
|
2543 | + echo ' |
|
2438 | 2544 | <option value="', $id_template, '">', $template['title'], '</option>'; |
2545 | + } |
|
2439 | 2546 | |
2440 | 2547 | echo ' |
2441 | 2548 | </select> |
@@ -2448,9 +2555,10 @@ discard block |
||
2448 | 2555 | </dl> |
2449 | 2556 | <div class="righttext">'; |
2450 | 2557 | |
2451 | - if (!empty($context['token_check'])) |
|
2452 | - echo ' |
|
2558 | + if (!empty($context['token_check'])) { |
|
2559 | + echo ' |
|
2453 | 2560 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
2561 | + } |
|
2454 | 2562 | |
2455 | 2563 | echo ' |
2456 | 2564 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2466,8 +2574,8 @@ discard block |
||
2466 | 2574 | echo ' |
2467 | 2575 | <script>'; |
2468 | 2576 | |
2469 | - if (!$context['user']['is_owner']) |
|
2470 | - echo ' |
|
2577 | + if (!$context['user']['is_owner']) { |
|
2578 | + echo ' |
|
2471 | 2579 | modifyWarnNotify(); |
2472 | 2580 | $(document).ready(function() { |
2473 | 2581 | $("#preview_button").click(function() { |
@@ -2506,6 +2614,7 @@ discard block |
||
2506 | 2614 | }); |
2507 | 2615 | return false; |
2508 | 2616 | }'; |
2617 | + } |
|
2509 | 2618 | |
2510 | 2619 | echo ' |
2511 | 2620 | </script>'; |
@@ -2528,17 +2637,19 @@ discard block |
||
2528 | 2637 | </div>'; |
2529 | 2638 | |
2530 | 2639 | // If deleting another account give them a lovely info box. |
2531 | - if (!$context['user']['is_owner']) |
|
2532 | - echo ' |
|
2640 | + if (!$context['user']['is_owner']) { |
|
2641 | + echo ' |
|
2533 | 2642 | <p class="information">', $txt['deleteAccount_desc'], '</p>'; |
2643 | + } |
|
2534 | 2644 | |
2535 | 2645 | echo ' |
2536 | 2646 | <div class="windowbg">'; |
2537 | 2647 | |
2538 | 2648 | // If they are deleting their account AND the admin needs to approve it - give them another piece of info ;) |
2539 | - if ($context['needs_approval']) |
|
2540 | - echo ' |
|
2649 | + if ($context['needs_approval']) { |
|
2650 | + echo ' |
|
2541 | 2651 | <div class="errorbox">', $txt['deleteAccount_approval'], '</div>'; |
2652 | + } |
|
2542 | 2653 | |
2543 | 2654 | // If the user is deleting their own account warn them first - and require a password! |
2544 | 2655 | if ($context['user']['is_owner']) |
@@ -2550,9 +2661,10 @@ discard block |
||
2550 | 2661 | <input type="password" name="oldpasswrd" size="20"> |
2551 | 2662 | <input type="submit" value="', $txt['yes'], '" class="button">'; |
2552 | 2663 | |
2553 | - if (!empty($context['token_check'])) |
|
2554 | - echo ' |
|
2664 | + if (!empty($context['token_check'])) { |
|
2665 | + echo ' |
|
2555 | 2666 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
2667 | + } |
|
2556 | 2668 | |
2557 | 2669 | echo ' |
2558 | 2670 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2582,10 +2694,11 @@ discard block |
||
2582 | 2694 | <option value="topics">', $txt['deleteAccount_topics'], '</option> |
2583 | 2695 | </select>'; |
2584 | 2696 | |
2585 | - if ($context['show_perma_delete']) |
|
2586 | - echo ' |
|
2697 | + if ($context['show_perma_delete']) { |
|
2698 | + echo ' |
|
2587 | 2699 | <br> |
2588 | 2700 | <label for="perma_delete"><input type="checkbox" name="perma_delete" id="perma_delete" value="1">', $txt['deleteAccount_permanent'], ':</label>'; |
2701 | + } |
|
2589 | 2702 | |
2590 | 2703 | echo ' |
2591 | 2704 | </div>'; |
@@ -2598,9 +2711,10 @@ discard block |
||
2598 | 2711 | <div> |
2599 | 2712 | <input type="submit" value="', $txt['delete'], '" class="button">'; |
2600 | 2713 | |
2601 | - if (!empty($context['token_check'])) |
|
2602 | - echo ' |
|
2714 | + if (!empty($context['token_check'])) { |
|
2715 | + echo ' |
|
2603 | 2716 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
2717 | + } |
|
2604 | 2718 | |
2605 | 2719 | echo ' |
2606 | 2720 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2626,8 +2740,8 @@ discard block |
||
2626 | 2740 | <hr>'; |
2627 | 2741 | |
2628 | 2742 | // Only show the password box if it's actually needed. |
2629 | - if ($context['require_password']) |
|
2630 | - echo ' |
|
2743 | + if ($context['require_password']) { |
|
2744 | + echo ' |
|
2631 | 2745 | <dl class="settings"> |
2632 | 2746 | <dt> |
2633 | 2747 | <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br> |
@@ -2637,13 +2751,15 @@ discard block |
||
2637 | 2751 | <input type="password" name="oldpasswrd" size="20"> |
2638 | 2752 | </dd> |
2639 | 2753 | </dl>'; |
2754 | + } |
|
2640 | 2755 | |
2641 | 2756 | echo ' |
2642 | 2757 | <div class="righttext">'; |
2643 | 2758 | |
2644 | - if (!empty($context['token_check'])) |
|
2645 | - echo ' |
|
2759 | + if (!empty($context['token_check'])) { |
|
2760 | + echo ' |
|
2646 | 2761 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
2762 | + } |
|
2647 | 2763 | |
2648 | 2764 | echo ' |
2649 | 2765 | <input type="submit" value="', $txt['change_profile'], '" class="button"> |
@@ -2670,9 +2786,10 @@ discard block |
||
2670 | 2786 | <ul id="list_errors">'; |
2671 | 2787 | |
2672 | 2788 | // Cycle through each error and display an error message. |
2673 | - foreach ($context['post_errors'] as $error) |
|
2674 | - echo ' |
|
2789 | + foreach ($context['post_errors'] as $error) { |
|
2790 | + echo ' |
|
2675 | 2791 | <li>', isset($txt['profile_error_' . $error]) ? $txt['profile_error_' . $error] : $error, '</li>'; |
2792 | + } |
|
2676 | 2793 | |
2677 | 2794 | echo ' |
2678 | 2795 | </ul>'; |
@@ -2698,12 +2815,13 @@ discard block |
||
2698 | 2815 | <select name="id_group" ', ($context['user']['is_owner'] && $context['member']['group_id'] == 1 ? 'onchange="if (this.value != 1 && !confirm(\'' . $txt['deadmin_confirm'] . '\')) this.value = 1;"' : ''), '>'; |
2699 | 2816 | |
2700 | 2817 | // Fill the select box with all primary member groups that can be assigned to a member. |
2701 | - foreach ($context['member_groups'] as $member_group) |
|
2702 | - if (!empty($member_group['can_be_primary'])) |
|
2818 | + foreach ($context['member_groups'] as $member_group) { |
|
2819 | + if (!empty($member_group['can_be_primary'])) |
|
2703 | 2820 | echo ' |
2704 | 2821 | <option value="', $member_group['id'], '"', $member_group['is_primary'] ? ' selected' : '', '> |
2705 | 2822 | ', $member_group['name'], ' |
2706 | 2823 | </option>'; |
2824 | + } |
|
2707 | 2825 | |
2708 | 2826 | echo ' |
2709 | 2827 | </select> |
@@ -2716,10 +2834,11 @@ discard block |
||
2716 | 2834 | <input type="hidden" name="additional_groups[]" value="0">'; |
2717 | 2835 | |
2718 | 2836 | // For each membergroup show a checkbox so members can be assigned to more than one group. |
2719 | - foreach ($context['member_groups'] as $member_group) |
|
2720 | - if ($member_group['can_be_additional']) |
|
2837 | + foreach ($context['member_groups'] as $member_group) { |
|
2838 | + if ($member_group['can_be_additional']) |
|
2721 | 2839 | echo ' |
2722 | 2840 | <label for="additional_groups-', $member_group['id'], '"><input type="checkbox" name="additional_groups[]" value="', $member_group['id'], '" id="additional_groups-', $member_group['id'], '"', $member_group['is_additional'] ? ' checked' : '', '> ', $member_group['name'], '</label><br>'; |
2841 | + } |
|
2723 | 2842 | |
2724 | 2843 | echo ' |
2725 | 2844 | </span> |
@@ -2779,9 +2898,10 @@ discard block |
||
2779 | 2898 | <span class="smalltext">', $txt['sig_info'], '</span><br> |
2780 | 2899 | <br>'; |
2781 | 2900 | |
2782 | - if ($context['show_spellchecking']) |
|
2783 | - echo ' |
|
2901 | + if ($context['show_spellchecking']) { |
|
2902 | + echo ' |
|
2784 | 2903 | <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" class="button">'; |
2904 | + } |
|
2785 | 2905 | |
2786 | 2906 | echo ' |
2787 | 2907 | </dt> |
@@ -2789,17 +2909,20 @@ discard block |
||
2789 | 2909 | <textarea class="editor" onkeyup="calcCharLeft();" id="signature" name="signature" rows="5" cols="50">', $context['member']['signature'], '</textarea><br>'; |
2790 | 2910 | |
2791 | 2911 | // If there is a limit at all! |
2792 | - if (!empty($context['signature_limits']['max_length'])) |
|
2793 | - echo ' |
|
2912 | + if (!empty($context['signature_limits']['max_length'])) { |
|
2913 | + echo ' |
|
2794 | 2914 | <span class="smalltext">', sprintf($txt['max_sig_characters'], $context['signature_limits']['max_length']), ' <span id="signatureLeft">', $context['signature_limits']['max_length'], '</span></span><br>'; |
2915 | + } |
|
2795 | 2916 | |
2796 | - if (!empty($context['show_preview_button'])) |
|
2797 | - echo ' |
|
2917 | + if (!empty($context['show_preview_button'])) { |
|
2918 | + echo ' |
|
2798 | 2919 | <input type="button" name="preview_signature" id="preview_button" value="', $txt['preview_signature'], '" class="button floatright">'; |
2920 | + } |
|
2799 | 2921 | |
2800 | - if ($context['signature_warning']) |
|
2801 | - echo ' |
|
2922 | + if ($context['signature_warning']) { |
|
2923 | + echo ' |
|
2802 | 2924 | <span class="smalltext">', $context['signature_warning'], '</span>'; |
2925 | + } |
|
2803 | 2926 | |
2804 | 2927 | // Some javascript used to count how many characters have been used so far in the signature. |
2805 | 2928 | echo ' |
@@ -2830,38 +2953,43 @@ discard block |
||
2830 | 2953 | <label for="avatar_upload_box">', $txt['personal_picture'], '</label> |
2831 | 2954 | </strong>'; |
2832 | 2955 | |
2833 | - if (empty($modSettings['gravatarOverride'])) |
|
2834 | - echo ' |
|
2956 | + if (empty($modSettings['gravatarOverride'])) { |
|
2957 | + echo ' |
|
2835 | 2958 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_none" value="none"' . ($context['member']['avatar']['choice'] == 'none' ? ' checked="checked"' : '') . '> |
2836 | 2959 | <label for="avatar_choice_none"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
2837 | 2960 | ' . $txt['no_avatar'] . ' |
2838 | 2961 | </label><br>'; |
2962 | + } |
|
2839 | 2963 | |
2840 | - if (!empty($context['member']['avatar']['allow_server_stored'])) |
|
2841 | - echo ' |
|
2964 | + if (!empty($context['member']['avatar']['allow_server_stored'])) { |
|
2965 | + echo ' |
|
2842 | 2966 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_server_stored" value="server_stored"' . ($context['member']['avatar']['choice'] == 'server_stored' ? ' checked="checked"' : '') . '> |
2843 | 2967 | <label for="avatar_choice_server_stored"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
2844 | 2968 | ', $txt['choose_avatar_gallery'], ' |
2845 | 2969 | </label><br>'; |
2970 | + } |
|
2846 | 2971 | |
2847 | - if (!empty($context['member']['avatar']['allow_external'])) |
|
2848 | - echo ' |
|
2972 | + if (!empty($context['member']['avatar']['allow_external'])) { |
|
2973 | + echo ' |
|
2849 | 2974 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_external" value="external"' . ($context['member']['avatar']['choice'] == 'external' ? ' checked="checked"' : '') . '> |
2850 | 2975 | <label for="avatar_choice_external"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
2851 | 2976 | ', $txt['my_own_pic'], ' |
2852 | 2977 | </label><br>'; |
2978 | + } |
|
2853 | 2979 | |
2854 | - if (!empty($context['member']['avatar']['allow_upload'])) |
|
2855 | - echo ' |
|
2980 | + if (!empty($context['member']['avatar']['allow_upload'])) { |
|
2981 | + echo ' |
|
2856 | 2982 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_upload" value="upload"' . ($context['member']['avatar']['choice'] == 'upload' ? ' checked="checked"' : '') . '> |
2857 | 2983 | <label for="avatar_choice_upload"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
2858 | 2984 | ', $txt['avatar_will_upload'], ' |
2859 | 2985 | </label><br>'; |
2986 | + } |
|
2860 | 2987 | |
2861 | - if (!empty($context['member']['avatar']['allow_gravatar'])) |
|
2862 | - echo ' |
|
2988 | + if (!empty($context['member']['avatar']['allow_gravatar'])) { |
|
2989 | + echo ' |
|
2863 | 2990 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_gravatar" value="gravatar"' . ($context['member']['avatar']['choice'] == 'gravatar' ? ' checked="checked"' : '') . '> |
2864 | 2991 | <label for="avatar_choice_gravatar"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['use_gravatar'] . '</label>'; |
2992 | + } |
|
2865 | 2993 | |
2866 | 2994 | echo ' |
2867 | 2995 | </dt> |
@@ -2876,9 +3004,10 @@ discard block |
||
2876 | 3004 | <select name="cat" id="cat" size="10" onchange="changeSel(\'\');" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');">'; |
2877 | 3005 | |
2878 | 3006 | // This lists all the file categories. |
2879 | - foreach ($context['avatars'] as $avatar) |
|
2880 | - echo ' |
|
3007 | + foreach ($context['avatars'] as $avatar) { |
|
3008 | + echo ' |
|
2881 | 3009 | <option value="', $avatar['filename'] . ($avatar['is_dir'] ? '/' : ''), '"', ($avatar['checked'] ? ' selected' : ''), '>', $avatar['name'], '</option>'; |
3010 | + } |
|
2882 | 3011 | |
2883 | 3012 | echo ' |
2884 | 3013 | </select> |
@@ -2910,20 +3039,22 @@ discard block |
||
2910 | 3039 | } |
2911 | 3040 | |
2912 | 3041 | // If the user can link to an off server avatar, show them a box to input the address. |
2913 | - if (!empty($context['member']['avatar']['allow_external'])) |
|
2914 | - echo ' |
|
3042 | + if (!empty($context['member']['avatar']['allow_external'])) { |
|
3043 | + echo ' |
|
2915 | 3044 | <div id="avatar_external"> |
2916 | 3045 | <div class="smalltext">', $txt['avatar_by_url'], '</div>', !empty($modSettings['avatar_action_too_large']) && $modSettings['avatar_action_too_large'] == 'option_download_and_resize' ? template_max_size('external') : '', ' |
2917 | 3046 | <input type="text" name="userpicpersonal" size="45" value="', ((stristr($context['member']['avatar']['external'], 'http://') || stristr($context['member']['avatar']['external'], 'https://')) ? $context['member']['avatar']['external'] : 'http://'), '" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'external\');" onchange="if (typeof(previewExternalAvatar) != \'undefined\') previewExternalAvatar(this.value);"> |
2918 | 3047 | </div>'; |
3048 | + } |
|
2919 | 3049 | |
2920 | 3050 | // If the user is able to upload avatars to the server show them an upload box. |
2921 | - if (!empty($context['member']['avatar']['allow_upload'])) |
|
2922 | - echo ' |
|
3051 | + if (!empty($context['member']['avatar']['allow_upload'])) { |
|
3052 | + echo ' |
|
2923 | 3053 | <div id="avatar_upload"> |
2924 | 3054 | <input type="file" size="44" name="attachment" id="avatar_upload_box" value="" onchange="readfromUpload(this)" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" accept="image/gif, image/jpeg, image/jpg, image/png">', template_max_size('upload'), ' |
2925 | 3055 | ', (!empty($context['member']['avatar']['id_attach']) ? '<br><img src="' . $context['member']['avatar']['href'] . (strpos($context['member']['avatar']['href'], '?') === false ? '?' : '&') . 'time=' . time() . '" alt="" id="attached_image"><input type="hidden" name="id_attach" value="' . $context['member']['avatar']['id_attach'] . '">' : ''), ' |
2926 | 3056 | </div>'; |
3057 | + } |
|
2927 | 3058 | |
2928 | 3059 | // if the user is able to use Gravatar avatars show then the image preview |
2929 | 3060 | if (!empty($context['member']['avatar']['allow_gravatar'])) |
@@ -2932,16 +3063,17 @@ discard block |
||
2932 | 3063 | <div id="avatar_gravatar"> |
2933 | 3064 | <img src="' . $context['member']['avatar']['href'] . '" alt="">'; |
2934 | 3065 | |
2935 | - if (empty($modSettings['gravatarAllowExtraEmail'])) |
|
2936 | - echo ' |
|
3066 | + if (empty($modSettings['gravatarAllowExtraEmail'])) { |
|
3067 | + echo ' |
|
2937 | 3068 | <div class="smalltext">', $txt['gravatar_noAlternateEmail'], '</div>'; |
2938 | - else |
|
3069 | + } else |
|
2939 | 3070 | { |
2940 | 3071 | // Depending on other stuff, the stored value here might have some odd things in it from other areas. |
2941 | - if ($context['member']['avatar']['external'] == $context['member']['email']) |
|
2942 | - $textbox_value = ''; |
|
2943 | - else |
|
2944 | - $textbox_value = $context['member']['avatar']['external']; |
|
3072 | + if ($context['member']['avatar']['external'] == $context['member']['email']) { |
|
3073 | + $textbox_value = ''; |
|
3074 | + } else { |
|
3075 | + $textbox_value = $context['member']['avatar']['external']; |
|
3076 | + } |
|
2945 | 3077 | |
2946 | 3078 | echo ' |
2947 | 3079 | <div class="smalltext">', $txt['gravatar_alternateEmail'], '</div> |
@@ -3013,8 +3145,9 @@ discard block |
||
3013 | 3145 | $h = !empty($modSettings['avatar_max_height_' . $type]) ? comma_format($modSettings['avatar_max_height_' . $type]) : 0; |
3014 | 3146 | |
3015 | 3147 | $suffix = (!empty($w) ? 'w' : '') . (!empty($h) ? 'h' : ''); |
3016 | - if (empty($suffix)) |
|
3017 | - return; |
|
3148 | + if (empty($suffix)) { |
|
3149 | + return; |
|
3150 | + } |
|
3018 | 3151 | |
3019 | 3152 | echo ' |
3020 | 3153 | <div class="smalltext">', sprintf($txt['avatar_max_size_' . $suffix], $w, $h), '</div>'; |
@@ -3039,9 +3172,10 @@ discard block |
||
3039 | 3172 | <select name="easyformat" id="easyformat" onchange="document.forms.creator.time_format.value = this.options[this.selectedIndex].value;">'; |
3040 | 3173 | |
3041 | 3174 | // Help the user by showing a list of common time formats. |
3042 | - foreach ($context['easy_timeformats'] as $time_format) |
|
3043 | - echo ' |
|
3175 | + foreach ($context['easy_timeformats'] as $time_format) { |
|
3176 | + echo ' |
|
3044 | 3177 | <option value="', $time_format['format'], '"', $time_format['format'] == $context['member']['time_format'] ? ' selected' : '', '>', $time_format['title'], '</option>'; |
3178 | + } |
|
3045 | 3179 | |
3046 | 3180 | echo ' |
3047 | 3181 | </select> |
@@ -3079,9 +3213,10 @@ discard block |
||
3079 | 3213 | <dd> |
3080 | 3214 | <select name="smiley_set" id="smiley_set">'; |
3081 | 3215 | |
3082 | - foreach ($context['smiley_sets'] as $set) |
|
3083 | - echo ' |
|
3216 | + foreach ($context['smiley_sets'] as $set) { |
|
3217 | + echo ' |
|
3084 | 3218 | <option value="', $set['id'], '"', $set['selected'] ? ' selected' : '', '>', $set['name'], '</option>'; |
3219 | + } |
|
3085 | 3220 | |
3086 | 3221 | echo ' |
3087 | 3222 | </select> |
@@ -3103,17 +3238,17 @@ discard block |
||
3103 | 3238 | <div class="roundframe"> |
3104 | 3239 | <div>'; |
3105 | 3240 | |
3106 | - if (!empty($context['tfa_backup'])) |
|
3107 | - echo ' |
|
3241 | + if (!empty($context['tfa_backup'])) { |
|
3242 | + echo ' |
|
3108 | 3243 | <div class="smalltext error"> |
3109 | 3244 | ', $txt['tfa_backup_used_desc'], ' |
3110 | 3245 | </div>'; |
3111 | - |
|
3112 | - elseif ($modSettings['tfa_mode'] == 2) |
|
3113 | - echo ' |
|
3246 | + } elseif ($modSettings['tfa_mode'] == 2) { |
|
3247 | + echo ' |
|
3114 | 3248 | <div class="smalltext"> |
3115 | 3249 | <strong>', $txt['tfa_forced_desc'], '</strong> |
3116 | 3250 | </div>'; |
3251 | + } |
|
3117 | 3252 | |
3118 | 3253 | echo ' |
3119 | 3254 | <div class="smalltext"> |
@@ -3124,11 +3259,12 @@ discard block |
||
3124 | 3259 | <div class="block"> |
3125 | 3260 | <strong>', $txt['tfa_step1'], '</strong><br>'; |
3126 | 3261 | |
3127 | - if (!empty($context['tfa_pass_error'])) |
|
3128 | - echo ' |
|
3262 | + if (!empty($context['tfa_pass_error'])) { |
|
3263 | + echo ' |
|
3129 | 3264 | <div class="error smalltext"> |
3130 | 3265 | ', $txt['tfa_pass_invalid'], ' |
3131 | 3266 | </div>'; |
3267 | + } |
|
3132 | 3268 | |
3133 | 3269 | echo ' |
3134 | 3270 | <input type="password" name="passwd" size="25"', !empty($context['tfa_pass_error']) ? ' class="error"' : '', !empty($context['tfa_pass_value']) ? ' value="' . $context['tfa_pass_value'] . '"' : '', '> |
@@ -3141,11 +3277,12 @@ discard block |
||
3141 | 3277 | <div class="block"> |
3142 | 3278 | <strong>', $txt['tfa_step3'], '</strong><br>'; |
3143 | 3279 | |
3144 | - if (!empty($context['tfa_error'])) |
|
3145 | - echo ' |
|
3280 | + if (!empty($context['tfa_error'])) { |
|
3281 | + echo ' |
|
3146 | 3282 | <div class="error smalltext"> |
3147 | 3283 | ', $txt['tfa_code_invalid'], ' |
3148 | 3284 | </div>'; |
3285 | + } |
|
3149 | 3286 | |
3150 | 3287 | echo ' |
3151 | 3288 | <input type="text" name="tfa_code" size="25"', !empty($context['tfa_error']) ? ' class="error"' : '', !empty($context['tfa_value']) ? ' value="' . $context['tfa_value'] . '"' : '', '> |
@@ -3159,10 +3296,11 @@ discard block |
||
3159 | 3296 | <img src="', $context['tfa_qr_url'], '" alt=""> |
3160 | 3297 | </div>'; |
3161 | 3298 | |
3162 | - if (!empty($context['from_ajax'])) |
|
3163 | - echo ' |
|
3299 | + if (!empty($context['from_ajax'])) { |
|
3300 | + echo ' |
|
3164 | 3301 | <br> |
3165 | 3302 | <a href="javascript:self.close();"></a>'; |
3303 | + } |
|
3166 | 3304 | |
3167 | 3305 | echo ' |
3168 | 3306 | </div> |
@@ -3202,17 +3340,16 @@ discard block |
||
3202 | 3340 | </dt> |
3203 | 3341 | <dd>'; |
3204 | 3342 | |
3205 | - if (!$context['tfa_enabled'] && $context['user']['is_owner']) |
|
3206 | - echo ' |
|
3343 | + if (!$context['tfa_enabled'] && $context['user']['is_owner']) { |
|
3344 | + echo ' |
|
3207 | 3345 | <a href="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=profile;area=tfasetup" id="enable_tfa">', $txt['tfa_profile_enable'], '</a>'; |
3208 | - |
|
3209 | - elseif (!$context['tfa_enabled']) |
|
3210 | - echo ' |
|
3346 | + } elseif (!$context['tfa_enabled']) { |
|
3347 | + echo ' |
|
3211 | 3348 | ', $txt['tfa_profile_disabled']; |
3212 | - |
|
3213 | - else |
|
3214 | - echo ' |
|
3349 | + } else { |
|
3350 | + echo ' |
|
3215 | 3351 | ', sprintf($txt['tfa_profile_enabled'], $scripturl . '?action=profile;u=' . $context['id_member'] . ';area=tfasetup;disable'); |
3352 | + } |
|
3216 | 3353 | |
3217 | 3354 | echo ' |
3218 | 3355 | </dd>'; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | foreach ($board['children'] as $child) |
86 | 86 | { |
87 | 87 | if (!$child['is_redirect']) |
88 | - $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
88 | + $child['link'] = '' . ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
89 | 89 | else |
90 | 90 | $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>'; |
91 | 91 |
@@ -18,11 +18,12 @@ discard block |
||
18 | 18 | global $context, $settings, $options, $scripturl, $modSettings, $txt; |
19 | 19 | |
20 | 20 | // Let them know why their message became unapproved. |
21 | - if ($context['becomesUnapproved']) |
|
22 | - echo ' |
|
21 | + if ($context['becomesUnapproved']) { |
|
22 | + echo ' |
|
23 | 23 | <div class="noticebox"> |
24 | 24 | ', $txt['post_becomesUnapproved'], ' |
25 | 25 | </div>'; |
26 | + } |
|
26 | 27 | |
27 | 28 | if (!empty($context['boards']) && (!empty($options['show_children']) || $context['start'] == 0)) |
28 | 29 | { |
@@ -46,17 +47,19 @@ discard block |
||
46 | 47 | </a>'; |
47 | 48 | |
48 | 49 | // Has it outstanding posts for approval? |
49 | - if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) |
|
50 | - echo ' |
|
50 | + if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) { |
|
51 | + echo ' |
|
51 | 52 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > 0 ? 'topics' : 'posts'), ';brd=', $board['id'], ';', $context['session_var'], '=', $context['session_id'], '" title="', sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>'; |
53 | + } |
|
52 | 54 | |
53 | 55 | echo ' |
54 | 56 | <p class="board_description">', $board['description'], '</p>'; |
55 | 57 | |
56 | 58 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
57 | - if (!empty($board['moderators']) || !empty($board['moderator_groups'])) |
|
58 | - echo ' |
|
59 | + if (!empty($board['moderators']) || !empty($board['moderator_groups'])) { |
|
60 | + echo ' |
|
59 | 61 | <p class="moderators">', count($board['link_moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
62 | + } |
|
60 | 63 | |
61 | 64 | // Show some basic information about the number of posts, etc. |
62 | 65 | echo ' |
@@ -68,9 +71,10 @@ discard block |
||
68 | 71 | </div> |
69 | 72 | <div class="lastpost lpr_border">'; |
70 | 73 | |
71 | - if (!empty($board['last_post']['id'])) |
|
72 | - echo ' |
|
74 | + if (!empty($board['last_post']['id'])) { |
|
75 | + echo ' |
|
73 | 76 | <p>', $board['last_post']['last_post_message'], '</p>'; |
77 | + } |
|
74 | 78 | |
75 | 79 | echo ' |
76 | 80 | </div>'; |
@@ -84,14 +88,16 @@ discard block |
||
84 | 88 | id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */ |
85 | 89 | foreach ($board['children'] as $child) |
86 | 90 | { |
87 | - if (!$child['is_redirect']) |
|
88 | - $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
89 | - else |
|
90 | - $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>'; |
|
91 | + if (!$child['is_redirect']) { |
|
92 | + $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
93 | + } else { |
|
94 | + $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>'; |
|
95 | + } |
|
91 | 96 | |
92 | 97 | // Has it posts awaiting approval? |
93 | - if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics'])) |
|
94 | - $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
98 | + if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics'])) { |
|
99 | + $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
100 | + } |
|
95 | 101 | |
96 | 102 | $children[] = $child['new'] ? '<span class="strong">' . $child['link'] . '</span>' : '<span>' . $child['link'] . '</span>'; |
97 | 103 | } |
@@ -113,11 +119,12 @@ discard block |
||
113 | 119 | if (!$context['no_topic_listing']) |
114 | 120 | { |
115 | 121 | // Mobile action buttons (top) |
116 | - if (!empty($context['normal_buttons'])) |
|
117 | - echo ' |
|
122 | + if (!empty($context['normal_buttons'])) { |
|
123 | + echo ' |
|
118 | 124 | <div class="mobile_buttons floatright"> |
119 | 125 | <a class="button mobile_act">', $txt['mobile_action'], '</a> |
120 | 126 | </div>'; |
127 | + } |
|
121 | 128 | |
122 | 129 | echo ' |
123 | 130 | <div class="pagesection"> |
@@ -136,13 +143,15 @@ discard block |
||
136 | 143 | <h3>', $context['name'], '</h3> |
137 | 144 | <p>'; |
138 | 145 | |
139 | - if ($context['description'] != '') |
|
140 | - echo ' |
|
146 | + if ($context['description'] != '') { |
|
147 | + echo ' |
|
141 | 148 | ', $context['description']; |
149 | + } |
|
142 | 150 | |
143 | - if (!empty($context['moderators'])) |
|
144 | - echo ' |
|
151 | + if (!empty($context['moderators'])) { |
|
152 | + echo ' |
|
145 | 153 | ', count($context['moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $context['link_moderators']), '.'; |
154 | + } |
|
146 | 155 | |
147 | 156 | echo ' |
148 | 157 | </p> |
@@ -150,9 +159,10 @@ discard block |
||
150 | 159 | } |
151 | 160 | |
152 | 161 | // If Quick Moderation is enabled start the form. |
153 | - if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] > 0 && !empty($context['topics'])) |
|
154 | - echo ' |
|
162 | + if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] > 0 && !empty($context['topics'])) { |
|
163 | + echo ' |
|
155 | 164 | <form action="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" class="clear" name="quickModForm" id="quickModForm">'; |
165 | + } |
|
156 | 166 | |
157 | 167 | echo ' |
158 | 168 | <div id="messageindex">'; |
@@ -162,11 +172,11 @@ discard block |
||
162 | 172 | echo ' |
163 | 173 | <div class="information">'; |
164 | 174 | |
165 | - if ($settings['display_who_viewing'] == 1) |
|
166 | - echo count($context['view_members']), ' ', count($context['view_members']) === 1 ? $txt['who_member'] : $txt['members']; |
|
167 | - |
|
168 | - else |
|
169 | - echo empty($context['view_members_list']) ? '0 ' . $txt['members'] : implode(', ', $context['view_members_list']) . (empty($context['view_num_hidden']) || $context['can_moderate_forum'] ? '' : ' (+ ' . $context['view_num_hidden'] . ' ' . $txt['hidden'] . ')'); |
|
175 | + if ($settings['display_who_viewing'] == 1) { |
|
176 | + echo count($context['view_members']), ' ', count($context['view_members']) === 1 ? $txt['who_member'] : $txt['members']; |
|
177 | + } else { |
|
178 | + echo empty($context['view_members_list']) ? '0 ' . $txt['members'] : implode(', ', $context['view_members_list']) . (empty($context['view_num_hidden']) || $context['can_moderate_forum'] ? '' : ' (+ ' . $context['view_num_hidden'] . ' ' . $txt['hidden'] . ')'); |
|
179 | + } |
|
170 | 180 | echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], $txt['who_viewing_board']; |
171 | 181 | |
172 | 182 | echo ' |
@@ -186,32 +196,36 @@ discard block |
||
186 | 196 | <div class="lastpost">', $context['topics_headers']['last_post'], '</div>'; |
187 | 197 | |
188 | 198 | // Show a "select all" box for quick moderation? |
189 | - if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1) |
|
190 | - echo ' |
|
199 | + if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
200 | + echo ' |
|
191 | 201 | <div class="moderation"> |
192 | 202 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');"> |
193 | 203 | </div>'; |
204 | + } |
|
194 | 205 | |
195 | 206 | // If it's on in "image" mode, don't show anything but the column. |
196 | - elseif (!empty($context['can_quick_mod'])) |
|
197 | - echo ' |
|
207 | + elseif (!empty($context['can_quick_mod'])) { |
|
208 | + echo ' |
|
198 | 209 | <div class="moderation"></div>'; |
210 | + } |
|
199 | 211 | } |
200 | 212 | |
201 | 213 | // No topics... just say, "sorry bub". |
202 | - else |
|
203 | - echo ' |
|
214 | + else { |
|
215 | + echo ' |
|
204 | 216 | <h3 class="titlebg">', $txt['topic_alert_none'], '</h3>'; |
217 | + } |
|
205 | 218 | |
206 | 219 | echo ' |
207 | 220 | </div><!-- #topic_header -->'; |
208 | 221 | |
209 | 222 | // If this person can approve items and we have some awaiting approval tell them. |
210 | - if (!empty($context['unapproved_posts_message'])) |
|
211 | - echo ' |
|
223 | + if (!empty($context['unapproved_posts_message'])) { |
|
224 | + echo ' |
|
212 | 225 | <div class="information"> |
213 | 226 | <span class="alert">!</span> ', $context['unapproved_posts_message'], ' |
214 | 227 | </div>'; |
228 | + } |
|
215 | 229 | |
216 | 230 | // Contain the topic list |
217 | 231 | echo ' |
@@ -232,25 +246,30 @@ discard block |
||
232 | 246 | echo ' |
233 | 247 | <div class="icons floatright">'; |
234 | 248 | |
235 | - if ($topic['is_watched']) |
|
236 | - echo ' |
|
249 | + if ($topic['is_watched']) { |
|
250 | + echo ' |
|
237 | 251 | <span class="generic_icons watch" title="', $txt['watching_this_topic'], '"></span>'; |
252 | + } |
|
238 | 253 | |
239 | - if ($topic['is_locked']) |
|
240 | - echo ' |
|
254 | + if ($topic['is_locked']) { |
|
255 | + echo ' |
|
241 | 256 | <span class="generic_icons lock"></span>'; |
257 | + } |
|
242 | 258 | |
243 | - if ($topic['is_sticky']) |
|
244 | - echo ' |
|
259 | + if ($topic['is_sticky']) { |
|
260 | + echo ' |
|
245 | 261 | <span class="generic_icons sticky"></span>'; |
262 | + } |
|
246 | 263 | |
247 | - if ($topic['is_redirect']) |
|
248 | - echo ' |
|
264 | + if ($topic['is_redirect']) { |
|
265 | + echo ' |
|
249 | 266 | <span class="generic_icons move"></span>'; |
267 | + } |
|
250 | 268 | |
251 | - if ($topic['is_poll']) |
|
252 | - echo ' |
|
269 | + if ($topic['is_poll']) { |
|
270 | + echo ' |
|
253 | 271 | <span class="generic_icons poll"></span>'; |
272 | + } |
|
254 | 273 | |
255 | 274 | echo ' |
256 | 275 | </div>'; |
@@ -282,26 +301,31 @@ discard block |
||
282 | 301 | echo ' |
283 | 302 | <div class="moderation">'; |
284 | 303 | |
285 | - if ($options['display_quick_mod'] == 1) |
|
286 | - echo ' |
|
304 | + if ($options['display_quick_mod'] == 1) { |
|
305 | + echo ' |
|
287 | 306 | <input type="checkbox" name="topics[]" value="', $topic['id'], '">'; |
288 | - else |
|
307 | + } else |
|
289 | 308 | { |
290 | 309 | // Check permissions on each and show only the ones they are allowed to use. |
291 | - if ($topic['quick_mod']['remove']) |
|
292 | - echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=remove;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons delete" title="', $txt['remove_topic'], '"></span></a>'; |
|
310 | + if ($topic['quick_mod']['remove']) { |
|
311 | + echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=remove;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons delete" title="', $txt['remove_topic'], '"></span></a>'; |
|
312 | + } |
|
293 | 313 | |
294 | - if ($topic['quick_mod']['lock']) |
|
295 | - echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=lock;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons lock" title="', $topic['is_locked'] ? $txt['set_unlock'] : $txt['set_lock'], '"></span></a>'; |
|
314 | + if ($topic['quick_mod']['lock']) { |
|
315 | + echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=lock;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons lock" title="', $topic['is_locked'] ? $txt['set_unlock'] : $txt['set_lock'], '"></span></a>'; |
|
316 | + } |
|
296 | 317 | |
297 | - if ($topic['quick_mod']['lock'] || $topic['quick_mod']['remove']) |
|
298 | - echo '<br>'; |
|
318 | + if ($topic['quick_mod']['lock'] || $topic['quick_mod']['remove']) { |
|
319 | + echo '<br>'; |
|
320 | + } |
|
299 | 321 | |
300 | - if ($topic['quick_mod']['sticky']) |
|
301 | - echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=sticky;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons sticky" title="', $topic['is_sticky'] ? $txt['set_nonsticky'] : $txt['set_sticky'], '"></span></a>'; |
|
322 | + if ($topic['quick_mod']['sticky']) { |
|
323 | + echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions%5B', $topic['id'], '%5D=sticky;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons sticky" title="', $topic['is_sticky'] ? $txt['set_nonsticky'] : $txt['set_sticky'], '"></span></a>'; |
|
324 | + } |
|
302 | 325 | |
303 | - if ($topic['quick_mod']['move']) |
|
304 | - echo '<a href="', $scripturl, '?action=movetopic;current_board=', $context['current_board'], ';board=', $context['current_board'], '.', $context['start'], ';topic=', $topic['id'], '.0"><span class="generic_icons move" title="', $txt['move_topic'], '"></span></a>'; |
|
326 | + if ($topic['quick_mod']['move']) { |
|
327 | + echo '<a href="', $scripturl, '?action=movetopic;current_board=', $context['current_board'], ';board=', $context['current_board'], '.', $context['start'], ';topic=', $topic['id'], '.0"><span class="generic_icons move" title="', $txt['move_topic'], '"></span></a>'; |
|
328 | + } |
|
305 | 329 | } |
306 | 330 | echo ' |
307 | 331 | </div><!-- .moderation -->'; |
@@ -319,18 +343,20 @@ discard block |
||
319 | 343 | <select class="qaction" name="qaction"', $context['can_move'] ? ' onchange="this.form.move_to.disabled = (this.options[this.selectedIndex].value != \'move\');"' : '', '> |
320 | 344 | <option value="">--------</option>'; |
321 | 345 | |
322 | - foreach ($context['qmod_actions'] as $qmod_action) |
|
323 | - if ($context['can_' . $qmod_action]) |
|
346 | + foreach ($context['qmod_actions'] as $qmod_action) { |
|
347 | + if ($context['can_' . $qmod_action]) |
|
324 | 348 | echo ' |
325 | 349 | <option value="' . $qmod_action . '">' . $txt['quick_mod_' . $qmod_action] . '</option>'; |
350 | + } |
|
326 | 351 | |
327 | 352 | echo ' |
328 | 353 | </select>'; |
329 | 354 | |
330 | 355 | // Show a list of boards they can move the topic to. |
331 | - if ($context['can_move']) |
|
332 | - echo ' |
|
356 | + if ($context['can_move']) { |
|
357 | + echo ' |
|
333 | 358 | <span id="quick_mod_jump_to"></span>'; |
359 | + } |
|
334 | 360 | |
335 | 361 | echo ' |
336 | 362 | <input type="submit" value="', $txt['quick_mod_go'], '" onclick="return document.forms.quickModForm.qaction.value != \'\' && confirm(\'', $txt['quickmod_confirm'], '\');" class="button qaction"> |
@@ -341,17 +367,19 @@ discard block |
||
341 | 367 | </div><!-- #messageindex -->'; |
342 | 368 | |
343 | 369 | // Finish off the form - again. |
344 | - if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] > 0 && !empty($context['topics'])) |
|
345 | - echo ' |
|
370 | + if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] > 0 && !empty($context['topics'])) { |
|
371 | + echo ' |
|
346 | 372 | <input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '"> |
347 | 373 | </form>'; |
374 | + } |
|
348 | 375 | |
349 | 376 | // Mobile action buttons (bottom) |
350 | - if (!empty($context['normal_buttons'])) |
|
351 | - echo ' |
|
377 | + if (!empty($context['normal_buttons'])) { |
|
378 | + echo ' |
|
352 | 379 | <div class="mobile_buttons floatright"> |
353 | 380 | <a class="button mobile_act">', $txt['mobile_action'], '</a> |
354 | 381 | </div>'; |
382 | + } |
|
355 | 383 | |
356 | 384 | echo ' |
357 | 385 | <div class="pagesection"> |
@@ -367,8 +395,8 @@ discard block |
||
367 | 395 | // Show breadcrumbs at the bottom too. |
368 | 396 | theme_linktree(); |
369 | 397 | |
370 | - if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']) && $context['can_move']) |
|
371 | - echo ' |
|
398 | + if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']) && $context['can_move']) { |
|
399 | + echo ' |
|
372 | 400 | <script> |
373 | 401 | if (typeof(window.XMLHttpRequest) != "undefined") |
374 | 402 | aJumpTo[aJumpTo.length] = new JumpTo({ |
@@ -387,6 +415,7 @@ discard block |
||
387 | 415 | sCustomName: "move_to" |
388 | 416 | }); |
389 | 417 | </script>'; |
418 | + } |
|
390 | 419 | |
391 | 420 | // Javascript for inline editing. |
392 | 421 | echo ' |
@@ -423,8 +452,8 @@ discard block |
||
423 | 452 | <div class="information"> |
424 | 453 | <p class="floatright" id="message_index_jump_to"></p>'; |
425 | 454 | |
426 | - if (empty($context['no_topic_listing'])) |
|
427 | - echo ' |
|
455 | + if (empty($context['no_topic_listing'])) { |
|
456 | + echo ' |
|
428 | 457 | <p class="floatleft">', !empty($modSettings['enableParticipation']) && $context['user']['is_logged'] ? ' |
429 | 458 | <img src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="" class="centericon"> ' . $txt['participation_caption'] . '<br>' : '', ' |
430 | 459 | '. ($modSettings['pollMode'] == '1' ? '<span class="generic_icons poll centericon"></span> ' . $txt['poll'] : '') . '<br> |
@@ -434,9 +463,10 @@ discard block |
||
434 | 463 | <span class="generic_icons lock centericon"></span> ' . $txt['locked_topic'] . '<br> |
435 | 464 | <span class="generic_icons sticky centericon"></span> ' . $txt['sticky_topic'] . '<br> |
436 | 465 | </p>'; |
466 | + } |
|
437 | 467 | |
438 | - if (!empty($context['jump_to'])) |
|
439 | - echo ' |
|
468 | + if (!empty($context['jump_to'])) { |
|
469 | + echo ' |
|
440 | 470 | <script> |
441 | 471 | if (typeof(window.XMLHttpRequest) != "undefined") |
442 | 472 | aJumpTo[aJumpTo.length] = new JumpTo({ |
@@ -452,6 +482,7 @@ discard block |
||
452 | 482 | sGoButtonLabel: "', $txt['quick_mod_go'], '" |
453 | 483 | }); |
454 | 484 | </script>'; |
485 | + } |
|
455 | 486 | |
456 | 487 | echo ' |
457 | 488 | <br class="clear"> |
@@ -44,10 +44,11 @@ discard block |
||
44 | 44 | <dt>', $txt['users_online_today'], ':</dt> |
45 | 45 | <dd>', $context['online_today'], '</dd>'; |
46 | 46 | |
47 | - if (!empty($modSettings['hitStats'])) |
|
48 | - echo ' |
|
47 | + if (!empty($modSettings['hitStats'])) { |
|
48 | + echo ' |
|
49 | 49 | <dt>', $txt['num_hits'], ':</dt> |
50 | 50 | <dd>', $context['num_hits'], '</dd>'; |
51 | + } |
|
51 | 52 | |
52 | 53 | echo ' |
53 | 54 | </dl> |
@@ -71,17 +72,19 @@ discard block |
||
71 | 72 | <dt>', $txt['gender_stats'], ':</dt> |
72 | 73 | <dd>'; |
73 | 74 | |
74 | - foreach ($context['gender'] as $g => $n) |
|
75 | - echo $g, ': ', $n, '<br>'; |
|
75 | + foreach ($context['gender'] as $g => $n) { |
|
76 | + echo $g, ': ', $n, '<br>'; |
|
77 | + } |
|
76 | 78 | |
77 | 79 | echo ' |
78 | 80 | </dd>'; |
79 | 81 | } |
80 | 82 | |
81 | - if (!empty($modSettings['hitStats'])) |
|
82 | - echo ' |
|
83 | + if (!empty($modSettings['hitStats'])) { |
|
84 | + echo ' |
|
83 | 85 | <dt>', $txt['average_hits'], ':</dt> |
84 | 86 | <dd>', $context['average_hits'], '</dd>'; |
87 | + } |
|
85 | 88 | |
86 | 89 | echo ' |
87 | 90 | </dl>'; |
@@ -105,12 +108,13 @@ discard block |
||
105 | 108 | </dt> |
106 | 109 | <dd class="statsbar generic_bar righttext">'; |
107 | 110 | |
108 | - if (!empty($item['percent'])) |
|
109 | - echo ' |
|
111 | + if (!empty($item['percent'])) { |
|
112 | + echo ' |
|
110 | 113 | <div class="bar" style="width: ', $item['percent'], '%;"></div>'; |
111 | - else |
|
112 | - echo ' |
|
113 | - <div class="bar empty"></div>'; |
|
114 | + } else { |
|
115 | + echo ' |
|
116 | + <div class="bar empty"></div>'; |
|
117 | + } |
|
114 | 118 | |
115 | 119 | echo ' |
116 | 120 | <span>', $item['num'], '</span> |
@@ -143,9 +147,10 @@ discard block |
||
143 | 147 | <th>', $txt['stats_new_members'], '</th> |
144 | 148 | <th>', $txt['most_online'], '</th>'; |
145 | 149 | |
146 | - if (!empty($modSettings['hitStats'])) |
|
147 | - echo ' |
|
150 | + if (!empty($modSettings['hitStats'])) { |
|
151 | + echo ' |
|
148 | 152 | <th>', $txt['page_views'], '</th>'; |
153 | + } |
|
149 | 154 | |
150 | 155 | echo ' |
151 | 156 | </tr> |
@@ -164,9 +169,10 @@ discard block |
||
164 | 169 | <th>', $year['new_members'], '</th> |
165 | 170 | <th>', $year['most_members_online'], '</th>'; |
166 | 171 | |
167 | - if (!empty($modSettings['hitStats'])) |
|
168 | - echo ' |
|
172 | + if (!empty($modSettings['hitStats'])) { |
|
173 | + echo ' |
|
169 | 174 | <th>', $year['hits'], '</th>'; |
175 | + } |
|
170 | 176 | |
171 | 177 | echo ' |
172 | 178 | </tr>'; |
@@ -183,9 +189,10 @@ discard block |
||
183 | 189 | <th>', $month['new_members'], '</th> |
184 | 190 | <th>', $month['most_members_online'], '</th>'; |
185 | 191 | |
186 | - if (!empty($modSettings['hitStats'])) |
|
187 | - echo ' |
|
192 | + if (!empty($modSettings['hitStats'])) { |
|
193 | + echo ' |
|
188 | 194 | <th>', $month['hits'], '</th>'; |
195 | + } |
|
189 | 196 | |
190 | 197 | echo ' |
191 | 198 | </tr>'; |
@@ -202,9 +209,10 @@ discard block |
||
202 | 209 | <td>', $day['new_members'], '</td> |
203 | 210 | <td>', $day['most_members_online'], '</td>'; |
204 | 211 | |
205 | - if (!empty($modSettings['hitStats'])) |
|
206 | - echo ' |
|
212 | + if (!empty($modSettings['hitStats'])) { |
|
213 | + echo ' |
|
207 | 214 | <td>', $day['hits'], '</td>'; |
215 | + } |
|
208 | 216 | |
209 | 217 | echo ' |
210 | 218 | </tr>'; |