@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | <input type="text" name="email" value="', $context['ban_suggestions']['email'], '" size="44" onfocus="document.getElementById(\'email_check\').checked = true;" class="input_text"> |
135 | 135 | </dd> |
136 | 136 | <dt> |
137 | - <input type="checkbox" name="ban_suggestions[]" id="user_check" value="user" class="input_check"', !empty($context['ban_suggestions']['user']) || isset($context['ban']['from_user']) ? ' checked' : '', '> |
|
137 | + <input type="checkbox" name="ban_suggestions[]" id="user_check" value="user" class="input_check"', !empty($context['ban_suggestions']['user']) || isset($context['ban']['from_user']) ? ' checked' : '', '> |
|
138 | 138 | <label for="user_check">', $txt['ban_on_username'], '</label>: |
139 | 139 | </dt> |
140 | 140 | <dd> |
@@ -156,10 +156,10 @@ discard block |
||
156 | 156 | foreach ($ban_ips as $ip) |
157 | 157 | echo ' |
158 | 158 | <dt> |
159 | - <input type="checkbox" id="suggestions_', $key ,'_', $count, '" name="ban_suggestions[', $key ,'][]"', !empty($context['ban_suggestions']['saved_triggers'][$key]) && in_array($ip, $context['ban_suggestions']['saved_triggers'][$key]) ? ' checked' : '', ' value="', $ip, '" class="input_check"> |
|
159 | + <input type="checkbox" id="suggestions_', $key, '_', $count, '" name="ban_suggestions[', $key, '][]"', !empty($context['ban_suggestions']['saved_triggers'][$key]) && in_array($ip, $context['ban_suggestions']['saved_triggers'][$key]) ? ' checked' : '', ' value="', $ip, '" class="input_check"> |
|
160 | 160 | </dt> |
161 | 161 | <dd> |
162 | - <label for="suggestions_', $key ,'_', $count++, '">', $ip, '</label> |
|
162 | + <label for="suggestions_', $key, '_', $count++, '">', $ip, '</label> |
|
163 | 163 | </dd>'; |
164 | 164 | |
165 | 165 | echo ' |
@@ -26,9 +26,10 @@ discard block |
||
26 | 26 | </h3> |
27 | 27 | </div>'; |
28 | 28 | |
29 | - if ($context['ban']['is_new']) |
|
30 | - echo ' |
|
29 | + if ($context['ban']['is_new']) { |
|
30 | + echo ' |
|
31 | 31 | <div class="information noup">', $txt['ban_add_notes'], '</div>'; |
32 | + } |
|
32 | 33 | |
33 | 34 | // If there were errors creating the ban, show them. |
34 | 35 | if (!empty($context['error_messages'])) |
@@ -38,9 +39,10 @@ discard block |
||
38 | 39 | <strong>', $txt['ban_errors_detected'], '</strong> |
39 | 40 | <ul>'; |
40 | 41 | |
41 | - foreach ($context['error_messages'] as $error) |
|
42 | - echo ' |
|
42 | + foreach ($context['error_messages'] as $error) { |
|
43 | + echo ' |
|
43 | 44 | <li class="error">', $error, '</li>'; |
45 | + } |
|
44 | 46 | |
45 | 47 | echo ' |
46 | 48 | </ul> |
@@ -57,8 +59,8 @@ discard block |
||
57 | 59 | <input type="text" id="ban_name" name="ban_name" value="', $context['ban']['name'], '" size="45" maxlength="60" class="input_text"> |
58 | 60 | </dd>'; |
59 | 61 | |
60 | - if (isset($context['ban']['reason'])) |
|
61 | - echo ' |
|
62 | + if (isset($context['ban']['reason'])) { |
|
63 | + echo ' |
|
62 | 64 | <dt> |
63 | 65 | <strong><label for="reason">', $txt['ban_reason'], ':</label></strong><br> |
64 | 66 | <span class="smalltext">', $txt['ban_reason_desc'], '</span> |
@@ -66,9 +68,10 @@ discard block |
||
66 | 68 | <dd> |
67 | 69 | <textarea name="reason" id="reason" cols="40" rows="3" style="min-height: 64px; max-height: 64px; min-width: 50%; max-width: 99%;">', $context['ban']['reason'], '</textarea> |
68 | 70 | </dd>'; |
71 | + } |
|
69 | 72 | |
70 | - if (isset($context['ban']['notes'])) |
|
71 | - echo ' |
|
73 | + if (isset($context['ban']['notes'])) { |
|
74 | + echo ' |
|
72 | 75 | <dt> |
73 | 76 | <strong><label for="ban_notes">', $txt['ban_notes'], ':</label></strong><br> |
74 | 77 | <span class="smalltext">', $txt['ban_notes_desc'], '</span> |
@@ -76,6 +79,7 @@ discard block |
||
76 | 79 | <dd> |
77 | 80 | <textarea name="notes" id="ban_notes" cols="40" rows="3" style="min-height: 64px; max-height: 64px; min-width: 50%; max-width: 99%;">', $context['ban']['notes'], '</textarea> |
78 | 81 | </dd>'; |
82 | + } |
|
79 | 83 | |
80 | 84 | echo ' |
81 | 85 | </dl> |
@@ -115,8 +119,8 @@ discard block |
||
115 | 119 | <input type="text" name="main_ip" value="', $context['ban_suggestions']['main_ip'], '" size="44" onfocus="document.getElementById(\'main_ip_check\').checked = true;" class="input_text"> |
116 | 120 | </dd>'; |
117 | 121 | |
118 | - if (empty($modSettings['disableHostnameLookup'])) |
|
119 | - echo ' |
|
122 | + if (empty($modSettings['disableHostnameLookup'])) { |
|
123 | + echo ' |
|
120 | 124 | <dt> |
121 | 125 | <input type="checkbox" name="ban_suggestions[]" id="hostname_check" value="hostname" class="input_check"', !empty($context['ban_suggestions']['hostname']) ? ' checked' : '', '> |
122 | 126 | <label for="hostname_check">', $txt['ban_on_hostname'], '</label> |
@@ -124,6 +128,7 @@ discard block |
||
124 | 128 | <dd> |
125 | 129 | <input type="text" name="hostname" value="', $context['ban_suggestions']['hostname'], '" size="44" onfocus="document.getElementById(\'hostname_check\').checked = true;" class="input_text"> |
126 | 130 | </dd>'; |
131 | + } |
|
127 | 132 | |
128 | 133 | echo ' |
129 | 134 | <dt> |
@@ -153,14 +158,15 @@ discard block |
||
153 | 158 | <dl class="settings">'; |
154 | 159 | |
155 | 160 | $count = 0; |
156 | - foreach ($ban_ips as $ip) |
|
157 | - echo ' |
|
161 | + foreach ($ban_ips as $ip) { |
|
162 | + echo ' |
|
158 | 163 | <dt> |
159 | 164 | <input type="checkbox" id="suggestions_', $key ,'_', $count, '" name="ban_suggestions[', $key ,'][]"', !empty($context['ban_suggestions']['saved_triggers'][$key]) && in_array($ip, $context['ban_suggestions']['saved_triggers'][$key]) ? ' checked' : '', ' value="', $ip, '" class="input_check"> |
160 | 165 | </dt> |
161 | 166 | <dd> |
162 | 167 | <label for="suggestions_', $key ,'_', $count++, '">', $ip, '</label> |
163 | 168 | </dd>'; |
169 | + } |
|
164 | 170 | |
165 | 171 | echo ' |
166 | 172 | </dl>'; |
@@ -202,8 +208,8 @@ discard block |
||
202 | 208 | addLoadEvent(fUpdateStatus);'; |
203 | 209 | |
204 | 210 | // Auto suggest only needed for adding new bans, not editing |
205 | - if ($context['ban']['is_new'] && empty($_REQUEST['u'])) |
|
206 | - echo ' |
|
211 | + if ($context['ban']['is_new'] && empty($_REQUEST['u'])) { |
|
212 | + echo ' |
|
207 | 213 | var oAddMemberSuggest = new smc_AutoSuggest({ |
208 | 214 | sSelf: \'oAddMemberSuggest\', |
209 | 215 | sSessionId: smf_session_id, |
@@ -221,6 +227,7 @@ discard block |
||
221 | 227 | return true; |
222 | 228 | } |
223 | 229 | oAddMemberSuggest.registerCallback(\'onBeforeUpdate\', \'onUpdateName\');'; |
230 | + } |
|
224 | 231 | |
225 | 232 | echo ' |
226 | 233 | function confirmBan(aForm) |
@@ -268,8 +275,8 @@ discard block |
||
268 | 275 | <input type="text" name="main_ip" value="', $context['ban_trigger']['ip']['value'], '" size="44" onfocus="document.getElementById(\'main_ip_check\').checked = true;" class="input_text"> |
269 | 276 | </dd>'; |
270 | 277 | |
271 | - if (empty($modSettings['disableHostnameLookup'])) |
|
272 | - echo ' |
|
278 | + if (empty($modSettings['disableHostnameLookup'])) { |
|
279 | + echo ' |
|
273 | 280 | <dt> |
274 | 281 | <input type="checkbox" name="ban_suggestions[]" id="hostname_check" value="hostname" class="input_check"', $context['ban_trigger']['hostname']['selected'] ? ' checked' : '', '> |
275 | 282 | <label for="hostname_check">', $txt['ban_on_hostname'], '</label> |
@@ -277,6 +284,7 @@ discard block |
||
277 | 284 | <dd> |
278 | 285 | <input type="text" name="hostname" value="', $context['ban_trigger']['hostname']['value'], '" size="44" onfocus="document.getElementById(\'hostname_check\').checked = true;" class="input_text"> |
279 | 286 | </dd>'; |
287 | + } |
|
280 | 288 | |
281 | 289 | echo ' |
282 | 290 | <dt> |
@@ -24,11 +24,12 @@ discard block |
||
24 | 24 | <h3 class="catbg">', $txt['paid_' . $context['action_type'] . '_subscription'], '</h3> |
25 | 25 | </div>'; |
26 | 26 | |
27 | - if (!empty($context['disable_groups'])) |
|
28 | - echo ' |
|
27 | + if (!empty($context['disable_groups'])) { |
|
28 | + echo ' |
|
29 | 29 | <div class="information"> |
30 | 30 | <span class="alert">', $txt['paid_mod_edit_note'], '</span> |
31 | 31 | </div>'; |
32 | + } |
|
32 | 33 | |
33 | 34 | echo ' |
34 | 35 | <div class="windowbg2"> |
@@ -68,9 +69,10 @@ discard block |
||
68 | 69 | <option value="0"', $context['sub']['prim_group'] == 0 ? ' selected' : '', '>', $txt['paid_mod_no_group'], '</option>'; |
69 | 70 | |
70 | 71 | // Put each group into the box. |
71 | - foreach ($context['groups'] as $id => $name) |
|
72 | - echo ' |
|
72 | + foreach ($context['groups'] as $id => $name) { |
|
73 | + echo ' |
|
73 | 74 | <option value="', $id, '"', $context['sub']['prim_group'] == $id ? ' selected' : '', '>', $name, '</option>'; |
75 | + } |
|
74 | 76 | |
75 | 77 | echo ' |
76 | 78 | </select> |
@@ -81,9 +83,10 @@ discard block |
||
81 | 83 | <dd>'; |
82 | 84 | |
83 | 85 | // Put a checkbox in for each group |
84 | - foreach ($context['groups'] as $id => $name) |
|
85 | - echo ' |
|
86 | + foreach ($context['groups'] as $id => $name) { |
|
87 | + echo ' |
|
86 | 88 | <label for="addgroup_', $id, '"><input type="checkbox" id="addgroup_', $id, '" name="addgroup[', $id, ']"', in_array($id, $context['sub']['add_groups']) ? ' checked' : '', !empty($context['disable_groups']) ? ' disabled' : '', ' class="input_check"> <span class="smalltext">', $name, '</span></label><br>'; |
89 | + } |
|
87 | 90 | |
88 | 91 | echo ' |
89 | 92 | </dd> |
@@ -135,8 +138,8 @@ discard block |
||
135 | 138 | <fieldset>'; |
136 | 139 | |
137 | 140 | //!! Removed until implemented |
138 | - if (!empty($sdflsdhglsdjgs)) |
|
139 | - echo ' |
|
141 | + if (!empty($sdflsdhglsdjgs)) { |
|
142 | + echo ' |
|
140 | 143 | <dl class="settings"> |
141 | 144 | <dt> |
142 | 145 | <label for="allow_partial_check">', $txt['paid_mod_allow_partial'], '</label>:<br><span class="smalltext">', $txt['paid_mod_allow_partial_desc'], '</span> |
@@ -145,6 +148,7 @@ discard block |
||
145 | 148 | <input type="checkbox" name="allow_partial" id="allow_partial_check"', empty($context['sub']['allow_partial']) ? '' : ' checked', ' class="input_check"> |
146 | 149 | </dd> |
147 | 150 | </dl>'; |
151 | + } |
|
148 | 152 | |
149 | 153 | echo ' |
150 | 154 | <div class="information"> |
@@ -245,8 +249,8 @@ discard block |
||
245 | 249 | <dl class="settings">'; |
246 | 250 | |
247 | 251 | // Do we need a username? |
248 | - if ($context['action_type'] == 'add') |
|
249 | - echo ' |
|
252 | + if ($context['action_type'] == 'add') { |
|
253 | + echo ' |
|
250 | 254 | |
251 | 255 | <dt> |
252 | 256 | <strong>', $txt['paid_username'], ':</strong><br> |
@@ -255,6 +259,7 @@ discard block |
||
255 | 259 | <dd> |
256 | 260 | <input type="text" name="name" id="name_control" value="', $context['sub']['username'], '" size="30" class="input_text"> |
257 | 261 | </dd>'; |
262 | + } |
|
258 | 263 | |
259 | 264 | echo ' |
260 | 265 | <dt> |
@@ -272,9 +277,10 @@ discard block |
||
272 | 277 | <select name="year" id="year" onchange="generateDays();">'; |
273 | 278 | |
274 | 279 | // Show a list of all the years we allow... |
275 | - for ($year = 2005; $year <= 2030; $year++) |
|
276 | - echo ' |
|
280 | + for ($year = 2005; $year <= 2030; $year++) { |
|
281 | + echo ' |
|
277 | 282 | <option value="', $year, '"', $year == $context['sub']['start']['year'] ? ' selected' : '', '>', $year, '</option>'; |
283 | + } |
|
278 | 284 | |
279 | 285 | echo ' |
280 | 286 | </select> |
@@ -282,9 +288,10 @@ discard block |
||
282 | 288 | <select name="month" id="month" onchange="generateDays();">'; |
283 | 289 | |
284 | 290 | // There are 12 months per year - ensure that they all get listed. |
285 | - for ($month = 1; $month <= 12; $month++) |
|
286 | - echo ' |
|
291 | + for ($month = 1; $month <= 12; $month++) { |
|
292 | + echo ' |
|
287 | 293 | <option value="', $month, '"', $month == $context['sub']['start']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; |
294 | + } |
|
288 | 295 | |
289 | 296 | echo ' |
290 | 297 | </select> |
@@ -292,9 +299,10 @@ discard block |
||
292 | 299 | <select name="day" id="day">'; |
293 | 300 | |
294 | 301 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
295 | - for ($day = 1; $day <= $context['sub']['start']['last_day']; $day++) |
|
296 | - echo ' |
|
302 | + for ($day = 1; $day <= $context['sub']['start']['last_day']; $day++) { |
|
303 | + echo ' |
|
297 | 304 | <option value="', $day, '"', $day == $context['sub']['start']['day'] ? ' selected' : '', '>', $day, '</option>'; |
305 | + } |
|
298 | 306 | |
299 | 307 | echo ' |
300 | 308 | </select> |
@@ -306,9 +314,10 @@ discard block |
||
306 | 314 | <select name="yearend" id="yearend" onchange="generateDays(\'end\');">'; |
307 | 315 | |
308 | 316 | // Show a list of all the years we allow... |
309 | - for ($year = 2005; $year <= 2030; $year++) |
|
310 | - echo ' |
|
317 | + for ($year = 2005; $year <= 2030; $year++) { |
|
318 | + echo ' |
|
311 | 319 | <option value="', $year, '"', $year == $context['sub']['end']['year'] ? ' selected' : '', '>', $year, '</option>'; |
320 | + } |
|
312 | 321 | |
313 | 322 | echo ' |
314 | 323 | </select> |
@@ -316,9 +325,10 @@ discard block |
||
316 | 325 | <select name="monthend" id="monthend" onchange="generateDays(\'end\');">'; |
317 | 326 | |
318 | 327 | // There are 12 months per year - ensure that they all get listed. |
319 | - for ($month = 1; $month <= 12; $month++) |
|
320 | - echo ' |
|
328 | + for ($month = 1; $month <= 12; $month++) { |
|
329 | + echo ' |
|
321 | 330 | <option value="', $month, '"', $month == $context['sub']['end']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; |
331 | + } |
|
322 | 332 | |
323 | 333 | echo ' |
324 | 334 | </select> |
@@ -326,9 +336,10 @@ discard block |
||
326 | 336 | <select name="dayend" id="dayend">'; |
327 | 337 | |
328 | 338 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
329 | - for ($day = 1; $day <= $context['sub']['end']['last_day']; $day++) |
|
330 | - echo ' |
|
339 | + for ($day = 1; $day <= $context['sub']['end']['last_day']; $day++) { |
|
340 | + echo ' |
|
331 | 341 | <option value="', $day, '"', $day == $context['sub']['end']['day'] ? ' selected' : '', '>', $day, '</option>'; |
342 | + } |
|
332 | 343 | |
333 | 344 | echo ' |
334 | 345 | </select> |
@@ -410,8 +421,7 @@ discard block |
||
410 | 421 | <div class="information"> |
411 | 422 | ', $txt['paid_subs_none'], ' |
412 | 423 | </div>'; |
413 | - } |
|
414 | - else |
|
424 | + } else |
|
415 | 425 | { |
416 | 426 | echo ' |
417 | 427 | <div class="information"> |
@@ -423,8 +433,9 @@ discard block |
||
423 | 433 | { |
424 | 434 | |
425 | 435 | // Ignore the inactive ones... |
426 | - if (empty($subscription['active'])) |
|
427 | - continue; |
|
436 | + if (empty($subscription['active'])) { |
|
437 | + continue; |
|
438 | + } |
|
428 | 439 | |
429 | 440 | echo ' |
430 | 441 | <div class="cat_bar"> |
@@ -434,9 +445,10 @@ discard block |
||
434 | 445 | <p><strong>', $subscription['name'], '</strong></p> |
435 | 446 | <p class="smalltext">', $subscription['desc'], '</p>'; |
436 | 447 | |
437 | - if (!$subscription['flexible']) |
|
438 | - echo ' |
|
448 | + if (!$subscription['flexible']) { |
|
449 | + echo ' |
|
439 | 450 | <div><strong>', $txt['paid_duration'], ':</strong> ', $subscription['length'], '</div>'; |
451 | + } |
|
440 | 452 | |
441 | 453 | if ($context['user']['is_owner']) |
442 | 454 | { |
@@ -449,24 +461,25 @@ discard block |
||
449 | 461 | <select name="cur[', $subscription['id'], ']">'; |
450 | 462 | |
451 | 463 | // Print out the costs for this one. |
452 | - foreach ($subscription['costs'] as $duration => $value) |
|
453 | - echo ' |
|
464 | + foreach ($subscription['costs'] as $duration => $value) { |
|
465 | + echo ' |
|
454 | 466 | <option value="', $duration, '">', sprintf($modSettings['paid_currency_symbol'], $value), '/', $txt[$duration], '</option>'; |
467 | + } |
|
455 | 468 | |
456 | 469 | echo ' |
457 | 470 | </select>'; |
458 | - } |
|
459 | - else |
|
460 | - echo ' |
|
471 | + } else { |
|
472 | + echo ' |
|
461 | 473 | ', sprintf($modSettings['paid_currency_symbol'], $subscription['costs']['fixed']); |
474 | + } |
|
462 | 475 | |
463 | 476 | echo ' |
464 | 477 | <hr> |
465 | 478 | <input type="submit" name="sub_id[', $subscription['id'], ']" value="', $txt['paid_order'], '" class="button_submit">'; |
466 | - } |
|
467 | - else |
|
468 | - echo ' |
|
479 | + } else { |
|
480 | + echo ' |
|
469 | 481 | <a href="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;sid=', $subscription['id'], ';uid=', $context['member']['id'], (empty($context['current'][$subscription['id']]) ? '' : ';lid=' . $context['current'][$subscription['id']]['id']), '">', empty($context['current'][$subscription['id']]) ? $txt['paid_admin_add'] : $txt['paid_edit_subscription'], '</a>'; |
482 | + } |
|
470 | 483 | |
471 | 484 | echo ' |
472 | 485 | </div>'; |
@@ -493,19 +506,20 @@ discard block |
||
493 | 506 | </thead> |
494 | 507 | <tbody>'; |
495 | 508 | |
496 | - if (empty($context['current'])) |
|
497 | - echo ' |
|
509 | + if (empty($context['current'])) { |
|
510 | + echo ' |
|
498 | 511 | <tr class="windowbg"> |
499 | 512 | <td colspan="4"> |
500 | 513 | ', $txt['paid_none_yet'], ' |
501 | 514 | </td> |
502 | 515 | </tr>'; |
516 | + } |
|
503 | 517 | |
504 | 518 | foreach ($context['current'] as $sub) |
505 | 519 | { |
506 | 520 | |
507 | - if (!$sub['hide']) |
|
508 | - echo ' |
|
521 | + if (!$sub['hide']) { |
|
522 | + echo ' |
|
509 | 523 | <tr class="windowbg"> |
510 | 524 | <td> |
511 | 525 | ', (allowedTo('admin_forum') ? '<a href="' . $scripturl . '?action=admin;area=paidsubscribe;sa=modifyuser;lid=' . $sub['id'] . '">' . $sub['name'] . '</a>' : $sub['name']), ' |
@@ -517,6 +531,7 @@ discard block |
||
517 | 531 | ', $sub['end'], ' |
518 | 532 | </td> |
519 | 533 | </tr>'; |
534 | + } |
|
520 | 535 | } |
521 | 536 | echo ' |
522 | 537 | </tbody> |
@@ -567,15 +582,17 @@ discard block |
||
567 | 582 | ', $gateway['desc'], '<br> |
568 | 583 | <form action="', $gateway['form'], '" method="post">'; |
569 | 584 | |
570 | - if (!empty($gateway['javascript'])) |
|
571 | - echo ' |
|
585 | + if (!empty($gateway['javascript'])) { |
|
586 | + echo ' |
|
572 | 587 | <script> |
573 | 588 | ', $gateway['javascript'], ' |
574 | 589 | </script>'; |
590 | + } |
|
575 | 591 | |
576 | - foreach ($gateway['hidden'] as $name => $value) |
|
577 | - echo ' |
|
592 | + foreach ($gateway['hidden'] as $name => $value) { |
|
593 | + echo ' |
|
578 | 594 | <input type="hidden" id="', $gateway['id'], '_', $name, '" name="', $name, '" value="', $value, '">'; |
595 | + } |
|
579 | 596 | |
580 | 597 | echo ' |
581 | 598 | <br><input type="submit" value="', $gateway['submit'], '" class="button_submit"> |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | <div class="login"> |
127 | 127 | <div class="cat_bar"> |
128 | 128 | <h3 class="catbg"> |
129 | - ', $txt['tfa_profile_label'] ,' |
|
129 | + ', $txt['tfa_profile_label'], ' |
|
130 | 130 | </h3> |
131 | 131 | </div> |
132 | 132 | <div class="roundframe noup">'; |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | echo ' |
313 | 313 | <strong>', $txt['password'], ':</strong> |
314 | 314 | <input type="password" name="', $context['sessionCheckType'], '_pass" size="24" class="input_password"> |
315 | - <a href="', $scripturl, '?action=helpadmin;help=securityDisable_why" onclick="return reqOverlayDiv(this.href);" class="help"><span class="generic_icons help" title="', $txt['help'],'"></span></a><br> |
|
315 | + <a href="', $scripturl, '?action=helpadmin;help=securityDisable_why" onclick="return reqOverlayDiv(this.href);" class="help"><span class="generic_icons help" title="', $txt['help'], '"></span></a><br> |
|
316 | 316 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
317 | 317 | <input type="hidden" name="', $context['admin-login_token_var'], '" value="', $context['admin-login_token'], '"> |
318 | 318 | <input type="submit" style="margin-top: 1em;" value="', $txt['login'], '" class="button_submit">'; |
@@ -28,14 +28,16 @@ discard block |
||
28 | 28 | <form class="login" action="', $context['login_url'], '" name="frmLogin" id="frmLogin" method="post" accept-charset="', $context['character_set'], '">'; |
29 | 29 | |
30 | 30 | // Did they make a mistake last time? |
31 | - if (!empty($context['login_errors'])) |
|
32 | - echo ' |
|
31 | + if (!empty($context['login_errors'])) { |
|
32 | + echo ' |
|
33 | 33 | <div class="errorbox">', implode('<br>', $context['login_errors']), '</div><br>'; |
34 | + } |
|
34 | 35 | |
35 | 36 | // Or perhaps there's some special description for this time? |
36 | - if (isset($context['description'])) |
|
37 | - echo ' |
|
37 | + if (isset($context['description'])) { |
|
38 | + echo ' |
|
38 | 39 | <div class="information">', $context['description'], '</div>'; |
40 | + } |
|
39 | 41 | |
40 | 42 | // Now just get the basic information - username, password, etc. |
41 | 43 | echo ' |
@@ -51,10 +53,11 @@ discard block |
||
51 | 53 | <dt>', $txt['always_logged_in'], ':</dt> |
52 | 54 | <dd><input type="checkbox" name="cookieneverexp"', $context['never_expire'] ? ' checked' : '', ' class="input_check" onclick="this.form.cookielength.disabled = this.checked;"></dd>'; |
53 | 55 | // If they have deleted their account, give them a chance to change their mind. |
54 | - if (isset($context['login_show_undelete'])) |
|
55 | - echo ' |
|
56 | + if (isset($context['login_show_undelete'])) { |
|
57 | + echo ' |
|
56 | 58 | <dt class="alert">', $txt['undelete_account'], ':</dt> |
57 | 59 | <dd><input type="checkbox" name="undelete" class="input_check"></dd>'; |
60 | + } |
|
58 | 61 | echo ' |
59 | 62 | </dl> |
60 | 63 | <p><input type="submit" value="', $txt['login'], '" class="button_submit"></p> |
@@ -66,8 +69,8 @@ discard block |
||
66 | 69 | setTimeout(function() { |
67 | 70 | document.getElementById("', !empty($context['from_ajax']) ? 'ajax_' : '', isset($context['default_username']) && $context['default_username'] != '' ? 'loginpass' : 'loginuser', '").focus(); |
68 | 71 | }, 150);'; |
69 | - if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) |
|
70 | - echo ' |
|
72 | + if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) { |
|
73 | + echo ' |
|
71 | 74 | form = $("#frmLogin"); |
72 | 75 | form.submit(function(e) { |
73 | 76 | e.preventDefault(); |
@@ -100,16 +103,18 @@ discard block |
||
100 | 103 | |
101 | 104 | return false; |
102 | 105 | });'; |
106 | + } |
|
103 | 107 | |
104 | 108 | echo ' |
105 | 109 | </script> |
106 | 110 | </form>'; |
107 | 111 | |
108 | 112 | // It is a long story as to why we have this when we're clearly not going to use it. |
109 | - if (!empty($context['from_ajax'])) |
|
110 | - echo ' |
|
113 | + if (!empty($context['from_ajax'])) { |
|
114 | + echo ' |
|
111 | 115 | <br> |
112 | 116 | <a href="javascript:self.close();"></a>'; |
117 | + } |
|
113 | 118 | echo ' |
114 | 119 | </div> |
115 | 120 | </div>'; |
@@ -130,9 +135,10 @@ discard block |
||
130 | 135 | </h3> |
131 | 136 | </div> |
132 | 137 | <div class="roundframe noup">'; |
133 | - if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) |
|
134 | - echo ' |
|
138 | + if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) { |
|
139 | + echo ' |
|
135 | 140 | <div class="error">', $txt['tfa_' . (!empty($context['tfa_error']) ? 'code_' : 'backup_') . 'invalid'], '</div>'; |
141 | + } |
|
136 | 142 | echo ' |
137 | 143 | <form action="', $context['tfa_url'], '" method="post" id="frmTfa"> |
138 | 144 | <div id="tfaCode"> |
@@ -155,8 +161,8 @@ discard block |
||
155 | 161 | </form> |
156 | 162 | <script> |
157 | 163 | form = $("#frmTfa");'; |
158 | - if (!empty($context['from_ajax'])) |
|
159 | - echo ' |
|
164 | + if (!empty($context['from_ajax'])) { |
|
165 | + echo ' |
|
160 | 166 | form.submit(function(e) { |
161 | 167 | // If we are submitting backup code, let normal workflow follow since it redirects a couple times into a different page |
162 | 168 | if (form.find("input[name=tfa_backup]:first").val().length > 0) |
@@ -175,6 +181,7 @@ discard block |
||
175 | 181 | |
176 | 182 | return false; |
177 | 183 | });'; |
184 | + } |
|
178 | 185 | echo ' |
179 | 186 | form.find("input[name=backup]").click(function(e) { |
180 | 187 | $("#tfaBackup").show(); |
@@ -206,10 +213,11 @@ discard block |
||
206 | 213 | ', empty($context['kick_message']) ? $txt['only_members_can_access'] : $context['kick_message'], '<br>'; |
207 | 214 | |
208 | 215 | |
209 | - if ($context['can_register']) |
|
210 | - echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
211 | - else |
|
212 | - echo $txt['login_below']; |
|
216 | + if ($context['can_register']) { |
|
217 | + echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
218 | + } else { |
|
219 | + echo $txt['login_below']; |
|
220 | + } |
|
213 | 221 | |
214 | 222 | // And now the login information. |
215 | 223 | echo ' |
@@ -305,9 +313,10 @@ discard block |
||
305 | 313 | </div> |
306 | 314 | <div class="roundframe centertext noup">'; |
307 | 315 | |
308 | - if (!empty($context['incorrect_password'])) |
|
309 | - echo ' |
|
316 | + if (!empty($context['incorrect_password'])) { |
|
317 | + echo ' |
|
310 | 318 | <div class="error">', $txt['admin_incorrect_password'], '</div>'; |
319 | + } |
|
311 | 320 | |
312 | 321 | echo ' |
313 | 322 | <strong>', $txt['password'], ':</strong> |
@@ -347,11 +356,12 @@ discard block |
||
347 | 356 | <div class="roundframe">'; |
348 | 357 | |
349 | 358 | // You didn't even have an ID? |
350 | - if (empty($context['member_id'])) |
|
351 | - echo ' |
|
359 | + if (empty($context['member_id'])) { |
|
360 | + echo ' |
|
352 | 361 | <dl> |
353 | 362 | <dt>', $txt['invalid_activation_username'], ':</dt> |
354 | 363 | <dd><input type="text" name="user" size="30" class="input_text"></dd>'; |
364 | + } |
|
355 | 365 | |
356 | 366 | echo ' |
357 | 367 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
@@ -388,13 +398,14 @@ discard block |
||
388 | 398 | <dd><input type="password" name="passwd" size="30" class="input_password"></dd> |
389 | 399 | </dl>'; |
390 | 400 | |
391 | - if ($context['can_activate']) |
|
392 | - echo ' |
|
401 | + if ($context['can_activate']) { |
|
402 | + echo ' |
|
393 | 403 | <p>', $txt['invalid_activation_known'], '</p> |
394 | 404 | <dl> |
395 | 405 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
396 | 406 | <dd><input type="text" name="code" size="30" class="input_text"></dd> |
397 | 407 | </dl>'; |
408 | + } |
|
398 | 409 | |
399 | 410 | echo ' |
400 | 411 | <p><input type="submit" value="', $txt['invalid_activation_resend'], '" class="button_submit"></p> |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | // Show right to left, the language code, and the character set for ease of translating. |
87 | 87 | echo '<!DOCTYPE html> |
88 | - <html', $context['right_to_left'] ? ' dir="rtl"' : '', !empty($txt['lang_locale']) ? ' lang="' . str_replace("_", "-", substr($txt['lang_locale'], 0, strcspn($txt['lang_locale'], "."))) . '"' : '' , '> |
|
88 | + <html', $context['right_to_left'] ? ' dir="rtl"' : '', !empty($txt['lang_locale']) ? ' lang="' . str_replace("_", "-", substr($txt['lang_locale'], 0, strcspn($txt['lang_locale'], "."))) . '"' : '', '> |
|
89 | 89 | <head> |
90 | 90 | <meta charset="', $context['character_set'], '">'; |
91 | 91 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | // Thirdly, alerts |
211 | 211 | echo ' |
212 | 212 | <li> |
213 | - <a href="', $scripturl, '?action=profile;area=showalerts;u=', $context['user']['id'] ,'"', !empty($context['self_alerts']) ? ' class="active"' : '', ' id="alerts_menu_top">', $txt['alerts'], !empty($context['user']['alerts']) ? ' <span class="amt">' . $context['user']['alerts'] . '</span>' : '', '</a> |
|
213 | + <a href="', $scripturl, '?action=profile;area=showalerts;u=', $context['user']['id'], '"', !empty($context['self_alerts']) ? ' class="active"' : '', ' id="alerts_menu_top">', $txt['alerts'], !empty($context['user']['alerts']) ? ' <span class="amt">' . $context['user']['alerts'] . '</span>' : '', '</a> |
|
214 | 214 | <div id="alerts_menu" class="top_menu scrollable"></div> |
215 | 215 | </li>'; |
216 | 216 | |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | <a class="menu_icon mobile_user_menu"></a> |
328 | 328 | <div id="mobile_user_menu" class="popup_container"> |
329 | 329 | <div class="popup_window description"> |
330 | - <div class="popup_heading">', $txt['mobile_user_menu'],' |
|
330 | + <div class="popup_heading">', $txt['mobile_user_menu'], ' |
|
331 | 331 | <a href="javascript:void(0);" class="generic_icons hide_popup"></a></div> |
332 | 332 | ', template_menu(), ' |
333 | 333 | </div> |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | // There is now a global "Go to top" link at the right. |
375 | 375 | echo ' |
376 | 376 | <ul> |
377 | - <li class="floatright"><a href="', $scripturl, '?action=help">', $txt['help'], '</a> ', (!empty($modSettings['requireAgreement'])) ? '| <a href="'. $scripturl. '?action=help;sa=rules">'. $txt['terms_and_rules']. '</a>' : '', ' | <a href="#top_section">', $txt['go_up'], ' ▲</a></li> |
|
377 | + <li class="floatright"><a href="', $scripturl, '?action=help">', $txt['help'], '</a> ', (!empty($modSettings['requireAgreement'])) ? '| <a href="' . $scripturl . '?action=help;sa=rules">' . $txt['terms_and_rules'] . '</a>' : '', ' | <a href="#top_section">', $txt['go_up'], ' ▲</a></li> |
|
378 | 378 | <li class="copyright">', theme_copyright(), '</li> |
379 | 379 | </ul>'; |
380 | 380 | |
@@ -479,9 +479,9 @@ discard block |
||
479 | 479 | foreach ($context['menu_buttons'] as $act => $button) |
480 | 480 | { |
481 | 481 | echo ' |
482 | - <li class="button_', $act, '', !empty($button['sub_buttons']) ? ' subsections"' :'"', '> |
|
482 | + <li class="button_', $act, '', !empty($button['sub_buttons']) ? ' subsections"' : '"', '> |
|
483 | 483 | <a', $button['active_button'] ? ' class="active"' : '', ' href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '> |
484 | - ', $button['icon'],'<span class="textmenu">', $button['title'], '</span> |
|
484 | + ', $button['icon'], '<span class="textmenu">', $button['title'], '</span> |
|
485 | 485 | </a>'; |
486 | 486 | |
487 | 487 | if (!empty($button['sub_buttons'])) |
@@ -492,8 +492,8 @@ discard block |
||
492 | 492 | foreach ($button['sub_buttons'] as $childbutton) |
493 | 493 | { |
494 | 494 | echo ' |
495 | - <li', !empty($childbutton['sub_buttons']) ? ' class="subsections"' :'', '> |
|
496 | - <a href="', $childbutton['href'], '"' , isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '> |
|
495 | + <li', !empty($childbutton['sub_buttons']) ? ' class="subsections"' : '', '> |
|
496 | + <a href="', $childbutton['href'], '"', isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '> |
|
497 | 497 | ', $childbutton['title'], ' |
498 | 498 | </a>'; |
499 | 499 | // 3rd level menus :) |
@@ -505,7 +505,7 @@ discard block |
||
505 | 505 | foreach ($childbutton['sub_buttons'] as $grandchildbutton) |
506 | 506 | echo ' |
507 | 507 | <li> |
508 | - <a href="', $grandchildbutton['href'], '"' , isset($grandchildbutton['target']) ? ' target="' . $grandchildbutton['target'] . '"' : '', '> |
|
508 | + <a href="', $grandchildbutton['href'], '"', isset($grandchildbutton['target']) ? ' target="' . $grandchildbutton['target'] . '"' : '', '> |
|
509 | 509 | ', $grandchildbutton['title'], ' |
510 | 510 | </a> |
511 | 511 | </li>'; |
@@ -553,7 +553,7 @@ discard block |
||
553 | 553 | $value['id'] = $key; |
554 | 554 | |
555 | 555 | $button = ' |
556 | - <a class="button button_strip_' . $key . (!empty($value['active']) ? ' active' : '') . (isset($value['class']) ? ' '. $value['class'] : '') . '" ' . (!empty($value['url']) ? 'href="'. $value['url'] .'"' : '') . ' ' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '>' . $txt[$value['text']] . '</a>'; |
|
556 | + <a class="button button_strip_' . $key . (!empty($value['active']) ? ' active' : '') . (isset($value['class']) ? ' ' . $value['class'] : '') . '" ' . (!empty($value['url']) ? 'href="' . $value['url'] . '"' : '') . ' ' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '>' . $txt[$value['text']] . '</a>'; |
|
557 | 557 | |
558 | 558 | if (!empty($value['sub_buttons'])) |
559 | 559 | { |
@@ -587,7 +587,7 @@ discard block |
||
587 | 587 | return; |
588 | 588 | |
589 | 589 | echo ' |
590 | - <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '> |
|
590 | + <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"' : ''), '> |
|
591 | 591 | ',implode('', $buttons), ' |
592 | 592 | </div>'; |
593 | 593 | } |
@@ -72,9 +72,10 @@ discard block |
||
72 | 72 | |
73 | 73 | // Allow css/js files to be disable for this specific theme. |
74 | 74 | // Add the identifier as an array key. IE array('smf_script'); Some external files might not add identifiers, on those cases SMF uses its filename as reference. |
75 | - if (!isset($settings['disable_files'])) |
|
76 | - $settings['disable_files'] = array(); |
|
77 | -} |
|
75 | + if (!isset($settings['disable_files'])) { |
|
76 | + $settings['disable_files'] = array(); |
|
77 | + } |
|
78 | + } |
|
78 | 79 | |
79 | 80 | /** |
80 | 81 | * The main sub template above the content. |
@@ -111,8 +112,9 @@ discard block |
||
111 | 112 | echo ' |
112 | 113 | <meta'; |
113 | 114 | |
114 | - foreach ($meta_tag as $meta_key => $meta_value) |
|
115 | - echo ' ', $meta_key, '="', $meta_value, '"'; |
|
115 | + foreach ($meta_tag as $meta_key => $meta_value) { |
|
116 | + echo ' ', $meta_key, '="', $meta_value, '"'; |
|
117 | + } |
|
116 | 118 | |
117 | 119 | echo '>'; |
118 | 120 | } |
@@ -123,14 +125,16 @@ discard block |
||
123 | 125 | <meta name="theme-color" content="#557EA0">'; |
124 | 126 | |
125 | 127 | // Please don't index these Mr Robot. |
126 | - if (!empty($context['robot_no_index'])) |
|
127 | - echo ' |
|
128 | + if (!empty($context['robot_no_index'])) { |
|
129 | + echo ' |
|
128 | 130 | <meta name="robots" content="noindex">'; |
131 | + } |
|
129 | 132 | |
130 | 133 | // Present a canonical url for search engines to prevent duplicate content in their indices. |
131 | - if (!empty($context['canonical_url'])) |
|
132 | - echo ' |
|
134 | + if (!empty($context['canonical_url'])) { |
|
135 | + echo ' |
|
133 | 136 | <link rel="canonical" href="', $context['canonical_url'], '">'; |
137 | + } |
|
134 | 138 | |
135 | 139 | // Show all the relative links, such as help, search, contents, and the like. |
136 | 140 | echo ' |
@@ -139,10 +143,11 @@ discard block |
||
139 | 143 | <link rel="search" href="' . $scripturl . '?action=search">' : ''); |
140 | 144 | |
141 | 145 | // If RSS feeds are enabled, advertise the presence of one. |
142 | - if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged'])) |
|
143 | - echo ' |
|
146 | + if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged'])) { |
|
147 | + echo ' |
|
144 | 148 | <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['rss'], '" href="', $scripturl, '?type=rss2;action=.xml"> |
145 | 149 | <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['atom'], '" href="', $scripturl, '?type=atom;action=.xml">'; |
150 | + } |
|
146 | 151 | |
147 | 152 | // If we're viewing a topic, these should be the previous and next topics, respectively. |
148 | 153 | if (!empty($context['links']['next'])) |
@@ -158,9 +163,10 @@ discard block |
||
158 | 163 | } |
159 | 164 | |
160 | 165 | // If we're in a board, or a topic for that matter, the index will be the board's index. |
161 | - if (!empty($context['current_board'])) |
|
162 | - echo ' |
|
166 | + if (!empty($context['current_board'])) { |
|
167 | + echo ' |
|
163 | 168 | <link rel="index" href="', $scripturl, '?board=', $context['current_board'], '.0">'; |
169 | + } |
|
164 | 170 | |
165 | 171 | // Output any remaining HTML headers. (from mods, maybe?) |
166 | 172 | echo $context['html_headers']; |
@@ -191,8 +197,9 @@ discard block |
||
191 | 197 | <ul class="floatleft" id="top_info"> |
192 | 198 | <li> |
193 | 199 | <a href="', $scripturl, '?action=profile"', !empty($context['self_profile']) ? ' class="active"' : '', ' id="profile_menu_top" onclick="return false;">'; |
194 | - if (!empty($context['user']['avatar'])) |
|
195 | - echo $context['user']['avatar']['image']; |
|
200 | + if (!empty($context['user']['avatar'])) { |
|
201 | + echo $context['user']['avatar']['image']; |
|
202 | + } |
|
196 | 203 | echo $context['user']['name'], '</a> |
197 | 204 | <div id="profile_menu" class="top_menu"></div> |
198 | 205 | </li>'; |
@@ -219,11 +226,12 @@ discard block |
||
219 | 226 | </ul>'; |
220 | 227 | } |
221 | 228 | // Otherwise they're a guest. Ask them to either register or login. |
222 | - else |
|
223 | - echo ' |
|
229 | + else { |
|
230 | + echo ' |
|
224 | 231 | <ul class="floatleft welcome"> |
225 | 232 | <li>', sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $context['forum_name_html_safe'], $scripturl . '?action=login', 'return reqOverlayDiv(this.href, ' . JavaScriptEscape($txt['login']) . ');', $scripturl . '?action=signup'), '</li> |
226 | 233 | </ul>'; |
234 | + } |
|
227 | 235 | |
228 | 236 | if (!empty($modSettings['userLanguage']) && !empty($context['languages']) && count($context['languages']) > 1) |
229 | 237 | { |
@@ -231,9 +239,10 @@ discard block |
||
231 | 239 | <form id="languages_form" method="get" class="floatright"> |
232 | 240 | <select id="language_select" name="language" onchange="this.form.submit()">'; |
233 | 241 | |
234 | - foreach ($context['languages'] as $language) |
|
235 | - echo ' |
|
242 | + foreach ($context['languages'] as $language) { |
|
243 | + echo ' |
|
236 | 244 | <option value="', $language['filename'], '"', isset($context['user']['language']) && $context['user']['language'] == $language['filename'] ? ' selected="selected"' : '', '>', str_replace('-utf8', '', $language['name']), '</option>'; |
245 | + } |
|
237 | 246 | |
238 | 247 | echo ' |
239 | 248 | </select> |
@@ -257,31 +266,36 @@ discard block |
||
257 | 266 | <option value="all"', ($selected == 'all' ? ' selected' : ''), '>', $txt['search_entireforum'], ' </option>'; |
258 | 267 | |
259 | 268 | // Can't limit it to a specific topic if we are not in one |
260 | - if (!empty($context['current_topic'])) |
|
261 | - echo ' |
|
269 | + if (!empty($context['current_topic'])) { |
|
270 | + echo ' |
|
262 | 271 | <option value="topic"', ($selected == 'current_topic' ? ' selected' : ''), '>', $txt['search_thistopic'], '</option>'; |
272 | + } |
|
263 | 273 | |
264 | 274 | // Can't limit it to a specific board if we are not in one |
265 | - if (!empty($context['current_board'])) |
|
266 | - echo ' |
|
275 | + if (!empty($context['current_board'])) { |
|
276 | + echo ' |
|
267 | 277 | <option value="board"', ($selected == 'current_board' ? ' selected' : ''), '>', $txt['search_thisbrd'], '</option>'; |
278 | + } |
|
268 | 279 | |
269 | 280 | // Can't search for members if we can't see the memberlist |
270 | - if (!empty($context['allow_memberlist'])) |
|
271 | - echo ' |
|
281 | + if (!empty($context['allow_memberlist'])) { |
|
282 | + echo ' |
|
272 | 283 | <option value="members"', ($selected == 'members' ? ' selected' : ''), '>', $txt['search_members'], ' </option>'; |
284 | + } |
|
273 | 285 | |
274 | 286 | echo ' |
275 | 287 | </select>'; |
276 | 288 | |
277 | 289 | // Search within current topic? |
278 | - if (!empty($context['current_topic'])) |
|
279 | - echo ' |
|
290 | + if (!empty($context['current_topic'])) { |
|
291 | + echo ' |
|
280 | 292 | <input type="hidden" name="sd_topic" value="', $context['current_topic'], '">'; |
293 | + } |
|
281 | 294 | // If we're on a certain board, limit it to this board ;). |
282 | - elseif (!empty($context['current_board'])) |
|
283 | - echo ' |
|
295 | + elseif (!empty($context['current_board'])) { |
|
296 | + echo ' |
|
284 | 297 | <input type="hidden" name="sd_brd" value="', $context['current_board'], '">'; |
298 | + } |
|
285 | 299 | |
286 | 300 | echo ' |
287 | 301 | <input type="submit" name="search2" value="', $txt['search'], '" class="button_submit"> |
@@ -311,12 +325,13 @@ discard block |
||
311 | 325 | ', $context['current_time'], ' |
312 | 326 | </div>'; |
313 | 327 | // Show a random news item? (or you could pick one from news_lines...) |
314 | - if (!empty($settings['enable_news']) && !empty($context['random_news_line'])) |
|
315 | - echo ' |
|
328 | + if (!empty($settings['enable_news']) && !empty($context['random_news_line'])) { |
|
329 | + echo ' |
|
316 | 330 | <div class="news"> |
317 | 331 | <h2>', $txt['news'], ': </h2> |
318 | 332 | <p>', $context['random_news_line'], '</p> |
319 | 333 | </div>'; |
334 | + } |
|
320 | 335 | |
321 | 336 | echo ' |
322 | 337 | <hr class="clear"> |
@@ -379,9 +394,10 @@ discard block |
||
379 | 394 | </ul>'; |
380 | 395 | |
381 | 396 | // Show the load time? |
382 | - if ($context['show_load_time']) |
|
383 | - echo ' |
|
397 | + if ($context['show_load_time']) { |
|
398 | + echo ' |
|
384 | 399 | <p>', sprintf($txt['page_created_full'], $context['load_time'], $context['load_queries']), '</p>'; |
400 | + } |
|
385 | 401 | |
386 | 402 | echo ' |
387 | 403 | </div>'; |
@@ -411,19 +427,21 @@ discard block |
||
411 | 427 | global $context, $shown_linktree, $scripturl, $txt; |
412 | 428 | |
413 | 429 | // If linktree is empty, just return - also allow an override. |
414 | - if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show)) |
|
415 | - return; |
|
430 | + if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show)) { |
|
431 | + return; |
|
432 | + } |
|
416 | 433 | |
417 | 434 | echo ' |
418 | 435 | <div class="navigate_section"> |
419 | 436 | <ul>'; |
420 | 437 | |
421 | - if ($context['user']['is_logged']) |
|
422 | - echo ' |
|
438 | + if ($context['user']['is_logged']) { |
|
439 | + echo ' |
|
423 | 440 | <li class="unread_links"> |
424 | 441 | <a href="', $scripturl, '?action=unread" title="', $txt['unread_since_visit'], '">', $txt['view_unread_category'], '</a> |
425 | 442 | <a href="', $scripturl, '?action=unreadreplies" title="', $txt['show_unread_replies'], '">', $txt['unread_replies'], '</a> |
426 | 443 | </li>'; |
444 | + } |
|
427 | 445 | |
428 | 446 | // Each tree item has a URL and name. Some may have extra_before and extra_after. |
429 | 447 | foreach ($context['linktree'] as $link_num => $tree) |
@@ -434,25 +452,29 @@ discard block |
||
434 | 452 | // Don't show a separator for the first one. |
435 | 453 | // Better here. Always points to the next level when the linktree breaks to a second line. |
436 | 454 | // Picked a better looking HTML entity, and added support for RTL plus a span for styling. |
437 | - if ($link_num != 0) |
|
438 | - echo ' |
|
455 | + if ($link_num != 0) { |
|
456 | + echo ' |
|
439 | 457 | <span class="dividers">', $context['right_to_left'] ? ' ◄ ' : ' ► ', '</span>'; |
458 | + } |
|
440 | 459 | |
441 | 460 | // Show something before the link? |
442 | - if (isset($tree['extra_before'])) |
|
443 | - echo $tree['extra_before'], ' '; |
|
461 | + if (isset($tree['extra_before'])) { |
|
462 | + echo $tree['extra_before'], ' '; |
|
463 | + } |
|
444 | 464 | |
445 | 465 | // Show the link, including a URL if it should have one. |
446 | - if (isset($tree['url'])) |
|
447 | - echo ' |
|
466 | + if (isset($tree['url'])) { |
|
467 | + echo ' |
|
448 | 468 | <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>'; |
449 | - else |
|
450 | - echo ' |
|
469 | + } else { |
|
470 | + echo ' |
|
451 | 471 | <span>' . $tree['name'] . '</span>'; |
472 | + } |
|
452 | 473 | |
453 | 474 | // Show something after the link...? |
454 | - if (isset($tree['extra_after'])) |
|
455 | - echo ' ', $tree['extra_after']; |
|
475 | + if (isset($tree['extra_after'])) { |
|
476 | + echo ' ', $tree['extra_after']; |
|
477 | + } |
|
456 | 478 | |
457 | 479 | echo ' |
458 | 480 | </li>'; |
@@ -502,13 +524,14 @@ discard block |
||
502 | 524 | echo ' |
503 | 525 | <ul>'; |
504 | 526 | |
505 | - foreach ($childbutton['sub_buttons'] as $grandchildbutton) |
|
506 | - echo ' |
|
527 | + foreach ($childbutton['sub_buttons'] as $grandchildbutton) { |
|
528 | + echo ' |
|
507 | 529 | <li> |
508 | 530 | <a href="', $grandchildbutton['href'], '"' , isset($grandchildbutton['target']) ? ' target="' . $grandchildbutton['target'] . '"' : '', '> |
509 | 531 | ', $grandchildbutton['title'], ' |
510 | 532 | </a> |
511 | 533 | </li>'; |
534 | + } |
|
512 | 535 | |
513 | 536 | echo ' |
514 | 537 | </ul>'; |
@@ -539,8 +562,9 @@ discard block |
||
539 | 562 | { |
540 | 563 | global $context, $txt; |
541 | 564 | |
542 | - if (!is_array($strip_options)) |
|
543 | - $strip_options = array(); |
|
565 | + if (!is_array($strip_options)) { |
|
566 | + $strip_options = array(); |
|
567 | + } |
|
544 | 568 | |
545 | 569 | // Create the buttons... |
546 | 570 | $buttons = array(); |
@@ -549,8 +573,9 @@ discard block |
||
549 | 573 | // As of 2.1, the 'test' for each button happens while the array is being generated. The extra 'test' check here is deprecated but kept for backward compatibility (update your mods, folks!) |
550 | 574 | if (!isset($value['test']) || !empty($context[$value['test']])) |
551 | 575 | { |
552 | - if (!isset($value['id'])) |
|
553 | - $value['id'] = $key; |
|
576 | + if (!isset($value['id'])) { |
|
577 | + $value['id'] = $key; |
|
578 | + } |
|
554 | 579 | |
555 | 580 | $button = ' |
556 | 581 | <a class="button button_strip_' . $key . (!empty($value['active']) ? ' active' : '') . (isset($value['class']) ? ' '. $value['class'] : '') . '" ' . (!empty($value['url']) ? 'href="'. $value['url'] .'"' : '') . ' ' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '>' . $txt[$value['text']] . '</a>'; |
@@ -563,13 +588,15 @@ discard block |
||
563 | 588 | <div class="overview">'; |
564 | 589 | foreach ($value['sub_buttons'] as $element) |
565 | 590 | { |
566 | - if (isset($element['test']) && empty($context[$element['test']])) |
|
567 | - continue; |
|
591 | + if (isset($element['test']) && empty($context[$element['test']])) { |
|
592 | + continue; |
|
593 | + } |
|
568 | 594 | |
569 | 595 | $button .= ' |
570 | 596 | <a href="' . $element['url'] . '"><strong>' . $txt[$element['text']] . '</strong>'; |
571 | - if (isset($txt[$element['text'] . '_desc'])) |
|
572 | - $button .= '<br /><span>' . $txt[$element['text'] . '_desc'] . '</span>'; |
|
597 | + if (isset($txt[$element['text'] . '_desc'])) { |
|
598 | + $button .= '<br /><span>' . $txt[$element['text'] . '_desc'] . '</span>'; |
|
599 | + } |
|
573 | 600 | $button .= '</a>'; |
574 | 601 | } |
575 | 602 | $button .= ' |
@@ -583,8 +610,9 @@ discard block |
||
583 | 610 | } |
584 | 611 | |
585 | 612 | // No buttons? No button strip either. |
586 | - if (empty($buttons)) |
|
587 | - return; |
|
613 | + if (empty($buttons)) { |
|
614 | + return; |
|
615 | + } |
|
588 | 616 | |
589 | 617 | echo ' |
590 | 618 | <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '> |
@@ -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,14 +108,15 @@ discard block |
||
105 | 108 | </dt> |
106 | 109 | <dd class="statsbar">'; |
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'], '%;"> |
111 | 114 | <span class="righttext">', $item['num'], '</span> |
112 | 115 | </div>'; |
113 | - else |
|
114 | - echo ' |
|
116 | + } else { |
|
117 | + echo ' |
|
115 | 118 | <div class="bar empty"><span class="righttext">', $item['num'], '</span></div>'; |
119 | + } |
|
116 | 120 | |
117 | 121 | echo ' |
118 | 122 | </dd>'; |
@@ -144,9 +148,10 @@ discard block |
||
144 | 148 | <th>', $txt['stats_new_members'], '</th> |
145 | 149 | <th>', $txt['most_online'], '</th>'; |
146 | 150 | |
147 | - if (!empty($modSettings['hitStats'])) |
|
148 | - echo ' |
|
151 | + if (!empty($modSettings['hitStats'])) { |
|
152 | + echo ' |
|
149 | 153 | <th>', $txt['page_views'], '</th>'; |
154 | + } |
|
150 | 155 | |
151 | 156 | echo ' |
152 | 157 | </tr> |
@@ -165,9 +170,10 @@ discard block |
||
165 | 170 | <th>', $year['new_members'], '</th> |
166 | 171 | <th>', $year['most_members_online'], '</th>'; |
167 | 172 | |
168 | - if (!empty($modSettings['hitStats'])) |
|
169 | - echo ' |
|
173 | + if (!empty($modSettings['hitStats'])) { |
|
174 | + echo ' |
|
170 | 175 | <th>', $year['hits'], '</th>'; |
176 | + } |
|
171 | 177 | |
172 | 178 | echo ' |
173 | 179 | </tr>'; |
@@ -184,9 +190,10 @@ discard block |
||
184 | 190 | <th>', $month['new_members'], '</th> |
185 | 191 | <th>', $month['most_members_online'], '</th>'; |
186 | 192 | |
187 | - if (!empty($modSettings['hitStats'])) |
|
188 | - echo ' |
|
193 | + if (!empty($modSettings['hitStats'])) { |
|
194 | + echo ' |
|
189 | 195 | <th>', $month['hits'], '</th>'; |
196 | + } |
|
190 | 197 | |
191 | 198 | echo ' |
192 | 199 | </tr>'; |
@@ -203,9 +210,10 @@ discard block |
||
203 | 210 | <td>', $day['new_members'], '</td> |
204 | 211 | <td>', $day['most_members_online'], '</td>'; |
205 | 212 | |
206 | - if (!empty($modSettings['hitStats'])) |
|
207 | - echo ' |
|
213 | + if (!empty($modSettings['hitStats'])) { |
|
214 | + echo ' |
|
208 | 215 | <td>', $day['hits'], '</td>'; |
216 | + } |
|
209 | 217 | |
210 | 218 | echo ' |
211 | 219 | </tr>'; |
@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | <meta charset="', $context['character_set'], '"> |
25 | 25 | <meta name="robots" content="noindex"> |
26 | 26 | <title>', $context['page_title'], '</title> |
27 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> |
|
28 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> |
|
27 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> |
|
28 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> |
|
29 | 29 | </head> |
30 | 30 | <body id="help_popup"> |
31 | 31 | <div class="windowbg description"> |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | <title>', $txt['find_members'], '</title> |
51 | 51 | <meta charset="', $context['character_set'], '"> |
52 | 52 | <meta name="robots" content="noindex"> |
53 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> |
|
54 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> |
|
53 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> |
|
54 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> |
|
55 | 55 | <script> |
56 | 56 | var membersAdded = []; |
57 | 57 | function addMember(name) |
@@ -86,9 +86,10 @@ discard block |
||
86 | 86 | <span class="smalltext"><em>', $txt['find_wildcards'], '</em></span><br>'; |
87 | 87 | |
88 | 88 | // Only offer to search for buddies if we have some! |
89 | - if (!empty($context['show_buddies'])) |
|
90 | - echo ' |
|
89 | + if (!empty($context['show_buddies'])) { |
|
90 | + echo ' |
|
91 | 91 | <span class="smalltext"><label for="buddies"><input type="checkbox" class="input_check" name="buddies" id="buddies"', !empty($context['buddy_search']) ? ' checked' : '', '> ', $txt['find_buddies'], '</label></span><br>'; |
92 | + } |
|
92 | 93 | |
93 | 94 | echo ' |
94 | 95 | <div class="padding righttext"> |
@@ -103,10 +104,10 @@ discard block |
||
103 | 104 | <h3 class="catbg">', $txt['find_results'], '</h3> |
104 | 105 | </div>'; |
105 | 106 | |
106 | - if (empty($context['results'])) |
|
107 | - echo ' |
|
107 | + if (empty($context['results'])) { |
|
108 | + echo ' |
|
108 | 109 | <p class="error">', $txt['find_no_results'], '</p>'; |
109 | - else |
|
110 | + } else |
|
110 | 111 | { |
111 | 112 | echo ' |
112 | 113 | <ul class="padding">'; |
@@ -135,11 +136,12 @@ discard block |
||
135 | 136 | <input type="hidden" name="quote" value="', $context['quote_results'] ? '1' : '0', '"> |
136 | 137 | </form>'; |
137 | 138 | |
138 | - if (empty($context['results'])) |
|
139 | - echo ' |
|
139 | + if (empty($context['results'])) { |
|
140 | + echo ' |
|
140 | 141 | <script> |
141 | 142 | document.getElementById("search").focus(); |
142 | 143 | </script>'; |
144 | + } |
|
143 | 145 | |
144 | 146 | echo ' |
145 | 147 | </body> |
@@ -183,8 +185,8 @@ discard block |
||
183 | 185 | { |
184 | 186 | global $txt, $context, $modSettings; |
185 | 187 | |
186 | - if (!empty($modSettings['requireAgreement'])) |
|
187 | - echo ' |
|
188 | + if (!empty($modSettings['requireAgreement'])) { |
|
189 | + echo ' |
|
188 | 190 | <div class="cat_bar"> |
189 | 191 | <h3 class="catbg"> |
190 | 192 | ', $txt['terms_and_rules'], ' - ', $context['forum_name_html_safe'], ' |
@@ -193,11 +195,12 @@ discard block |
||
193 | 195 | <div class="roundframe"> |
194 | 196 | ', $context['agreement'], ' |
195 | 197 | </div>'; |
196 | - else |
|
197 | - echo ' |
|
198 | + } else { |
|
199 | + echo ' |
|
198 | 200 | <div class="noticebox"> |
199 | 201 | ', $txt['agreement_disabled'], ' |
200 | 202 | </div>'; |
201 | -} |
|
203 | + } |
|
204 | + } |
|
202 | 205 | |
203 | 206 | ?> |
204 | 207 | \ No newline at end of file |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | <div id="recent" class="main_section"> |
22 | 22 | <div class="cat_bar"> |
23 | 23 | <h3 class="catbg"> |
24 | - <span class="xx"></span>',$txt['recent_posts'],' |
|
24 | + <span class="xx"></span>',$txt['recent_posts'], ' |
|
25 | 25 | </h3> |
26 | 26 | </div> |
27 | 27 | <div class="pagesection">', $context['page_index'], '</div>'; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | foreach ($context['posts'] as $post) |
36 | 36 | { |
37 | 37 | echo ' |
38 | - <div class="', $post['css_class'] ,'"> |
|
38 | + <div class="', $post['css_class'], '"> |
|
39 | 39 | <div class="counter">', $post['counter'], '</div> |
40 | 40 | <div class="topic_details"> |
41 | 41 | <h5>', $post['board']['link'], ' / ', $post['link'], '</h5> |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | // How about... even... remove it entirely?! |
61 | 61 | if ($post['can_delete']) |
62 | 62 | echo ' |
63 | - <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';recent;', $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>'; |
|
63 | + <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';recent;', $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>'; |
|
64 | 64 | |
65 | 65 | if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
66 | 66 | echo ' |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | <div class="', $topic['css_class'], '"> |
275 | 275 | <div class="board_icon"> |
276 | 276 | <img src="', $topic['first_post']['icon_url'], '" alt=""> |
277 | - ', $topic['is_posted_in'] ? '<img class="posted" src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="">' : '',' |
|
277 | + ', $topic['is_posted_in'] ? '<img class="posted" src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="">' : '', ' |
|
278 | 278 | </div> |
279 | 279 | <div class="info">'; |
280 | 280 |
@@ -43,28 +43,33 @@ discard block |
||
43 | 43 | </div> |
44 | 44 | <div class="list_posts">', $post['message'], '</div>'; |
45 | 45 | |
46 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
47 | - echo ' |
|
46 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
47 | + echo ' |
|
48 | 48 | <ul class="quickbuttons">'; |
49 | + } |
|
49 | 50 | |
50 | 51 | // If they *can* reply? |
51 | - if ($post['can_reply']) |
|
52 | - echo ' |
|
52 | + if ($post['can_reply']) { |
|
53 | + echo ' |
|
53 | 54 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
55 | + } |
|
54 | 56 | |
55 | 57 | // If they *can* quote? |
56 | - if ($post['can_quote']) |
|
57 | - echo ' |
|
58 | + if ($post['can_quote']) { |
|
59 | + echo ' |
|
58 | 60 | <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>'; |
61 | + } |
|
59 | 62 | |
60 | 63 | // How about... even... remove it entirely?! |
61 | - if ($post['can_delete']) |
|
62 | - echo ' |
|
64 | + if ($post['can_delete']) { |
|
65 | + echo ' |
|
63 | 66 | <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';recent;', $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>'; |
67 | + } |
|
64 | 68 | |
65 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
66 | - echo ' |
|
69 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
70 | + echo ' |
|
67 | 71 | </ul>'; |
72 | + } |
|
68 | 73 | |
69 | 74 | echo ' |
70 | 75 | </div>'; |
@@ -86,12 +91,13 @@ discard block |
||
86 | 91 | echo ' |
87 | 92 | <div id="recent" class="main_content">'; |
88 | 93 | |
89 | - if ($context['showCheckboxes']) |
|
90 | - echo ' |
|
94 | + if ($context['showCheckboxes']) { |
|
95 | + echo ' |
|
91 | 96 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;"> |
92 | 97 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
93 | 98 | <input type="hidden" name="qaction" value="markread"> |
94 | 99 | <input type="hidden" name="redirect_url" value="action=unread', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
100 | + } |
|
95 | 101 | |
96 | 102 | if (!empty($context['topics'])) |
97 | 103 | { |
@@ -117,11 +123,12 @@ discard block |
||
117 | 123 | </div>'; |
118 | 124 | |
119 | 125 | // Show a "select all" box for quick moderation? |
120 | - if ($context['showCheckboxes']) |
|
121 | - echo ' |
|
126 | + if ($context['showCheckboxes']) { |
|
127 | + echo ' |
|
122 | 128 | <div class="moderation"> |
123 | 129 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');" class="input_check"> |
124 | 130 | </div>'; |
131 | + } |
|
125 | 132 | |
126 | 133 | echo ' |
127 | 134 | </div> |
@@ -140,15 +147,18 @@ discard block |
||
140 | 147 | // Now we handle the icons |
141 | 148 | echo ' |
142 | 149 | <div class="icons floatright">'; |
143 | - if ($topic['is_locked']) |
|
144 | - echo ' |
|
150 | + if ($topic['is_locked']) { |
|
151 | + echo ' |
|
145 | 152 | <span class="generic_icons lock"></span>'; |
146 | - if ($topic['is_sticky']) |
|
147 | - echo ' |
|
153 | + } |
|
154 | + if ($topic['is_sticky']) { |
|
155 | + echo ' |
|
148 | 156 | <span class="generic_icons sticky"></span>'; |
149 | - if ($topic['is_poll']) |
|
150 | - echo ' |
|
157 | + } |
|
158 | + if ($topic['is_poll']) { |
|
159 | + echo ' |
|
151 | 160 | <span class="generic_icons poll"></span>'; |
161 | + } |
|
152 | 162 | echo ' |
153 | 163 | </div>'; |
154 | 164 | |
@@ -173,19 +183,21 @@ discard block |
||
173 | 183 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
174 | 184 | </div>'; |
175 | 185 | |
176 | - if ($context['showCheckboxes']) |
|
177 | - echo ' |
|
186 | + if ($context['showCheckboxes']) { |
|
187 | + echo ' |
|
178 | 188 | <div class="moderation"> |
179 | 189 | <input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check"> |
180 | 190 | </div>'; |
191 | + } |
|
181 | 192 | |
182 | 193 | echo ' |
183 | 194 | </div>'; |
184 | 195 | } |
185 | 196 | |
186 | - if (empty($context['topics'])) |
|
187 | - echo ' |
|
197 | + if (empty($context['topics'])) { |
|
198 | + echo ' |
|
188 | 199 | <div style="display: none;"></div>'; |
200 | + } |
|
189 | 201 | |
190 | 202 | echo ' |
191 | 203 | </div> |
@@ -197,25 +209,27 @@ discard block |
||
197 | 209 | ', $context['menu_separator'], '<a href="#recent" class="topbottom floatleft">', $txt['go_up'], '</a> |
198 | 210 | <div class="pagelinks">', $context['page_index'], '</div> |
199 | 211 | </div>'; |
200 | - } |
|
201 | - else |
|
202 | - echo ' |
|
212 | + } else { |
|
213 | + echo ' |
|
203 | 214 | <div class="cat_bar"> |
204 | 215 | <h3 class="catbg centertext"> |
205 | 216 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
206 | 217 | </h3> |
207 | 218 | </div>'; |
219 | + } |
|
208 | 220 | |
209 | - if ($context['showCheckboxes']) |
|
210 | - echo ' |
|
221 | + if ($context['showCheckboxes']) { |
|
222 | + echo ' |
|
211 | 223 | </form>'; |
224 | + } |
|
212 | 225 | |
213 | 226 | echo ' |
214 | 227 | </div>'; |
215 | 228 | |
216 | - if (empty($context['no_topic_listing'])) |
|
217 | - template_topic_legend(); |
|
218 | -} |
|
229 | + if (empty($context['no_topic_listing'])) { |
|
230 | + template_topic_legend(); |
|
231 | + } |
|
232 | + } |
|
219 | 233 | |
220 | 234 | /** |
221 | 235 | * Template for showing unread replies (eg new replies to topics you've posted in) |
@@ -227,12 +241,13 @@ discard block |
||
227 | 241 | echo ' |
228 | 242 | <div id="recent">'; |
229 | 243 | |
230 | - if ($context['showCheckboxes']) |
|
231 | - echo ' |
|
244 | + if ($context['showCheckboxes']) { |
|
245 | + echo ' |
|
232 | 246 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;"> |
233 | 247 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
234 | 248 | <input type="hidden" name="qaction" value="markread"> |
235 | 249 | <input type="hidden" name="redirect_url" value="action=unreadreplies', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
250 | + } |
|
236 | 251 | |
237 | 252 | if (!empty($context['topics'])) |
238 | 253 | { |
@@ -258,11 +273,12 @@ discard block |
||
258 | 273 | </div>'; |
259 | 274 | |
260 | 275 | // Show a "select all" box for quick moderation? |
261 | - if ($context['showCheckboxes']) |
|
262 | - echo ' |
|
276 | + if ($context['showCheckboxes']) { |
|
277 | + echo ' |
|
263 | 278 | <div class="moderation"> |
264 | 279 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');" class="input_check"> |
265 | 280 | </div>'; |
281 | + } |
|
266 | 282 | |
267 | 283 | echo ' |
268 | 284 | </div> |
@@ -281,15 +297,18 @@ discard block |
||
281 | 297 | // Now we handle the icons |
282 | 298 | echo ' |
283 | 299 | <div class="icons floatright">'; |
284 | - if ($topic['is_locked']) |
|
285 | - echo ' |
|
300 | + if ($topic['is_locked']) { |
|
301 | + echo ' |
|
286 | 302 | <span class="generic_icons lock"></span>'; |
287 | - if ($topic['is_sticky']) |
|
288 | - echo ' |
|
303 | + } |
|
304 | + if ($topic['is_sticky']) { |
|
305 | + echo ' |
|
289 | 306 | <span class="generic_icons sticky"></span>'; |
290 | - if ($topic['is_poll']) |
|
291 | - echo ' |
|
307 | + } |
|
308 | + if ($topic['is_poll']) { |
|
309 | + echo ' |
|
292 | 310 | <span class="generic_icons poll"></span>'; |
311 | + } |
|
293 | 312 | echo ' |
294 | 313 | </div>'; |
295 | 314 | |
@@ -314,11 +333,12 @@ discard block |
||
314 | 333 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
315 | 334 | </div>'; |
316 | 335 | |
317 | - if ($context['showCheckboxes']) |
|
318 | - echo ' |
|
336 | + if ($context['showCheckboxes']) { |
|
337 | + echo ' |
|
319 | 338 | <div class="moderation"> |
320 | 339 | <input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check"> |
321 | 340 | </div>'; |
341 | + } |
|
322 | 342 | echo ' |
323 | 343 | </div>'; |
324 | 344 | } |
@@ -331,24 +351,26 @@ discard block |
||
331 | 351 | ', $context['menu_separator'], '<a href="#recent" class="topbottom floatleft">', $txt['go_up'], '</a> |
332 | 352 | <div class="pagelinks">', $context['page_index'], '</div> |
333 | 353 | </div>'; |
334 | - } |
|
335 | - else |
|
336 | - echo ' |
|
354 | + } else { |
|
355 | + echo ' |
|
337 | 356 | <div class="cat_bar"> |
338 | 357 | <h3 class="catbg centertext"> |
339 | 358 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
340 | 359 | </h3> |
341 | 360 | </div>'; |
361 | + } |
|
342 | 362 | |
343 | - if ($context['showCheckboxes']) |
|
344 | - echo ' |
|
363 | + if ($context['showCheckboxes']) { |
|
364 | + echo ' |
|
345 | 365 | </form>'; |
366 | + } |
|
346 | 367 | |
347 | 368 | echo ' |
348 | 369 | </div>'; |
349 | 370 | |
350 | - if (empty($context['no_topic_listing'])) |
|
351 | - template_topic_legend(); |
|
352 | -} |
|
371 | + if (empty($context['no_topic_listing'])) { |
|
372 | + template_topic_legend(); |
|
373 | + } |
|
374 | + } |
|
353 | 375 | |
354 | 376 | ?> |
355 | 377 | \ No newline at end of file |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | { |
326 | 326 | echo ' |
327 | 327 | <div class="infobox"> |
328 | - ', $txt['report_action_'. $context['report_post_action']], ' |
|
328 | + ', $txt['report_action_' . $context['report_post_action']], ' |
|
329 | 329 | </div>'; |
330 | 330 | } |
331 | 331 | |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | // Cycle through the notes. |
347 | 347 | foreach ($context['notes'] as $note) |
348 | 348 | echo ' |
349 | - <li class="smalltext">', ($note['can_delete'] ? '<a href="'. $note['delete_href'] .';'. $context['mod-modnote-del_token_var'] .'='. $context['mod-modnote-del_token'] .'" data-confirm="'. $txt['mc_reportedp_delete_confirm'] .'" class="you_sure"><span class="generic_icons delete"></span></a>' : ''), $note['time'] ,' <strong>', $note['author']['link'], ':</strong> ', $note['text'], '</li>'; |
|
349 | + <li class="smalltext">', ($note['can_delete'] ? '<a href="' . $note['delete_href'] . ';' . $context['mod-modnote-del_token_var'] . '=' . $context['mod-modnote-del_token'] . '" data-confirm="' . $txt['mc_reportedp_delete_confirm'] . '" class="you_sure"><span class="generic_icons delete"></span></a>' : ''), $note['time'], ' <strong>', $note['author']['link'], ':</strong> ', $note['text'], '</li>'; |
|
350 | 350 | |
351 | 351 | echo ' |
352 | 352 | </ul> |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | |
480 | 480 | if ($post['can_delete']) |
481 | 481 | $output_html .= ' |
482 | - <a href="' . $scripturl . '?action=moderate;area=userwatch;sa=post;delete=' . $post['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" data-confirm="'. $txt['mc_watched_users_delete_post'] . '" class="you_sure">' . $delete_button . '</a> |
|
482 | + <a href="' . $scripturl . '?action=moderate;area=userwatch;sa=post;delete=' . $post['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" data-confirm="' . $txt['mc_watched_users_delete_post'] . '" class="you_sure">' . $delete_button . '</a> |
|
483 | 483 | <input type="checkbox" name="delete[]" value="' . $post['id'] . '" class="input_check">'; |
484 | 484 | |
485 | 485 | $output_html .= ' |
@@ -546,7 +546,7 @@ discard block |
||
546 | 546 | <head> |
547 | 547 | <meta charset="', $context['character_set'], '"> |
548 | 548 | <title>', $context['page_title'], '</title> |
549 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> |
|
549 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> |
|
550 | 550 | </head> |
551 | 551 | <body> |
552 | 552 | <div class="cat_bar"> |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | <div class="errorbox"', empty($context['warning_errors']) ? ' style="display: none"' : '', ' id="errors"> |
591 | 591 | <dl> |
592 | 592 | <dt> |
593 | - <strong id="error_serious">', $txt['error_while_submitting'] , '</strong> |
|
593 | + <strong id="error_serious">', $txt['error_while_submitting'], '</strong> |
|
594 | 594 | </dt> |
595 | 595 | <dd class="error" id="error_list"> |
596 | 596 | ', empty($context['warning_errors']) ? '' : implode('<br>', $context['warning_errors']), ' |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | <div id="box_preview"', !empty($context['template_preview']) ? '' : ' style="display:none"', '> |
601 | 601 | <dl class="settings"> |
602 | 602 | <dt> |
603 | - <strong>', $txt['preview'] , '</strong> |
|
603 | + <strong>', $txt['preview'], '</strong> |
|
604 | 604 | </dt> |
605 | 605 | <dd id="template_preview"> |
606 | 606 | ', !empty($context['template_preview']) ? $context['template_preview'] : '', ' |
@@ -55,18 +55,20 @@ discard block |
||
55 | 55 | <div class="modbox"> |
56 | 56 | <ul>'; |
57 | 57 | |
58 | - foreach ($context['group_requests'] as $request) |
|
59 | - echo ' |
|
58 | + foreach ($context['group_requests'] as $request) { |
|
59 | + echo ' |
|
60 | 60 | <li class="smalltext"> |
61 | 61 | <a href="', $request['request_href'], '">', $request['group']['name'], '</a> ', $txt['mc_groupr_by'], ' ', $request['member']['link'], ' |
62 | 62 | </li>'; |
63 | + } |
|
63 | 64 | |
64 | 65 | // Don't have any watched users right now? |
65 | - if (empty($context['group_requests'])) |
|
66 | - echo ' |
|
66 | + if (empty($context['group_requests'])) { |
|
67 | + echo ' |
|
67 | 68 | <li> |
68 | 69 | <strong class="smalltext">', $txt['mc_group_requests_none'], '</strong> |
69 | 70 | </li>'; |
71 | + } |
|
70 | 72 | |
71 | 73 | echo ' |
72 | 74 | </ul> |
@@ -124,18 +126,20 @@ discard block |
||
124 | 126 | <div class="modbox"> |
125 | 127 | <ul>'; |
126 | 128 | |
127 | - foreach ($context['watched_users'] as $user) |
|
128 | - echo ' |
|
129 | + foreach ($context['watched_users'] as $user) { |
|
130 | + echo ' |
|
129 | 131 | <li> |
130 | 132 | <span class="smalltext">', sprintf(!empty($user['last_login']) ? $txt['mc_seen'] : $txt['mc_seen_never'], $user['link'], $user['last_login']), '</span> |
131 | 133 | </li>'; |
134 | + } |
|
132 | 135 | |
133 | 136 | // Don't have any watched users right now? |
134 | - if (empty($context['watched_users'])) |
|
135 | - echo ' |
|
137 | + if (empty($context['watched_users'])) { |
|
138 | + echo ' |
|
136 | 139 | <li> |
137 | 140 | <strong class="smalltext">', $txt['mc_watched_users_none'], '</strong> |
138 | 141 | </li>'; |
142 | + } |
|
139 | 143 | |
140 | 144 | echo ' |
141 | 145 | </ul> |
@@ -193,18 +197,20 @@ discard block |
||
193 | 197 | <div class="modbox"> |
194 | 198 | <ul>'; |
195 | 199 | |
196 | - foreach ($context['reported_posts'] as $post) |
|
197 | - echo ' |
|
200 | + foreach ($context['reported_posts'] as $post) { |
|
201 | + echo ' |
|
198 | 202 | <li> |
199 | 203 | <span class="smalltext">', sprintf($txt['mc_post_report'], $post['report_link'], $post['author']['link']), '</span> |
200 | 204 | </li>'; |
205 | + } |
|
201 | 206 | |
202 | 207 | // Don't have any watched users right now? |
203 | - if (empty($context['reported_posts'])) |
|
204 | - echo ' |
|
208 | + if (empty($context['reported_posts'])) { |
|
209 | + echo ' |
|
205 | 210 | <li> |
206 | 211 | <strong class="smalltext">', $txt['mc_recent_reports_none'], '</strong> |
207 | 212 | </li>'; |
213 | + } |
|
208 | 214 | |
209 | 215 | echo ' |
210 | 216 | </ul> |
@@ -262,18 +268,20 @@ discard block |
||
262 | 268 | <div class="modbox"> |
263 | 269 | <ul>'; |
264 | 270 | |
265 | - foreach ($context['reported_users'] as $user) |
|
266 | - echo ' |
|
271 | + foreach ($context['reported_users'] as $user) { |
|
272 | + echo ' |
|
267 | 273 | <li> |
268 | 274 | <span class="smalltext">', $user['user']['link'], '</span> |
269 | 275 | </li>'; |
276 | + } |
|
270 | 277 | |
271 | 278 | // Don't have any watched users right now? |
272 | - if (empty($context['reported_users'])) |
|
273 | - echo ' |
|
279 | + if (empty($context['reported_users'])) { |
|
280 | + echo ' |
|
274 | 281 | <li> |
275 | 282 | <strong class="smalltext">', $txt['mc_reported_users_none'], '</strong> |
276 | 283 | </li>'; |
284 | + } |
|
277 | 285 | |
278 | 286 | echo ' |
279 | 287 | </ul> |
@@ -344,9 +352,10 @@ discard block |
||
344 | 352 | <ul class="moderation_notes">'; |
345 | 353 | |
346 | 354 | // Cycle through the notes. |
347 | - foreach ($context['notes'] as $note) |
|
348 | - echo ' |
|
355 | + foreach ($context['notes'] as $note) { |
|
356 | + echo ' |
|
349 | 357 | <li class="smalltext">', ($note['can_delete'] ? '<a href="'. $note['delete_href'] .';'. $context['mod-modnote-del_token_var'] .'='. $context['mod-modnote-del_token'] .'" data-confirm="'. $txt['mc_reportedp_delete_confirm'] .'" class="you_sure"><span class="generic_icons delete"></span></a>' : ''), $note['time'] ,' <strong>', $note['author']['link'], ':</strong> ', $note['text'], '</li>'; |
358 | + } |
|
350 | 359 | |
351 | 360 | echo ' |
352 | 361 | </ul> |
@@ -388,16 +397,17 @@ discard block |
||
388 | 397 | $remove_button = create_button('delete', 'remove_message', 'remove'); |
389 | 398 | |
390 | 399 | // No posts? |
391 | - if (empty($context['unapproved_items'])) |
|
392 | - echo ' |
|
400 | + if (empty($context['unapproved_items'])) { |
|
401 | + echo ' |
|
393 | 402 | <div class="windowbg2"> |
394 | 403 | <p class="centertext">', $txt['mc_unapproved_' . $context['current_view'] . '_none_found'], '</p> |
395 | 404 | </div>'; |
396 | - else |
|
397 | - echo ' |
|
405 | + } else { |
|
406 | + echo ' |
|
398 | 407 | <div class="pagesection floatleft"> |
399 | 408 | ', $context['page_index'], ' |
400 | 409 | </div>'; |
410 | + } |
|
401 | 411 | |
402 | 412 | foreach ($context['unapproved_items'] as $item) |
403 | 413 | { |
@@ -414,14 +424,16 @@ discard block |
||
414 | 424 | <span class="floatright"> |
415 | 425 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', $context['current_view'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';approve=', $item['id'], '">', $approve_button, '</a>'; |
416 | 426 | |
417 | - if ($item['can_delete']) |
|
418 | - echo ' |
|
427 | + if ($item['can_delete']) { |
|
428 | + echo ' |
|
419 | 429 | ', $context['menu_separator'], ' |
420 | 430 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', $context['current_view'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';delete=', $item['id'], '">', $remove_button, '</a>'; |
431 | + } |
|
421 | 432 | |
422 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
423 | - echo ' |
|
433 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
434 | + echo ' |
|
424 | 435 | <input type="checkbox" name="item[]" value="', $item['id'], '" checked class="input_check"> '; |
436 | + } |
|
425 | 437 | |
426 | 438 | echo ' |
427 | 439 | </span> |
@@ -431,8 +443,8 @@ discard block |
||
431 | 443 | echo ' |
432 | 444 | <div class="pagesection">'; |
433 | 445 | |
434 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
435 | - echo ' |
|
446 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
447 | + echo ' |
|
436 | 448 | <div class="floatright"> |
437 | 449 | <select name="do" onchange="if (this.value != 0 && confirm(\'', $txt['mc_unapproved_sure'], '\')) submit();"> |
438 | 450 | <option value="0">', $txt['with_selected'], ':</option> |
@@ -442,12 +454,14 @@ discard block |
||
442 | 454 | </select> |
443 | 455 | <noscript><input type="submit" name="mc_go" value="', $txt['go'], '" class="button_submit"></noscript> |
444 | 456 | </div>'; |
457 | + } |
|
445 | 458 | |
446 | - if (!empty($context['unapproved_items'])) |
|
447 | - echo ' |
|
459 | + if (!empty($context['unapproved_items'])) { |
|
460 | + echo ' |
|
448 | 461 | <div class="floatleft"> |
449 | 462 | <div class="pagelinks">', $context['page_index'], '</div> |
450 | 463 | </div>'; |
464 | + } |
|
451 | 465 | |
452 | 466 | echo ' |
453 | 467 | </div> |
@@ -467,8 +481,9 @@ discard block |
||
467 | 481 | global $scripturl, $context, $txt, $delete_button; |
468 | 482 | |
469 | 483 | // We'll have a delete please bob. |
470 | - if (empty($delete_button)) |
|
471 | - $delete_button = create_button('delete', 'remove_message', 'remove', 'class="centericon"'); |
|
484 | + if (empty($delete_button)) { |
|
485 | + $delete_button = create_button('delete', 'remove_message', 'remove', 'class="centericon"'); |
|
486 | + } |
|
472 | 487 | |
473 | 488 | $output_html = ' |
474 | 489 | <div> |
@@ -477,10 +492,11 @@ discard block |
||
477 | 492 | </div> |
478 | 493 | <div class="floatright">'; |
479 | 494 | |
480 | - if ($post['can_delete']) |
|
481 | - $output_html .= ' |
|
495 | + if ($post['can_delete']) { |
|
496 | + $output_html .= ' |
|
482 | 497 | <a href="' . $scripturl . '?action=moderate;area=userwatch;sa=post;delete=' . $post['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" data-confirm="'. $txt['mc_watched_users_delete_post'] . '" class="you_sure">' . $delete_button . '</a> |
483 | 498 | <input type="checkbox" name="delete[]" value="' . $post['id'] . '" class="input_check">'; |
499 | + } |
|
484 | 500 | |
485 | 501 | $output_html .= ' |
486 | 502 | </div> |
@@ -522,12 +538,12 @@ discard block |
||
522 | 538 | <input type="submit" name="save" value="', $txt['save'], '" class="button_submit"> |
523 | 539 | </div> |
524 | 540 | </form>'; |
525 | - } |
|
526 | - else |
|
527 | - echo ' |
|
541 | + } else { |
|
542 | + echo ' |
|
528 | 543 | <div class="windowbg"> |
529 | 544 | <div class="centertext">', $txt['mc_no_settings'], '</div> |
530 | 545 | </div>'; |
546 | + } |
|
531 | 547 | |
532 | 548 | echo ' |
533 | 549 | </div>'; |
@@ -623,8 +639,8 @@ discard block |
||
623 | 639 | </dd> |
624 | 640 | </dl>'; |
625 | 641 | |
626 | - if ($context['template_data']['can_edit_personal']) |
|
627 | - echo ' |
|
642 | + if ($context['template_data']['can_edit_personal']) { |
|
643 | + echo ' |
|
628 | 644 | <input type="checkbox" name="make_personal" id="make_personal"', $context['template_data']['personal'] ? ' checked' : '', ' class="input_check"> |
629 | 645 | <label for="make_personal"> |
630 | 646 | <strong>', $txt['mc_warning_template_personal'], '</strong> |
@@ -632,6 +648,7 @@ discard block |
||
632 | 648 | <br> |
633 | 649 | <span class="smalltext">', $txt['mc_warning_template_personal_desc'], '</span> |
634 | 650 | <br>'; |
651 | + } |
|
635 | 652 | |
636 | 653 | echo ' |
637 | 654 | <hr> |
@@ -139,10 +139,10 @@ discard block |
||
139 | 139 | foreach ($context['posting_fields'] as $pf) |
140 | 140 | echo ' |
141 | 141 | <dt> |
142 | - ', $pf['dt'] ,' |
|
142 | + ', $pf['dt'], ' |
|
143 | 143 | </dt> |
144 | 144 | <dd> |
145 | - ', $pf['dd'] ,' |
|
145 | + ', $pf['dd'], ' |
|
146 | 146 | </dd>'; |
147 | 147 | |
148 | 148 | |
@@ -459,13 +459,13 @@ discard block |
||
459 | 459 | <p class="message" data-dz-message></p> |
460 | 460 | <p class="attached_BBC"> |
461 | 461 | <input type="text" name="attachBBC" value="" readonly> |
462 | - <a class="button_submit insertBBC">', $txt['attached_insertBBC'] ,'</a> |
|
462 | + <a class="button_submit insertBBC">', $txt['attached_insertBBC'], '</a> |
|
463 | 463 | </p> |
464 | 464 | <p class="progressBar" role="progressBar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><span></span></p> |
465 | 465 | </div> |
466 | 466 | <div class="attach-ui"> |
467 | - <a data-dz-remove class="button_submit delete">', $txt['modify_cancel'] ,'</a> |
|
468 | - <a class="button_submit start">', $txt['upload'] ,'</a> |
|
467 | + <a data-dz-remove class="button_submit delete">', $txt['modify_cancel'], '</a> |
|
468 | + <a class="button_submit start">', $txt['upload'], '</a> |
|
469 | 469 | </div> |
470 | 470 | </div> |
471 | 471 | </div> |
@@ -482,10 +482,10 @@ discard block |
||
482 | 482 | </dt> |
483 | 483 | <dd class="smalltext fallback"> |
484 | 484 | <div id="attachUpload" class="descbox"> |
485 | - <h5>', $txt['attach_drop_zone'] ,'</h5> |
|
486 | - <a class="button_submit" id="attach-cancelAll">', $txt['attached_cancelAll'] ,'</a> |
|
487 | - <a class="button_submit" id="attach-uploadAll">', $txt['attached_uploadAll'] ,'</a> |
|
488 | - <a class="button_submit fileinput-button">', $txt['attach_add'] ,'</a> |
|
485 | + <h5>', $txt['attach_drop_zone'], '</h5> |
|
486 | + <a class="button_submit" id="attach-cancelAll">', $txt['attached_cancelAll'], '</a> |
|
487 | + <a class="button_submit" id="attach-uploadAll">', $txt['attached_uploadAll'], '</a> |
|
488 | + <a class="button_submit fileinput-button">', $txt['attach_add'], '</a> |
|
489 | 489 | <div id="total-progress" class="progressBar" role="progressBar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><span></span></div> |
490 | 490 | <div class="fallback"> |
491 | 491 | <input type="file" multiple="multiple" name="attachment[]" id="attachment1" class="input_file fallback"> (<a href="javascript:void(0);" onclick="cleanFileInput(\'attachment1\');">', $txt['clean_attach'], '</a>) |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | // Option to delete an event if user is editing one. |
593 | 593 | if ($context['make_event'] && !$context['event']['new']) |
594 | 594 | echo ' |
595 | - <input type="submit" name="deleteevent" value="', $txt['event_delete'], '" data-confirm="', $txt['event_delete_confirm'] ,'" class="button_submit you_sure">'; |
|
595 | + <input type="submit" name="deleteevent" value="', $txt['event_delete'], '" data-confirm="', $txt['event_delete_confirm'], '" class="button_submit you_sure">'; |
|
596 | 596 | |
597 | 597 | echo ' |
598 | 598 | </span> |
@@ -846,7 +846,7 @@ discard block |
||
846 | 846 | });'; |
847 | 847 | |
848 | 848 | echo ' |
849 | - var oEditorID = "', $context['post_box_name'] ,'"; |
|
849 | + var oEditorID = "', $context['post_box_name'], '"; |
|
850 | 850 | var oEditorObject = oEditorHandle_', $context['post_box_name'], '; |
851 | 851 | </script>'; |
852 | 852 | |
@@ -878,7 +878,7 @@ discard block |
||
878 | 878 | { |
879 | 879 | echo ' |
880 | 880 | <ul class="quickbuttons" id="msg_', $post['id'], '_quote"> |
881 | - <li style="display:none;" id="quoteSelected_', $post['id'], '" data-msgid="', $post['id'], '"><a href="javascript:void(0)"><span class="generic_icons quote_selected"></span>', $txt['quote_selected_action'] ,'</a></li> |
|
881 | + <li style="display:none;" id="quoteSelected_', $post['id'], '" data-msgid="', $post['id'], '"><a href="javascript:void(0)"><span class="generic_icons quote_selected"></span>', $txt['quote_selected_action'], '</a></li> |
|
882 | 882 | <li id="post_modify"><a href="#postmodify" onclick="return insertQuoteFast(', $post['id'], ');"><span class="generic_icons quote"></span>', $txt['quote'], '</a></li> |
883 | 883 | </ul>'; |
884 | 884 | } |
@@ -965,7 +965,7 @@ discard block |
||
965 | 965 | <head> |
966 | 966 | <meta charset="', $context['character_set'], '"> |
967 | 967 | <title>', $txt['spell_check'], '</title> |
968 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> |
|
968 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> |
|
969 | 969 | <style> |
970 | 970 | body, td |
971 | 971 | { |
@@ -998,8 +998,8 @@ discard block |
||
998 | 998 | var spell_formname = window.opener.spell_formname; |
999 | 999 | var spell_fieldname = window.opener.spell_fieldname; |
1000 | 1000 | </script> |
1001 | - <script src="', $settings['default_theme_url'], '/scripts/spellcheck.js', $modSettings['browser_cache'] ,'"></script> |
|
1002 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> |
|
1001 | + <script src="', $settings['default_theme_url'], '/scripts/spellcheck.js', $modSettings['browser_cache'], '"></script> |
|
1002 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> |
|
1003 | 1003 | <script> |
1004 | 1004 | ', $context['spell_js'], ' |
1005 | 1005 | </script> |
@@ -1041,7 +1041,7 @@ discard block |
||
1041 | 1041 | <head> |
1042 | 1042 | <meta charset="', $context['character_set'], '"> |
1043 | 1043 | <title>', $txt['retrieving_quote'], '</title> |
1044 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> |
|
1044 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> |
|
1045 | 1045 | </head> |
1046 | 1046 | <body> |
1047 | 1047 | ', $txt['retrieving_quote'], ' |
@@ -22,22 +22,24 @@ discard block |
||
22 | 22 | <script>'; |
23 | 23 | |
24 | 24 | // When using Go Back due to fatal_error, allow the form to be re-submitted with changes. |
25 | - if (isBrowser('is_firefox')) |
|
26 | - echo ' |
|
25 | + if (isBrowser('is_firefox')) { |
|
26 | + echo ' |
|
27 | 27 | window.addEventListener("pageshow", reActivate, false);'; |
28 | + } |
|
28 | 29 | |
29 | 30 | // Start with message icons - and any missing from this theme. |
30 | 31 | echo ' |
31 | 32 | var icon_urls = {'; |
32 | - foreach ($context['icons'] as $icon) |
|
33 | - echo ' |
|
33 | + foreach ($context['icons'] as $icon) { |
|
34 | + echo ' |
|
34 | 35 | \'', $icon['value'], '\': \'', $icon['url'], '\'', $icon['is_last'] ? '' : ','; |
36 | + } |
|
35 | 37 | echo ' |
36 | 38 | };'; |
37 | 39 | |
38 | 40 | // If this is a poll - use some javascript to ensure the user doesn't create a poll with illegal option combinations. |
39 | - if ($context['make_poll']) |
|
40 | - echo ' |
|
41 | + if ($context['make_poll']) { |
|
42 | + echo ' |
|
41 | 43 | var pollOptionNum = 0, pollTabIndex; |
42 | 44 | var pollOptionId = ', $context['last_choice_id'], '; |
43 | 45 | function addPollOption() |
@@ -56,11 +58,13 @@ discard block |
||
56 | 58 | |
57 | 59 | setOuterHTML(document.getElementById(\'pollMoreOptions\'), ', JavaScriptEscape('<dt><label for="options-'), ' + pollOptionId + ', JavaScriptEscape('">' . $txt['option'] . ' '), ' + pollOptionNum + ', JavaScriptEscape('</label>:</dt><dd><input type="text" name="options['), ' + pollOptionId + ', JavaScriptEscape(']" id="options-'), ' + pollOptionId + ', JavaScriptEscape('" value="" size="80" maxlength="255" tabindex="'), ' + pollTabIndex + ', JavaScriptEscape('" class="input_text"></dd><p id="pollMoreOptions"></p>'), '); |
58 | 60 | }'; |
61 | + } |
|
59 | 62 | |
60 | 63 | // If we are making a calendar event we want to ensure we show the current days in a month etc... this is done here. |
61 | - if ($context['make_event']) |
|
62 | - echo ' |
|
64 | + if ($context['make_event']) { |
|
65 | + echo ' |
|
63 | 66 | var monthLength = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];'; |
67 | + } |
|
64 | 68 | |
65 | 69 | // End of the javascript, start the form and display the link tree. |
66 | 70 | echo ' |
@@ -80,9 +84,10 @@ discard block |
||
80 | 84 | </div> |
81 | 85 | </div><br>'; |
82 | 86 | |
83 | - if ($context['make_event'] && (!$context['event']['new'] || !empty($context['current_board']))) |
|
84 | - echo ' |
|
87 | + if ($context['make_event'] && (!$context['event']['new'] || !empty($context['current_board']))) { |
|
88 | + echo ' |
|
85 | 89 | <input type="hidden" name="eventid" value="', $context['event']['id'], '">'; |
90 | + } |
|
86 | 91 | |
87 | 92 | // Start the main table. |
88 | 93 | echo ' |
@@ -117,26 +122,28 @@ discard block |
||
117 | 122 | } |
118 | 123 | |
119 | 124 | // If it's locked, show a message to warn the replier. |
120 | - if (!empty($context['locked'])) |
|
121 | - echo ' |
|
125 | + if (!empty($context['locked'])) { |
|
126 | + echo ' |
|
122 | 127 | <p class="errorbox"> |
123 | 128 | ', $txt['topic_locked_no_reply'], ' |
124 | 129 | </p>'; |
130 | + } |
|
125 | 131 | |
126 | - if (!empty($modSettings['drafts_post_enabled'])) |
|
127 | - echo ' |
|
132 | + if (!empty($modSettings['drafts_post_enabled'])) { |
|
133 | + echo ' |
|
128 | 134 | <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>', |
129 | 135 | sprintf($txt['draft_saved'], $scripturl . '?action=profile;u=' . $context['user']['id'] . ';area=showdrafts'), ' |
130 | 136 | ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), ' |
131 | 137 | </div>'; |
138 | + } |
|
132 | 139 | |
133 | 140 | // The post header... important stuff |
134 | 141 | echo ' |
135 | 142 | <dl id="post_header">'; |
136 | 143 | |
137 | 144 | // Custom posting fields. |
138 | - if (!empty($context['posting_fields']) && is_array($context['posting_fields'])) |
|
139 | - foreach ($context['posting_fields'] as $pf) |
|
145 | + if (!empty($context['posting_fields']) && is_array($context['posting_fields'])) { |
|
146 | + foreach ($context['posting_fields'] as $pf) |
|
140 | 147 | echo ' |
141 | 148 | <dt> |
142 | 149 | ', $pf['dt'] ,' |
@@ -144,6 +151,7 @@ discard block |
||
144 | 151 | <dd> |
145 | 152 | ', $pf['dd'] ,' |
146 | 153 | </dd>'; |
154 | + } |
|
147 | 155 | |
148 | 156 | |
149 | 157 | // Guests have to put in their name and email... |
@@ -157,14 +165,15 @@ discard block |
||
157 | 165 | <input type="text" name="guestname" size="25" value="', $context['name'], '" tabindex="', $context['tabindex']++, '" class="input_text"> |
158 | 166 | </dd>'; |
159 | 167 | |
160 | - if (empty($modSettings['guest_post_no_email'])) |
|
161 | - echo ' |
|
168 | + if (empty($modSettings['guest_post_no_email'])) { |
|
169 | + echo ' |
|
162 | 170 | <dt> |
163 | 171 | <span', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? ' class="error"' : '', ' id="caption_email">', $txt['email'], ':</span> |
164 | 172 | </dt> |
165 | 173 | <dd> |
166 | 174 | <input type="email" name="email" size="25" value="', $context['email'], '" tabindex="', $context['tabindex']++, '" class="input_text" required> |
167 | 175 | </dd>'; |
176 | + } |
|
168 | 177 | } |
169 | 178 | |
170 | 179 | // Now show the subject box for this post. |
@@ -182,9 +191,10 @@ discard block |
||
182 | 191 | <select name="icon" id="icon" onchange="showimage()">'; |
183 | 192 | |
184 | 193 | // Loop through each message icon allowed, adding it to the drop down list. |
185 | - foreach ($context['icons'] as $icon) |
|
186 | - echo ' |
|
194 | + foreach ($context['icons'] as $icon) { |
|
195 | + echo ' |
|
187 | 196 | <option value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' selected' : '', '>', $icon['name'], '</option>'; |
197 | + } |
|
188 | 198 | |
189 | 199 | echo ' |
190 | 200 | </select> |
@@ -206,9 +216,10 @@ discard block |
||
206 | 216 | <select name="year" id="year" tabindex="', $context['tabindex']++, '" onchange="generateDays();">'; |
207 | 217 | |
208 | 218 | // Show a list of all the years we allow... |
209 | - for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++) |
|
210 | - echo ' |
|
219 | + for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++) { |
|
220 | + echo ' |
|
211 | 221 | <option value="', $year, '"', $year == $context['event']['year'] ? ' selected' : '', '>', $year, ' </option>'; |
222 | + } |
|
212 | 223 | |
213 | 224 | echo ' |
214 | 225 | </select> |
@@ -216,9 +227,10 @@ discard block |
||
216 | 227 | <select name="month" id="month" onchange="generateDays();">'; |
217 | 228 | |
218 | 229 | // There are 12 months per year - ensure that they all get listed. |
219 | - for ($month = 1; $month <= 12; $month++) |
|
220 | - echo ' |
|
230 | + for ($month = 1; $month <= 12; $month++) { |
|
231 | + echo ' |
|
221 | 232 | <option value="', $month, '"', $month == $context['event']['month'] ? ' selected' : '', '>', $txt['months'][$month], ' </option>'; |
233 | + } |
|
222 | 234 | |
223 | 235 | echo ' |
224 | 236 | </select> |
@@ -226,9 +238,10 @@ discard block |
||
226 | 238 | <select name="day" id="day">'; |
227 | 239 | |
228 | 240 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
229 | - for ($day = 1; $day <= $context['event']['last_day']; $day++) |
|
230 | - echo ' |
|
241 | + for ($day = 1; $day <= $context['event']['last_day']; $day++) { |
|
242 | + echo ' |
|
231 | 243 | <option value="', $day, '"', $day == $context['event']['day'] ? ' selected' : '', '>', $day, ' </option>'; |
244 | + } |
|
232 | 245 | |
233 | 246 | echo ' |
234 | 247 | </select> |
@@ -251,9 +264,10 @@ discard block |
||
251 | 264 | ', $txt['calendar_numb_days'], ' |
252 | 265 | <select name="span">'; |
253 | 266 | |
254 | - for ($days = 1; $days <= $modSettings['cal_maxspan']; $days++) |
|
255 | - echo ' |
|
267 | + for ($days = 1; $days <= $modSettings['cal_maxspan']; $days++) { |
|
268 | + echo ' |
|
256 | 269 | <option value="', $days, '"', $days == $context['event']['span'] ? ' selected' : '', '>', $days, ' </option>'; |
270 | + } |
|
257 | 271 | |
258 | 272 | echo ' |
259 | 273 | </select> |
@@ -271,9 +285,10 @@ discard block |
||
271 | 285 | { |
272 | 286 | echo ' |
273 | 287 | <optgroup label="', $category['name'], '">'; |
274 | - foreach ($category['boards'] as $board) |
|
275 | - echo ' |
|
288 | + foreach ($category['boards'] as $board) { |
|
289 | + echo ' |
|
276 | 290 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=>' : '', ' ', $board['name'], ' </option>'; |
291 | + } |
|
277 | 292 | echo ' |
278 | 293 | </optgroup>'; |
279 | 294 | } |
@@ -344,14 +359,15 @@ discard block |
||
344 | 359 | <input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check"> |
345 | 360 | </dd>'; |
346 | 361 | |
347 | - if ($context['poll_options']['guest_vote_enabled']) |
|
348 | - echo ' |
|
362 | + if ($context['poll_options']['guest_vote_enabled']) { |
|
363 | + echo ' |
|
349 | 364 | <dt> |
350 | 365 | <label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label> |
351 | 366 | </dt> |
352 | 367 | <dd> |
353 | 368 | <input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll_options']['guest_vote']) ? ' checked' : '', ' class="input_check"> |
354 | 369 | </dd>'; |
370 | + } |
|
355 | 371 | |
356 | 372 | echo ' |
357 | 373 | <dt> |
@@ -372,8 +388,8 @@ discard block |
||
372 | 388 | ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message'); |
373 | 389 | |
374 | 390 | // If we're editing and displaying edit details, show a box where they can say why |
375 | - if (isset($context['editing']) && $modSettings['show_modify']) |
|
376 | - echo ' |
|
391 | + if (isset($context['editing']) && $modSettings['show_modify']) { |
|
392 | + echo ' |
|
377 | 393 | <dl> |
378 | 394 | <dt class="clear"> |
379 | 395 | <span id="caption_edit_reason">', $txt['reason_for_edit'], ':</span> |
@@ -382,20 +398,23 @@ discard block |
||
382 | 398 | <input type="text" name="modify_reason"', isset($context['last_modified_reason']) ? ' value="' . $context['last_modified_reason'] . '"' : '', ' tabindex="', $context['tabindex']++, '" size="80" maxlength="80" class="input_text"> |
383 | 399 | </dd> |
384 | 400 | </dl>'; |
401 | + } |
|
385 | 402 | |
386 | 403 | // If this message has been edited in the past - display when it was. |
387 | - if (isset($context['last_modified'])) |
|
388 | - echo ' |
|
404 | + if (isset($context['last_modified'])) { |
|
405 | + echo ' |
|
389 | 406 | <div class="padding smalltext"> |
390 | 407 | ', $context['last_modified_text'], ' |
391 | 408 | </div>'; |
409 | + } |
|
392 | 410 | |
393 | 411 | // If the admin has enabled the hiding of the additional options - show a link and image for it. |
394 | - if (!empty($modSettings['additional_options_collapsable'])) |
|
395 | - echo ' |
|
412 | + if (!empty($modSettings['additional_options_collapsable'])) { |
|
413 | + echo ' |
|
396 | 414 | <div id="postAdditionalOptionsHeader"> |
397 | 415 | <strong><a href="#" id="postMoreExpandLink"> ', $context['can_post_attachment'] ? $txt['post_additionalopt_attach'] : $txt['post_additionalopt'], '</a></strong> |
398 | 416 | </div>'; |
417 | + } |
|
399 | 418 | |
400 | 419 | echo ' |
401 | 420 | <div id="postAdditionalOptions">'; |
@@ -427,19 +446,21 @@ discard block |
||
427 | 446 | <input type="hidden" name="attach_del[]" value="0"> |
428 | 447 | ', $txt['uncheck_unwatchd_attach'], ': |
429 | 448 | </dd>'; |
430 | - foreach ($context['current_attachments'] as $attachment) |
|
431 | - echo ' |
|
449 | + foreach ($context['current_attachments'] as $attachment) { |
|
450 | + echo ' |
|
432 | 451 | <dd class="smalltext"> |
433 | 452 | <label for="attachment_', $attachment['attachID'], '"><input type="checkbox" id="attachment_', $attachment['attachID'], '" name="attach_del[]" value="', $attachment['attachID'], '"', empty($attachment['unchecked']) ? ' checked' : '', ' class="input_check"> ', $attachment['name'], (empty($attachment['approved']) ? ' (' . $txt['awaiting_approval'] . ')' : ''), |
434 | 453 | !empty($modSettings['attachmentPostLimit']) || !empty($modSettings['attachmentSizeLimit']) ? sprintf($txt['attach_kb'], comma_format(round(max($attachment['size'], 1028) / 1028), 0)) : '', '</label> |
435 | 454 | </dd>'; |
455 | + } |
|
436 | 456 | |
437 | 457 | echo ' |
438 | 458 | </dl>'; |
439 | 459 | |
440 | - if (!empty($context['files_in_session_warning'])) |
|
441 | - echo ' |
|
460 | + if (!empty($context['files_in_session_warning'])) { |
|
461 | + echo ' |
|
442 | 462 | <div class="smalltext">', $context['files_in_session_warning'], '</div>'; |
463 | + } |
|
443 | 464 | } |
444 | 465 | |
445 | 466 | // Is the user allowed to post any additional ones? If so give them the boxes to do it! |
@@ -492,8 +513,8 @@ discard block |
||
492 | 513 | ', empty($modSettings['attachmentSizeLimit']) ? '' : ('<input type="hidden" name="MAX_FILE_SIZE" value="' . $modSettings['attachmentSizeLimit'] * 1028 . '">'); |
493 | 514 | |
494 | 515 | // Show more boxes if they aren't approaching that limit. |
495 | - if ($context['num_allowed_attachments'] > 1) |
|
496 | - echo ' |
|
516 | + if ($context['num_allowed_attachments'] > 1) { |
|
517 | + echo ' |
|
497 | 518 | <script> |
498 | 519 | var allowed_attachments = ', $context['num_allowed_attachments'], '; |
499 | 520 | var current_attachment = 1; |
@@ -514,9 +535,10 @@ discard block |
||
514 | 535 | </div> |
515 | 536 | </div> |
516 | 537 | </dd>'; |
517 | - else |
|
518 | - echo ' |
|
538 | + } else { |
|
539 | + echo ' |
|
519 | 540 | </dd>'; |
541 | + } |
|
520 | 542 | |
521 | 543 | // Add any template changes for an alternative upload system here. |
522 | 544 | call_integration_hook('integrate_upload_template'); |
@@ -525,21 +547,25 @@ discard block |
||
525 | 547 | <dd class="smalltext">'; |
526 | 548 | |
527 | 549 | // Show some useful information such as allowed extensions, maximum size and amount of attachments allowed. |
528 | - if (!empty($modSettings['attachmentCheckExtensions'])) |
|
529 | - echo ' |
|
550 | + if (!empty($modSettings['attachmentCheckExtensions'])) { |
|
551 | + echo ' |
|
530 | 552 | ', $txt['allowed_types'], ': ', $context['allowed_extensions'], '<br>'; |
553 | + } |
|
531 | 554 | |
532 | - if (!empty($context['attachment_restrictions'])) |
|
533 | - echo ' |
|
555 | + if (!empty($context['attachment_restrictions'])) { |
|
556 | + echo ' |
|
534 | 557 | ', $txt['attach_restrictions'], ' ', implode(', ', $context['attachment_restrictions']), '<br>'; |
558 | + } |
|
535 | 559 | |
536 | - if ($context['num_allowed_attachments'] == 0) |
|
537 | - echo ' |
|
560 | + if ($context['num_allowed_attachments'] == 0) { |
|
561 | + echo ' |
|
538 | 562 | ', $txt['attach_limit_nag'], '<br>'; |
563 | + } |
|
539 | 564 | |
540 | - if (!$context['can_post_attachment_unapproved']) |
|
541 | - echo ' |
|
565 | + if (!$context['can_post_attachment_unapproved']) { |
|
566 | + echo ' |
|
542 | 567 | <span class="alert">', $txt['attachment_requires_approval'], '</span>', '<br>'; |
568 | + } |
|
543 | 569 | |
544 | 570 | echo ' |
545 | 571 | </dd> |
@@ -562,10 +588,11 @@ discard block |
||
562 | 588 | <dt><strong>', $txt['subject'], '</strong></dt> |
563 | 589 | <dd><strong>', $txt['draft_saved_on'], '</strong></dd>'; |
564 | 590 | |
565 | - foreach ($context['drafts'] as $draft) |
|
566 | - echo ' |
|
591 | + foreach ($context['drafts'] as $draft) { |
|
592 | + echo ' |
|
567 | 593 | <dt>', $draft['link'], '</dt> |
568 | 594 | <dd>', $draft['poster_time'], '</dd>'; |
595 | + } |
|
569 | 596 | echo ' |
570 | 597 | </dl> |
571 | 598 | </div>'; |
@@ -590,9 +617,10 @@ discard block |
||
590 | 617 | ', template_control_richedit_buttons($context['post_box_name']); |
591 | 618 | |
592 | 619 | // Option to delete an event if user is editing one. |
593 | - if ($context['make_event'] && !$context['event']['new']) |
|
594 | - echo ' |
|
620 | + if ($context['make_event'] && !$context['event']['new']) { |
|
621 | + echo ' |
|
595 | 622 | <input type="submit" name="deleteevent" value="', $txt['event_delete'], '" data-confirm="', $txt['event_delete_confirm'] ,'" class="button_submit you_sure">'; |
623 | + } |
|
596 | 624 | |
597 | 625 | echo ' |
598 | 626 | </span> |
@@ -601,9 +629,10 @@ discard block |
||
601 | 629 | <br class="clear">'; |
602 | 630 | |
603 | 631 | // Assuming this isn't a new topic pass across the last message id. |
604 | - if (isset($context['topic_last_message'])) |
|
605 | - echo ' |
|
632 | + if (isset($context['topic_last_message'])) { |
|
633 | + echo ' |
|
606 | 634 | <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '">'; |
635 | + } |
|
607 | 636 | |
608 | 637 | echo ' |
609 | 638 | <input type="hidden" name="additional_options" id="additional_options" value="', $context['show_additional_options'] ? '1' : '0', '"> |
@@ -745,9 +774,10 @@ discard block |
||
745 | 774 | |
746 | 775 | newPostsHTML += \'<div class="windowbg\' + (++reply_counter % 2 == 0 ? \'2\' : \'\') + \'"><div id="msg\' + newPosts[i].getAttribute("id") + \'"><div class="floatleft"><h5>', $txt['posted_by'], ': \' + newPosts[i].getElementsByTagName("poster")[0].firstChild.nodeValue + \'</h5><span class="smalltext">« <strong>', $txt['on'], ':</strong> \' + newPosts[i].getElementsByTagName("time")[0].firstChild.nodeValue + \' »</span> <span class="new_posts" id="image_new_\' + newPosts[i].getAttribute("id") + \'">', $txt['new'], '</span></div>\';'; |
747 | 776 | |
748 | - if ($context['can_quote']) |
|
749 | - echo ' |
|
777 | + if ($context['can_quote']) { |
|
778 | + echo ' |
|
750 | 779 | newPostsHTML += \'<ul class="quickbuttons" id="msg_\' + newPosts[i].getAttribute("id") + \'_quote"><li><a href="#postmodify" onclick="return insertQuoteFast(\\\'\' + newPosts[i].getAttribute("id") + \'\\\');" class="quote_button"><span>', $txt['quote'], '</span><\' + \'/a></li></ul>\';'; |
780 | + } |
|
751 | 781 | |
752 | 782 | echo ' |
753 | 783 | newPostsHTML += \'<br class="clear">\'; |
@@ -790,8 +820,8 @@ discard block |
||
790 | 820 | }'; |
791 | 821 | |
792 | 822 | // Code for showing and hiding additional options. |
793 | - if (!empty($modSettings['additional_options_collapsable'])) |
|
794 | - echo ' |
|
823 | + if (!empty($modSettings['additional_options_collapsable'])) { |
|
824 | + echo ' |
|
795 | 825 | var oSwapAdditionalOptions = new smc_Toggle({ |
796 | 826 | bToggleEnabled: true, |
797 | 827 | bCurrentlyCollapsed: ', $context['show_additional_options'] ? 'false' : 'true', ', |
@@ -819,10 +849,11 @@ discard block |
||
819 | 849 | } |
820 | 850 | ] |
821 | 851 | });'; |
852 | + } |
|
822 | 853 | |
823 | 854 | // Code for showing and hiding drafts |
824 | - if (!empty($context['drafts'])) |
|
825 | - echo ' |
|
855 | + if (!empty($context['drafts'])) { |
|
856 | + echo ' |
|
826 | 857 | var oSwapDraftOptions = new smc_Toggle({ |
827 | 858 | bToggleEnabled: true, |
828 | 859 | bCurrentlyCollapsed: true, |
@@ -844,6 +875,7 @@ discard block |
||
844 | 875 | } |
845 | 876 | ] |
846 | 877 | });'; |
878 | + } |
|
847 | 879 | |
848 | 880 | echo ' |
849 | 881 | var oEditorID = "', $context['post_box_name'] ,'"; |
@@ -864,8 +896,9 @@ discard block |
||
864 | 896 | foreach ($context['previous_posts'] as $post) |
865 | 897 | { |
866 | 898 | $ignoring = false; |
867 | - if (!empty($post['is_ignored'])) |
|
868 | - $ignored_posts[] = $ignoring = $post['id']; |
|
899 | + if (!empty($post['is_ignored'])) { |
|
900 | + $ignored_posts[] = $ignoring = $post['id']; |
|
901 | + } |
|
869 | 902 | |
870 | 903 | echo ' |
871 | 904 | <div class="windowbg"> |
@@ -1048,10 +1081,10 @@ discard block |
||
1048 | 1081 | <div id="temporary_posting_area" style="display: none;"></div> |
1049 | 1082 | <script>'; |
1050 | 1083 | |
1051 | - if ($context['close_window']) |
|
1052 | - echo ' |
|
1084 | + if ($context['close_window']) { |
|
1085 | + echo ' |
|
1053 | 1086 | window.close();'; |
1054 | - else |
|
1087 | + } else |
|
1055 | 1088 | { |
1056 | 1089 | // Lucky for us, Internet Explorer has an "innerText" feature which basically converts entities <--> text. Use it if possible ;). |
1057 | 1090 | echo ' |
@@ -1105,11 +1138,12 @@ discard block |
||
1105 | 1138 | </p> |
1106 | 1139 | <ul>'; |
1107 | 1140 | |
1108 | - foreach ($context['groups'] as $group) |
|
1109 | - echo ' |
|
1141 | + foreach ($context['groups'] as $group) { |
|
1142 | + echo ' |
|
1110 | 1143 | <li> |
1111 | 1144 | <label for="who_', $group['id'], '"><input type="checkbox" name="who[', $group['id'], ']" id="who_', $group['id'], '" value="', $group['id'], '" checked class="input_check"> ', $group['name'], '</label> <em>(', $group['member_count'], ')</em> |
1112 | 1145 | </li>'; |
1146 | + } |
|
1113 | 1147 | |
1114 | 1148 | echo ' |
1115 | 1149 | <li> |