Completed
Pull Request — release-2.1 (#4921)
by Rick
08:55
created
Themes/default/Profile.template.php 1 patch
Braces   +551 added lines, -413 removed lines patch added patch discarded remove patch
@@ -18,23 +18,25 @@  discard block
 block discarded – undo
18 18
 	global $context;
19 19
 
20 20
 	// Prevent Chrome from auto completing fields when viewing/editing other members profiles
21
-	if (isBrowser('is_chrome') && !$context['user']['is_owner'])
22
-		echo '
21
+	if (isBrowser('is_chrome') && !$context['user']['is_owner']) {
22
+			echo '
23 23
 			<script>
24 24
 				disableAutoComplete();
25 25
 			</script>';
26
+	}
26 27
 
27 28
 	// If an error occurred while trying to save previously, give the user a clue!
28 29
 	echo '
29 30
 			', template_error_message();
30 31
 
31 32
 	// If the profile was update successfully, let the user know this.
32
-	if (!empty($context['profile_updated']))
33
-		echo '
33
+	if (!empty($context['profile_updated'])) {
34
+			echo '
34 35
 			<div class="infobox">
35 36
 				', $context['profile_updated'], '
36 37
 			</div>';
37
-}
38
+	}
39
+	}
38 40
 
39 41
 /**
40 42
  * Template for any HTML needed below the profile (closing off divs/tables, etc.)
@@ -99,19 +101,19 @@  discard block
 block discarded – undo
99 101
 		</div>
100 102
 		<div class="alerts_unread">';
101 103
 
102
-	if (empty($context['unread_alerts']))
103
-		template_alerts_all_read();
104
-
105
-	else
104
+	if (empty($context['unread_alerts'])) {
105
+			template_alerts_all_read();
106
+	} else
106 107
 	{
107
-		foreach ($context['unread_alerts'] as $id_alert => $details)
108
-			echo '
108
+		foreach ($context['unread_alerts'] as $id_alert => $details) {
109
+					echo '
109 110
 			<div class="unread">
110 111
 				', !empty($details['sender']) ? $details['sender']['avatar']['image'] : '', '
111 112
 				<div class="details">
112 113
 					', !empty($details['icon']) ? $details['icon'] : '', '<span>', $details['text'], '</span> - ', $details['time'], '
113 114
 				</div>
114 115
 			</div>';
116
+		}
115 117
 	}
116 118
 
117 119
 	echo '
@@ -158,37 +160,41 @@  discard block
 block discarded – undo
158 160
 	if (!empty($context['print_custom_fields']['above_member']))
159 161
 	{
160 162
 		$fields = '';
161
-		foreach ($context['print_custom_fields']['above_member'] as $field)
162
-			if (!empty($field['output_html']))
163
+		foreach ($context['print_custom_fields']['above_member'] as $field) {
164
+					if (!empty($field['output_html']))
163 165
 				$fields .= '
164 166
 					<li>' . $field['output_html'] . '</li>';
167
+		}
165 168
 
166
-		if (!empty($fields))
167
-			echo '
169
+		if (!empty($fields)) {
170
+					echo '
168 171
 			<div class="custom_fields_above_name">
169 172
 				<ul>', $fields, '
170 173
 				</ul>
171 174
 			</div>';
175
+		}
172 176
 	}
173 177
 
174 178
 	echo '
175 179
 			<div class="username clear">
176 180
 				<h4>';
177 181
 
178
-	if (!empty($context['print_custom_fields']['before_member']))
179
-		foreach ($context['print_custom_fields']['before_member'] as $field)
182
+	if (!empty($context['print_custom_fields']['before_member'])) {
183
+			foreach ($context['print_custom_fields']['before_member'] as $field)
180 184
 			if (!empty($field['output_html']))
181 185
 				echo '
182 186
 					<span>', $field['output_html'], '</span>';
187
+	}
183 188
 
184 189
 	echo '
185 190
 					', $context['member']['name'];
186 191
 
187
-	if (!empty($context['print_custom_fields']['after_member']))
188
-		foreach ($context['print_custom_fields']['after_member'] as $field)
192
+	if (!empty($context['print_custom_fields']['after_member'])) {
193
+			foreach ($context['print_custom_fields']['after_member'] as $field)
189 194
 			if (!empty($field['output_html']))
190 195
 				echo '
191 196
 					<span>', $field['output_html'], '</span>';
197
+	}
192 198
 
193 199
 
194 200
 	echo '
@@ -201,39 +207,44 @@  discard block
 block discarded – undo
201 207
 	if (!empty($context['print_custom_fields']['below_avatar']))
202 208
 	{
203 209
 		$fields = '';
204
-		foreach ($context['print_custom_fields']['below_avatar'] as $field)
205
-			if (!empty($field['output_html']))
210
+		foreach ($context['print_custom_fields']['below_avatar'] as $field) {
211
+					if (!empty($field['output_html']))
206 212
 				$fields .= '
207 213
 					<li>' . $field['output_html'] . '</li>';
214
+		}
208 215
 
209
-		if (!empty($fields))
210
-			echo '
216
+		if (!empty($fields)) {
217
+					echo '
211 218
 			<div class="custom_fields_below_avatar">
212 219
 				<ul>', $fields, '
213 220
 				</ul>
214 221
 			</div>';
222
+		}
215 223
 	}
216 224
 
217 225
 	echo '
218 226
 			<ul class="icon_fields clear">';
219 227
 
220 228
 	// Email is only visible if it's your profile or you have the moderate_forum permission
221
-	if ($context['member']['show_email'])
222
-		echo '
229
+	if ($context['member']['show_email']) {
230
+			echo '
223 231
 				<li><a href="mailto:', $context['member']['email'], '" title="', $context['member']['email'], '" rel="nofollow"><span class="generic_icons mail" title="' . $txt['email'] . '"></span></a></li>';
232
+	}
224 233
 
225 234
 	// Don't show an icon if they haven't specified a website.
226
-	if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website']))
227
-		echo '
235
+	if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) {
236
+			echo '
228 237
 				<li><a href="', $context['member']['website']['url'], '" title="' . $context['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www" title="' . $context['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';
238
+	}
229 239
 
230 240
 	// Are there any custom profile fields as icons?
231 241
 	if (!empty($context['print_custom_fields']['icons']))
232 242
 	{
233
-		foreach ($context['print_custom_fields']['icons'] as $field)
234
-			if (!empty($field['output_html']))
243
+		foreach ($context['print_custom_fields']['icons'] as $field) {
244
+					if (!empty($field['output_html']))
235 245
 				echo '
236 246
 				<li class="custom_field">', $field['output_html'], '</li>';
247
+		}
237 248
 	}
238 249
 
239 250
 	echo '
@@ -242,24 +253,27 @@  discard block
 block discarded – undo
242 253
 				', $context['can_send_pm'] ? '<a href="' . $context['member']['online']['href'] . '" title="' . $context['member']['online']['text'] . '" rel="nofollow">' : '', $settings['use_image_buttons'] ? '<span class="' . ($context['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $context['member']['online']['text'] . '"></span>' : $context['member']['online']['label'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $context['member']['online']['label'] . '</span>' : '';
243 254
 
244 255
 	// Can they add this member as a buddy?
245
-	if (!empty($context['can_have_buddy']) && !$context['user']['is_owner'])
246
-		echo '
256
+	if (!empty($context['can_have_buddy']) && !$context['user']['is_owner']) {
257
+			echo '
247 258
 				<br>
248 259
 				<a href="', $scripturl, '?action=buddy;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['buddy_' . ($context['member']['is_buddy'] ? 'remove' : 'add')], '</a>';
260
+	}
249 261
 
250 262
 	echo '
251 263
 			</span>';
252 264
 
253
-	if (!$context['user']['is_owner'] && $context['can_send_pm'])
254
-		echo '
265
+	if (!$context['user']['is_owner'] && $context['can_send_pm']) {
266
+			echo '
255 267
 			<a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], '" class="infolinks">', $txt['profile_sendpm_short'], '</a>';
268
+	}
256 269
 
257 270
 	echo '
258 271
 			<a href="', $scripturl, '?action=profile;area=showposts;u=', $context['id_member'], '" class="infolinks">', $txt['showPosts'], '</a>';
259 272
 
260
-	if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled']))
261
-		echo '
273
+	if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled'])) {
274
+			echo '
262 275
 			<a href="', $scripturl, '?action=profile;area=showdrafts;u=', $context['id_member'], '" class="infolinks">', $txt['drafts_show'], '</a>';
276
+	}
263 277
 
264 278
 	echo '
265 279
 			<a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '" class="infolinks">', $txt['statPanel'], '</a>';
@@ -268,17 +282,19 @@  discard block
 block discarded – undo
268 282
 	if (!empty($context['print_custom_fields']['bottom_poster']))
269 283
 	{
270 284
 		$fields = '';
271
-		foreach ($context['print_custom_fields']['bottom_poster'] as $field)
272
-			if (!empty($field['output_html']))
285
+		foreach ($context['print_custom_fields']['bottom_poster'] as $field) {
286
+					if (!empty($field['output_html']))
273 287
 				$fields .= '
274 288
 					<li>' . $field['output_html'] . '</li>';
289
+		}
275 290
 
276
-		if (!empty($fields))
277
-			echo '
291
+		if (!empty($fields)) {
292
+					echo '
278 293
 			<div class="custom_fields_bottom">
279 294
 				<ul class="nolist">', $fields, '
280 295
 				</ul>
281 296
 			</div>';
297
+		}
282 298
 	}
283 299
 
284 300
 	echo '
@@ -287,30 +303,35 @@  discard block
 block discarded – undo
287 303
 		<div id="detailedinfo">
288 304
 			<dl class="settings">';
289 305
 
290
-	if ($context['user']['is_owner'] || $context['user']['is_admin'])
291
-		echo '
306
+	if ($context['user']['is_owner'] || $context['user']['is_admin']) {
307
+			echo '
292 308
 				<dt>', $txt['username'], ': </dt>
293 309
 				<dd>', $context['member']['username'], '</dd>';
310
+	}
294 311
 
295
-	if (!isset($context['disabled_fields']['posts']))
296
-		echo '
312
+	if (!isset($context['disabled_fields']['posts'])) {
313
+			echo '
297 314
 				<dt>', $txt['profile_posts'], ': </dt>
298 315
 				<dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>';
316
+	}
299 317
 
300
-	if ($context['member']['show_email'])
301
-		echo '
318
+	if ($context['member']['show_email']) {
319
+			echo '
302 320
 				<dt>', $txt['email'], ': </dt>
303 321
 				<dd><a href="mailto:', $context['member']['email'], '">', $context['member']['email'], '</a></dd>';
322
+	}
304 323
 
305
-	if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title']))
306
-		echo '
324
+	if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) {
325
+			echo '
307 326
 				<dt>', $txt['custom_title'], ': </dt>
308 327
 				<dd>', $context['member']['title'], '</dd>';
328
+	}
309 329
 
310
-	if (!empty($context['member']['blurb']))
311
-		echo '
330
+	if (!empty($context['member']['blurb'])) {
331
+			echo '
312 332
 				<dt>', $txt['personal_text'], ': </dt>
313 333
 				<dd>', $context['member']['blurb'], '</dd>';
334
+	}
314 335
 
315 336
 	echo '
316 337
 				<dt>', $txt['age'], ':</dt>
@@ -324,19 +345,21 @@  discard block
 block discarded – undo
324 345
 	{
325 346
 		$fields = array();
326 347
 
327
-		foreach ($context['print_custom_fields']['standard'] as $field)
328
-			if (!empty($field['output_html']))
348
+		foreach ($context['print_custom_fields']['standard'] as $field) {
349
+					if (!empty($field['output_html']))
329 350
 				$fields[] = $field;
351
+		}
330 352
 
331 353
 		if (count($fields) > 0)
332 354
 		{
333 355
 			echo '
334 356
 			<dl class="settings">';
335 357
 
336
-			foreach ($fields as $field)
337
-				echo '
358
+			foreach ($fields as $field) {
359
+							echo '
338 360
 				<dt>', $field['name'], ':</dt>
339 361
 				<dd>', $field['output_html'], '</dd>';
362
+			}
340 363
 
341 364
 			echo '
342 365
 			</dl>';
@@ -355,9 +378,10 @@  discard block
 block discarded – undo
355 378
 					<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=', ($context['can_issue_warning'] && !$context['user']['is_owner'] ? 'issuewarning' : 'viewwarning'), '">', $context['member']['warning'], '%</a>';
356 379
 
357 380
 		// Can we provide information on what this means?
358
-		if (!empty($context['warning_status']))
359
-			echo '
381
+		if (!empty($context['warning_status'])) {
382
+					echo '
360 383
 					<span class="smalltext">(', $context['warning_status'], ')</span>';
384
+		}
361 385
 
362 386
 		echo '
363 387
 				</dd>';
@@ -367,11 +391,12 @@  discard block
 block discarded – undo
367 391
 	if (!empty($context['activate_message']) || !empty($context['member']['bans']))
368 392
 	{
369 393
 		// If the person looking at the summary has permission, and the account isn't activated, give the viewer the ability to do it themselves.
370
-		if (!empty($context['activate_message']))
371
-			echo '
394
+		if (!empty($context['activate_message'])) {
395
+					echo '
372 396
 				<dt class="clear">
373 397
 					<span class="alert">', $context['activate_message'], '</span> (<a href="', $context['activate_link'], '"', ($context['activate_type'] == 4 ? ' class="you_sure" data-confirm="' . $txt['profileConfirm'] . '"' : ''), '>', $context['activate_link_text'], '</a>)
374 398
 				</dt>';
399
+		}
375 400
 
376 401
 		// If the current member is banned, show a message and possibly a link to the ban.
377 402
 		if (!empty($context['member']['bans']))
@@ -383,10 +408,11 @@  discard block
 block discarded – undo
383 408
 				<dt class="clear" id="ban_info" style="display: none;">
384 409
 					<strong>', $txt['user_banned_by_following'], ':</strong>';
385 410
 
386
-			foreach ($context['member']['bans'] as $ban)
387
-				echo '
411
+			foreach ($context['member']['bans'] as $ban) {
412
+							echo '
388 413
 					<br>
389 414
 					<span class="smalltext">', $ban['explanation'], '</span>';
415
+			}
390 416
 
391 417
 			echo '
392 418
 				</dt>';
@@ -400,30 +426,34 @@  discard block
 block discarded – undo
400 426
 	// If the person looking is allowed, they can check the members IP address and hostname.
401 427
 	if ($context['can_see_ip'])
402 428
 	{
403
-		if (!empty($context['member']['ip']))
404
-		echo '
429
+		if (!empty($context['member']['ip'])) {
430
+				echo '
405 431
 				<dt>', $txt['ip'], ': </dt>
406 432
 				<dd><a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['member']['ip'], ';u=', $context['member']['id'], '">', $context['member']['ip'], '</a></dd>';
433
+		}
407 434
 
408
-		if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip']))
409
-			echo '
435
+		if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip'])) {
436
+					echo '
410 437
 				<dt>', $txt['hostname'], ': </dt>
411 438
 				<dd>', $context['member']['hostname'], '</dd>';
439
+		}
412 440
 	}
413 441
 
414 442
 	echo '
415 443
 				<dt>', $txt['local_time'], ':</dt>
416 444
 				<dd>', $context['member']['local_time'], '</dd>';
417 445
 
418
-	if (!empty($modSettings['userLanguage']) && !empty($context['member']['language']))
419
-		echo '
446
+	if (!empty($modSettings['userLanguage']) && !empty($context['member']['language'])) {
447
+			echo '
420 448
 				<dt>', $txt['language'], ':</dt>
421 449
 				<dd>', $context['member']['language'], '</dd>';
450
+	}
422 451
 
423
-	if ($context['member']['show_last_login'])
424
-		echo '
452
+	if ($context['member']['show_last_login']) {
453
+			echo '
425 454
 				<dt>', $txt['lastLoggedIn'], ': </dt>
426 455
 				<dd>', $context['member']['last_login'], (!empty($context['member']['is_hidden']) ? ' (' . $txt['hidden'] . ')' : ''), '</dd>';
456
+	}
427 457
 
428 458
 	echo '
429 459
 			</dl>';
@@ -432,42 +462,47 @@  discard block
 block discarded – undo
432 462
 	if (!empty($context['print_custom_fields']['above_signature']))
433 463
 	{
434 464
 		$fields = '';
435
-		foreach ($context['print_custom_fields']['above_signature'] as $field)
436
-			if (!empty($field['output_html']))
465
+		foreach ($context['print_custom_fields']['above_signature'] as $field) {
466
+					if (!empty($field['output_html']))
437 467
 				$fields .= '
438 468
 					<li>' . $field['output_html'] . '</li>';
469
+		}
439 470
 
440
-		if (!empty($fields))
441
-			echo '
471
+		if (!empty($fields)) {
472
+					echo '
442 473
 			<div class="custom_fields_above_signature">
443 474
 				<ul class="nolist">', $fields, '
444 475
 				</ul>
445 476
 			</div>';
477
+		}
446 478
 	}
447 479
 
448 480
 	// Show the users signature.
449
-	if ($context['signature_enabled'] && !empty($context['member']['signature']))
450
-		echo '
481
+	if ($context['signature_enabled'] && !empty($context['member']['signature'])) {
482
+			echo '
451 483
 			<div class="signature">
452 484
 				<h5>', $txt['signature'], ':</h5>
453 485
 				', $context['member']['signature'], '
454 486
 			</div>';
487
+	}
455 488
 
456 489
 	// Are there any custom profile fields for below the signature?
457 490
 	if (!empty($context['print_custom_fields']['below_signature']))
458 491
 	{
459 492
 		$fields = '';
460
-		foreach ($context['print_custom_fields']['below_signature'] as $field)
461
-			if (!empty($field['output_html']))
493
+		foreach ($context['print_custom_fields']['below_signature'] as $field) {
494
+					if (!empty($field['output_html']))
462 495
 				$fields .=  '
463 496
 					<li>' . $field['output_html'] . '</li>';
497
+		}
464 498
 
465
-		if (!empty($fields))
466
-			echo '
499
+		if (!empty($fields)) {
500
+					echo '
467 501
 			<div class="custom_fields_below_signature">
468 502
 				<ul class="nolist">', $fields, '
469 503
 				</ul>
470 504
 			</div>';
505
+		}
471 506
 	}
472 507
 
473 508
 	echo '
@@ -509,62 +544,70 @@  discard block
 block discarded – undo
509 544
 			</div>
510 545
 			<div class="list_posts">';
511 546
 
512
-			if (!$post['approved'])
513
-				echo '
547
+			if (!$post['approved']) {
548
+							echo '
514 549
 				<div class="approve_post">
515 550
 					<em>', $txt['post_awaiting_approval'], '</em>
516 551
 				</div>';
552
+			}
517 553
 
518 554
 			echo '
519 555
 				', $post['body'], '
520 556
 			</div>';
521 557
 
522
-			if ($post['can_reply'] || $post['can_quote'] || $post['can_delete'])
523
-				echo '
558
+			if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) {
559
+							echo '
524 560
 			<div class="floatright">
525 561
 				<ul class="quickbuttons">';
562
+			}
526 563
 
527 564
 			// If they *can* reply?
528
-			if ($post['can_reply'])
529
-				echo '
565
+			if ($post['can_reply']) {
566
+							echo '
530 567
 					<li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>';
568
+			}
531 569
 
532 570
 			// If they *can* quote?
533
-			if ($post['can_quote'])
534
-				echo '
571
+			if ($post['can_quote']) {
572
+							echo '
535 573
 					<li><a href="', $scripturl . '?action=post;topic=', $post['topic'], '.', $post['start'], ';quote=', $post['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>';
574
+			}
536 575
 
537 576
 			// How about... even... remove it entirely?!
538
-			if ($post['can_delete'])
539
-				echo '
577
+			if ($post['can_delete']) {
578
+							echo '
540 579
 					<li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';profile;u=', $context['member']['id'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['remove_message'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['remove'], '</a></li>';
580
+			}
541 581
 
542
-			if ($post['can_reply'] || $post['can_quote'] || $post['can_delete'])
543
-				echo '
582
+			if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) {
583
+							echo '
544 584
 				</ul>
545 585
 			</div><!-- .floatright -->';
586
+			}
546 587
 
547 588
 			echo '
548 589
 		</div><!-- $post[css_class] -->';
549 590
 		}
591
+	} else {
592
+			template_show_list('attachments');
550 593
 	}
551
-	else
552
-		template_show_list('attachments');
553 594
 
554 595
 	// No posts? Just end with a informative message.
555
-	if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts'])))
556
-		echo '
596
+	if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts']))) {
597
+			echo '
557 598
 		<div class="windowbg">
558 599
 			', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), '
559 600
 		</div>';
601
+	}
560 602
 
561 603
 	// Show more page numbers.
562
-	if (!empty($context['page_index']))
563
-		echo '
604
+	if (!empty($context['page_index'])) {
605
+			echo '
564 606
 		<div class="pagesection">
565 607
 			<div class="pagelinks">', $context['page_index'], '</div>
566 608
 		</div>';
567
-}
609
+	}
610
+	}
568 611
 
569 612
 /**
570 613
  * Template for showing alerts within the alerts popup
@@ -574,11 +617,12 @@  discard block
 block discarded – undo
574 617
 	global $context, $txt, $scripturl;
575 618
 
576 619
 	// Do we have an update message?
577
-	if (!empty($context['update_message']))
578
-		echo '
620
+	if (!empty($context['update_message'])) {
621
+			echo '
579 622
 		<div class="infobox">
580 623
 			', $context['update_message'], '
581 624
 		</div>';
625
+	}
582 626
 
583 627
 	echo '
584 628
 		<div class="cat_bar">
@@ -587,18 +631,18 @@  discard block
 block discarded – undo
587 631
 			</h3>
588 632
 		</div>';
589 633
 
590
-	if (empty($context['alerts']))
591
-		echo '
634
+	if (empty($context['alerts'])) {
635
+			echo '
592 636
 		<div class="information">
593 637
 			', $txt['alerts_none'], '
594 638
 		</div>';
595
-
596
-	else
639
+	} else
597 640
 	{
598 641
 		// Start the form if checkboxes are in use
599
-		if ($context['showCheckboxes'])
600
-			echo '
642
+		if ($context['showCheckboxes']) {
643
+					echo '
601 644
 		<form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;save" method="post" accept-charset="', $context['character_set'], '" id="mark_all">';
645
+		}
602 646
 
603 647
 		echo '
604 648
 			<table id="alerts" class="table_grid">';
@@ -614,9 +658,10 @@  discard block
 block discarded – undo
614 658
 							<li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=remove;aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['delete'], '</a></li>
615 659
 							<li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=', ($alert['is_read'] != 0 ? 'unread' : 'read'), ';aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons ', $alert['is_read'] != 0 ? 'unread_button' : 'read_button', '"></span>', ($alert['is_read'] != 0 ? $txt['mark_unread'] : $txt['mark_read_short']), '</a></li>';
616 660
 
617
-					if ($context['showCheckboxes'])
618
-						echo '
661
+					if ($context['showCheckboxes']) {
662
+											echo '
619 663
 							<li><input type="checkbox" name="mark[', $id, ']" value="', $id, '"></li>';
664
+					}
620 665
 
621 666
 			echo '
622 667
 						</ul>
@@ -631,8 +676,8 @@  discard block
 block discarded – undo
631 676
 					', $context['pagination'], '
632 677
 				</div>';
633 678
 
634
-		if ($context['showCheckboxes'])
635
-			echo '
679
+		if ($context['showCheckboxes']) {
680
+					echo '
636 681
 				<div class="floatright">
637 682
 					', $txt['check_all'], ': <input type="checkbox" name="select_all" id="select_all">
638 683
 					<select name="mark_as">
@@ -643,14 +688,16 @@  discard block
 block discarded – undo
643 688
 					<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
644 689
 					<input type="submit" name="req" value="', $txt['quick_mod_go'], '" class="button you_sure">
645 690
 				</div>';
691
+		}
646 692
 
647 693
 	echo '
648 694
 			</div>';
649 695
 
650
-	if ($context['showCheckboxes'])
651
-		echo '
696
+	if ($context['showCheckboxes']) {
697
+			echo '
652 698
 		</form>';
653 699
 	}
700
+	}
654 701
 }
655 702
 
656 703
 /**
@@ -671,12 +718,12 @@  discard block
 block discarded – undo
671 718
 		</div>' : '';
672 719
 
673 720
 	// No drafts? Just show an informative message.
674
-	if (empty($context['drafts']))
675
-		echo '
721
+	if (empty($context['drafts'])) {
722
+			echo '
676 723
 		<div class="windowbg centertext">
677 724
 			', $txt['draft_none'], '
678 725
 		</div>';
679
-	else
726
+	} else
680 727
 	{
681 728
 		// For every draft to be displayed, give it its own div, and show the important details of the draft.
682 729
 		foreach ($context['drafts'] as $draft)
@@ -688,13 +735,15 @@  discard block
 block discarded – undo
688 735
 				<h5>
689 736
 					<strong><a href="', $scripturl, '?board=', $draft['board']['id'], '.0">', $draft['board']['name'], '</a> / ', $draft['topic']['link'], '</strong> &nbsp; &nbsp;';
690 737
 
691
-			if (!empty($draft['sticky']))
692
-				echo '
738
+			if (!empty($draft['sticky'])) {
739
+							echo '
693 740
 					<span class="generic_icons sticky" title="', $txt['sticky_topic'], '"></span>';
741
+			}
694 742
 
695
-			if (!empty($draft['locked']))
696
-				echo '
743
+			if (!empty($draft['locked'])) {
744
+							echo '
697 745
 					<span class="generic_icons lock" title="', $txt['locked_topic'], '"></span>';
746
+			}
698 747
 
699 748
 			echo '
700 749
 				</h5>
@@ -727,13 +776,13 @@  discard block
 block discarded – undo
727 776
 {
728 777
 	global $context, $scripturl, $txt;
729 778
 
730
-	if (!empty($context['saved_successful']))
731
-		echo '
779
+	if (!empty($context['saved_successful'])) {
780
+			echo '
732 781
 	<div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
733
-
734
-	elseif (!empty($context['saved_failed']))
735
-		echo '
782
+	} elseif (!empty($context['saved_failed'])) {
783
+			echo '
736 784
 	<div class="errorbox">', $context['saved_failed'], '</div>';
785
+	}
737 786
 
738 787
 	echo '
739 788
 	<div id="edit_buddies">
@@ -748,14 +797,16 @@  discard block
 block discarded – undo
748 797
 					<th scope="col" class="quarter_table">', $txt['name'], '</th>
749 798
 					<th scope="col">', $txt['status'], '</th>';
750 799
 
751
-	if ($context['can_moderate_forum'])
752
-		echo '
800
+	if ($context['can_moderate_forum']) {
801
+			echo '
753 802
 					<th scope="col">', $txt['email'], '</th>';
803
+	}
754 804
 
755
-	if (!empty($context['custom_pf']))
756
-		foreach ($context['custom_pf'] as $column)
805
+	if (!empty($context['custom_pf'])) {
806
+			foreach ($context['custom_pf'] as $column)
757 807
 				echo '
758 808
 					<th scope="col">', $column['label'], '</th>';
809
+	}
759 810
 
760 811
 	echo '
761 812
 					<th scope="col">', $txt['remove'], '</th>
@@ -764,13 +815,14 @@  discard block
 block discarded – undo
764 815
 			<tbody>';
765 816
 
766 817
 	// If they don't have any buddies don't list them!
767
-	if (empty($context['buddies']))
768
-		echo '
818
+	if (empty($context['buddies'])) {
819
+			echo '
769 820
 				<tr class="windowbg">
770 821
 					<td colspan="', $context['can_moderate_forum'] ? '10' : '9', '">
771 822
 						<strong>', $txt['no_buddies'], '</strong>
772 823
 					</td>
773 824
 				</tr>';
825
+	}
774 826
 
775 827
 		// Now loop through each buddy showing info on each.
776 828
 	else
@@ -784,17 +836,19 @@  discard block
 block discarded – undo
784 836
 						<a href="', $buddy['online']['href'], '"><span class="' . ($buddy['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $buddy['online']['text'] . '"></span></a>
785 837
 					</td>';
786 838
 
787
-			if ($buddy['show_email'])
788
-				echo '
839
+			if ($buddy['show_email']) {
840
+							echo '
789 841
 					<td>
790 842
 						<a href="mailto:' . $buddy['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a>
791 843
 					</td>';
844
+			}
792 845
 
793 846
 			// Show the custom profile fields for this user.
794
-			if (!empty($context['custom_pf']))
795
-				foreach ($context['custom_pf'] as $key => $column)
847
+			if (!empty($context['custom_pf'])) {
848
+							foreach ($context['custom_pf'] as $key => $column)
796 849
 					echo '
797 850
 					<td class="lefttext">', $buddy['options'][$key], '</td>';
851
+			}
798 852
 
799 853
 			echo '
800 854
 					<td>
@@ -827,9 +881,10 @@  discard block
 block discarded – undo
827 881
 			</dl>
828 882
 		</div>';
829 883
 
830
-	if (!empty($context['token_check']))
831
-		echo '
884
+	if (!empty($context['token_check'])) {
885
+			echo '
832 886
 		<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
887
+	}
833 888
 
834 889
 	echo '
835 890
 		<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -855,13 +910,13 @@  discard block
 block discarded – undo
855 910
 {
856 911
 	global $context, $scripturl, $txt;
857 912
 
858
-	if (!empty($context['saved_successful']))
859
-		echo '
913
+	if (!empty($context['saved_successful'])) {
914
+			echo '
860 915
 	<div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
861
-
862
-	elseif (!empty($context['saved_failed']))
863
-		echo '
916
+	} elseif (!empty($context['saved_failed'])) {
917
+			echo '
864 918
 	<div class="errorbox">', $context['saved_failed'], '</div>';
919
+	}
865 920
 
866 921
 	echo '
867 922
 	<div id="edit_buddies">
@@ -876,9 +931,10 @@  discard block
 block discarded – undo
876 931
 					<th scope="col" class="quarter_table">', $txt['name'], '</th>
877 932
 					<th scope="col">', $txt['status'], '</th>';
878 933
 
879
-	if ($context['can_moderate_forum'])
880
-		echo '
934
+	if ($context['can_moderate_forum']) {
935
+			echo '
881 936
 					<th scope="col">', $txt['email'], '</th>';
937
+	}
882 938
 
883 939
 	echo '
884 940
 					<th scope="col">', $txt['ignore_remove'], '</th>
@@ -887,13 +943,14 @@  discard block
 block discarded – undo
887 943
 			<tbody>';
888 944
 
889 945
 	// If they don't have anyone on their ignore list, don't list it!
890
-	if (empty($context['ignore_list']))
891
-		echo '
946
+	if (empty($context['ignore_list'])) {
947
+			echo '
892 948
 				<tr class="windowbg">
893 949
 					<td colspan="', $context['can_moderate_forum'] ? '4' : '3', '">
894 950
 						<strong>', $txt['no_ignore'], '</strong>
895 951
 					</td>
896 952
 				</tr>';
953
+	}
897 954
 
898 955
 	// Now loop through each buddy showing info on each.
899 956
 	foreach ($context['ignore_list'] as $member)
@@ -905,11 +962,12 @@  discard block
 block discarded – undo
905 962
 						<a href="', $member['online']['href'], '"><span class="' . ($member['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $member['online']['text'] . '"></span></a>
906 963
 					</td>';
907 964
 
908
-		if ($context['can_moderate_forum'])
909
-			echo '
965
+		if ($context['can_moderate_forum']) {
966
+					echo '
910 967
 					<td>
911 968
 						<a href="mailto:' . $member['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $member['name'] . '"></span></a>
912 969
 					</td>';
970
+		}
913 971
 		echo '
914 972
 					<td>
915 973
 						<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore;remove=', $member['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['ignore_remove'], '"></span></a>
@@ -940,9 +998,10 @@  discard block
 block discarded – undo
940 998
 			</dl>
941 999
 		</div>';
942 1000
 
943
-	if (!empty($context['token_check']))
944
-		echo '
1001
+	if (!empty($context['token_check'])) {
1002
+			echo '
945 1003
 		<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
1004
+	}
946 1005
 
947 1006
 	echo '
948 1007
 		<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -987,9 +1046,10 @@  discard block
 block discarded – undo
987 1046
 					<a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>';
988 1047
 
989 1048
 	// Second address detected?
990
-	if (!empty($context['last_ip2']))
991
-		echo '
1049
+	if (!empty($context['last_ip2'])) {
1050
+			echo '
992 1051
 					, <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>';
1052
+	}
993 1053
 
994 1054
 	echo '
995 1055
 				</dd>';
@@ -1055,9 +1115,10 @@  discard block
 block discarded – undo
1055 1115
 		</div>
1056 1116
 		<div class="windowbg">';
1057 1117
 
1058
-		foreach ($context['whois_servers'] as $server)
1059
-			echo '
1118
+		foreach ($context['whois_servers'] as $server) {
1119
+					echo '
1060 1120
 			<a href="', $server['url'], '" target="_blank" rel="noopener"', '>', $server['name'], '</a><br>';
1121
+		}
1061 1122
 		echo '
1062 1123
 		</div>
1063 1124
 		<br>';
@@ -1069,13 +1130,12 @@  discard block
 block discarded – undo
1069 1130
 			<h3 class="catbg">', $txt['members_from_ip'], ' ', $context['ip'], '</h3>
1070 1131
 		</div>';
1071 1132
 
1072
-	if (empty($context['ips']))
1073
-		echo '
1133
+	if (empty($context['ips'])) {
1134
+			echo '
1074 1135
 		<p class="windowbg description">
1075 1136
 			<em>', $txt['no_members_from_ip'], '</em>
1076 1137
 		</p>';
1077
-
1078
-	else
1138
+	} else
1079 1139
 	{
1080 1140
 		echo '
1081 1141
 		<table class="table_grid">
@@ -1088,12 +1148,13 @@  discard block
 block discarded – undo
1088 1148
 			<tbody>';
1089 1149
 
1090 1150
 		// Loop through each of the members and display them.
1091
-		foreach ($context['ips'] as $ip => $memberlist)
1092
-			echo '
1151
+		foreach ($context['ips'] as $ip => $memberlist) {
1152
+					echo '
1093 1153
 				<tr class="windowbg">
1094 1154
 					<td><a href="', $context['base_url'], ';searchip=', $ip, '">', $ip, '</a></td>
1095 1155
 					<td>', implode(', ', $memberlist), '</td>
1096 1156
 				</tr>';
1157
+		}
1097 1158
 
1098 1159
 		echo '
1099 1160
 			</tbody>
@@ -1135,11 +1196,10 @@  discard block
 block discarded – undo
1135 1196
 			</h3>
1136 1197
 		</div>';
1137 1198
 
1138
-	if ($context['member']['has_all_permissions'])
1139
-		echo '
1199
+	if ($context['member']['has_all_permissions']) {
1200
+			echo '
1140 1201
 		<div class="information">', $txt['showPermissions_all'], '</div>';
1141
-
1142
-	else
1202
+	} else
1143 1203
 	{
1144 1204
 		echo '
1145 1205
 		<div class="information">',$txt['showPermissions_help'], '</div>
@@ -1154,9 +1214,10 @@  discard block
 block discarded – undo
1154 1214
 			<div class="windowbg smalltext">
1155 1215
 				', $txt['showPermissions_restricted_boards_desc'], ':<br>';
1156 1216
 
1157
-			foreach ($context['no_access_boards'] as $no_access_board)
1158
-				echo '
1217
+			foreach ($context['no_access_boards'] as $no_access_board) {
1218
+							echo '
1159 1219
 				<a href="', $scripturl, '?board=', $no_access_board['id'], '.0">', $no_access_board['name'], '</a>', $no_access_board['is_last'] ? '' : ', ';
1220
+			}
1160 1221
 			echo '
1161 1222
 			</div>';
1162 1223
 		}
@@ -1188,12 +1249,13 @@  discard block
 block discarded – undo
1188 1249
 							</td>
1189 1250
 							<td class="smalltext">';
1190 1251
 
1191
-				if ($permission['is_denied'])
1192
-					echo '
1252
+				if ($permission['is_denied']) {
1253
+									echo '
1193 1254
 								<span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>';
1194
-				else
1195
-					echo '
1255
+				} else {
1256
+									echo '
1196 1257
 								', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']);
1258
+				}
1197 1259
 
1198 1260
 				echo '
1199 1261
 							</td>
@@ -1204,10 +1266,10 @@  discard block
 block discarded – undo
1204 1266
 				</table>
1205 1267
 			</div><!-- .tborder -->
1206 1268
 			<br>';
1207
-		}
1208
-		else
1209
-			echo '
1269
+		} else {
1270
+					echo '
1210 1271
 			<p class="windowbg">', $txt['showPermissions_none_general'], '</p>';
1272
+		}
1211 1273
 
1212 1274
 		// Board permission section.
1213 1275
 		echo '
@@ -1218,14 +1280,16 @@  discard block
 block discarded – undo
1218 1280
 						<select name="board" onchange="if (this.options[this.selectedIndex].value) this.form.submit();">
1219 1281
 							<option value="0"', $context['board'] == 0 ? ' selected' : '', '>', $txt['showPermissions_global'], '</option>';
1220 1282
 
1221
-		if (!empty($context['boards']))
1222
-			echo '
1283
+		if (!empty($context['boards'])) {
1284
+					echo '
1223 1285
 							<option value="" disabled>---------------------------</option>';
1286
+		}
1224 1287
 
1225 1288
 		// Fill the box with any local permission boards.
1226
-		foreach ($context['boards'] as $board)
1227
-			echo '
1289
+		foreach ($context['boards'] as $board) {
1290
+					echo '
1228 1291
 							<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['name'], ' (', $board['profile_name'], ')</option>';
1292
+		}
1229 1293
 
1230 1294
 		echo '
1231 1295
 						</select>
@@ -1254,13 +1318,13 @@  discard block
 block discarded – undo
1254 1318
 						</td>
1255 1319
 						<td class="smalltext">';
1256 1320
 
1257
-				if ($permission['is_denied'])
1258
-					echo '
1321
+				if ($permission['is_denied']) {
1322
+									echo '
1259 1323
 							<span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>';
1260
-
1261
-				else
1262
-					echo '
1324
+				} else {
1325
+									echo '
1263 1326
 							', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']);
1327
+				}
1264 1328
 
1265 1329
 				echo '
1266 1330
 						</td>
@@ -1269,10 +1333,10 @@  discard block
 block discarded – undo
1269 1333
 			echo '
1270 1334
 				</tbody>
1271 1335
 			</table>';
1272
-		}
1273
-		else
1274
-			echo '
1336
+		} else {
1337
+					echo '
1275 1338
 			<p class="windowbg">', $txt['showPermissions_none_board'], '</p>';
1339
+		}
1276 1340
 	echo '
1277 1341
 		</div><!-- #permissions -->';
1278 1342
 	}
@@ -1296,12 +1360,13 @@  discard block
 block discarded – undo
1296 1360
 		echo '
1297 1361
 				<dt>', $txt['statPanel_' . $key], '</dt>';
1298 1362
 
1299
-		if (!empty($stat['url']))
1300
-			echo '
1363
+		if (!empty($stat['url'])) {
1364
+					echo '
1301 1365
 				<dd><a href="', $stat['url'], '">', $stat['text'], '</a></dd>';
1302
-		else
1303
-			echo '
1366
+		} else {
1367
+					echo '
1304 1368
 				<dd>', $stat['text'], '</dd>';
1369
+		}
1305 1370
 	}
1306 1371
 
1307 1372
 	echo '
@@ -1318,9 +1383,10 @@  discard block
 block discarded – undo
1318 1383
 			</div>';
1319 1384
 
1320 1385
 	// If they haven't post at all, don't draw the graph.
1321
-	if (empty($context['posts_by_time']))
1322
-		echo '
1386
+	if (empty($context['posts_by_time'])) {
1387
+			echo '
1323 1388
 			<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1389
+	}
1324 1390
 
1325 1391
 	// Otherwise do!
1326 1392
 	else
@@ -1329,8 +1395,8 @@  discard block
 block discarded – undo
1329 1395
 			<ul class="activity_stats flow_hidden">';
1330 1396
 
1331 1397
 		// The labels.
1332
-		foreach ($context['posts_by_time'] as $time_of_day)
1333
-			echo '
1398
+		foreach ($context['posts_by_time'] as $time_of_day) {
1399
+					echo '
1334 1400
 				<li>
1335 1401
 					<div class="generic_bar vertical">
1336 1402
 						<div class="bar" style="height: ', (int) $time_of_day['relative_percent'], '%;">
@@ -1339,6 +1405,7 @@  discard block
 block discarded – undo
1339 1405
 					</div>
1340 1406
 					<span class="stats_hour">', $time_of_day['hour_format'], '</span>
1341 1407
 				</li>';
1408
+		}
1342 1409
 
1343 1410
 		echo '
1344 1411
 			</ul>';
@@ -1357,11 +1424,10 @@  discard block
 block discarded – undo
1357 1424
 					</h3>
1358 1425
 				</div>';
1359 1426
 
1360
-	if (empty($context['popular_boards']))
1361
-		echo '
1427
+	if (empty($context['popular_boards'])) {
1428
+			echo '
1362 1429
 				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1363
-
1364
-	else
1430
+	} else
1365 1431
 	{
1366 1432
 		echo '
1367 1433
 				<dl class="stats">';
@@ -1391,10 +1457,10 @@  discard block
 block discarded – undo
1391 1457
 					</h3>
1392 1458
 				</div>';
1393 1459
 
1394
-	if (empty($context['board_activity']))
1395
-		echo '
1460
+	if (empty($context['board_activity'])) {
1461
+			echo '
1396 1462
 				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1397
-	else
1463
+	} else
1398 1464
 	{
1399 1465
 		echo '
1400 1466
 				<dl class="stats">';
@@ -1445,90 +1511,97 @@  discard block
 block discarded – undo
1445 1511
 				<h3 class="catbg profile_hd">';
1446 1512
 
1447 1513
 		// Don't say "Profile" if this isn't the profile...
1448
-		if (!empty($context['profile_header_text']))
1449
-			echo '
1514
+		if (!empty($context['profile_header_text'])) {
1515
+					echo '
1450 1516
 					', $context['profile_header_text'];
1451
-		else
1452
-			echo '
1517
+		} else {
1518
+					echo '
1453 1519
 					', $txt['profile'];
1520
+		}
1454 1521
 
1455 1522
 		echo '
1456 1523
 				</h3>
1457 1524
 			</div>';
1458 1525
 
1459 1526
 	// Have we some description?
1460
-	if ($context['page_desc'])
1461
-		echo '
1527
+	if ($context['page_desc']) {
1528
+			echo '
1462 1529
 			<p class="information">', $context['page_desc'], '</p>';
1530
+	}
1463 1531
 
1464 1532
 	echo '
1465 1533
 			<div class="roundframe">';
1466 1534
 
1467 1535
 	// Any bits at the start?
1468
-	if (!empty($context['profile_prehtml']))
1469
-		echo '
1536
+	if (!empty($context['profile_prehtml'])) {
1537
+			echo '
1470 1538
 				<div>', $context['profile_prehtml'], '</div>';
1539
+	}
1471 1540
 
1472
-	if (!empty($context['profile_fields']))
1473
-		echo '
1541
+	if (!empty($context['profile_fields'])) {
1542
+			echo '
1474 1543
 				<dl class="settings">';
1544
+	}
1475 1545
 
1476 1546
 	// Start the big old loop 'of love.
1477 1547
 	$lastItem = 'hr';
1478 1548
 	foreach ($context['profile_fields'] as $key => $field)
1479 1549
 	{
1480 1550
 		// We add a little hack to be sure we never get more than one hr in a row!
1481
-		if ($lastItem == 'hr' && $field['type'] == 'hr')
1482
-			continue;
1551
+		if ($lastItem == 'hr' && $field['type'] == 'hr') {
1552
+					continue;
1553
+		}
1483 1554
 
1484 1555
 		$lastItem = $field['type'];
1485
-		if ($field['type'] == 'hr')
1486
-			echo '
1556
+		if ($field['type'] == 'hr') {
1557
+					echo '
1487 1558
 				</dl>
1488 1559
 				<hr>
1489 1560
 				<dl class="settings">';
1490
-
1491
-		elseif ($field['type'] == 'callback')
1561
+		} elseif ($field['type'] == 'callback')
1492 1562
 		{
1493 1563
 			if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func']))
1494 1564
 			{
1495 1565
 				$callback_func = 'template_profile_' . $field['callback_func'];
1496 1566
 				$callback_func();
1497 1567
 			}
1498
-		}
1499
-		else
1568
+		} else
1500 1569
 		{
1501 1570
 			echo '
1502 1571
 					<dt>
1503 1572
 						<strong', !empty($field['is_error']) ? ' class="error"' : '', '>', $field['type'] !== 'label' ? '<label for="' . $key . '">' : '', $field['label'], $field['type'] !== 'label' ? '</label>' : '', '</strong>';
1504 1573
 
1505 1574
 			// Does it have any subtext to show?
1506
-			if (!empty($field['subtext']))
1507
-				echo '
1575
+			if (!empty($field['subtext'])) {
1576
+							echo '
1508 1577
 						<br>
1509 1578
 						<span class="smalltext">', $field['subtext'], '</span>';
1579
+			}
1510 1580
 
1511 1581
 			echo '
1512 1582
 					</dt>
1513 1583
 					<dd>';
1514 1584
 
1515 1585
 			// Want to put something infront of the box?
1516
-			if (!empty($field['preinput']))
1517
-				echo '
1586
+			if (!empty($field['preinput'])) {
1587
+							echo '
1518 1588
 						', $field['preinput'];
1589
+			}
1519 1590
 
1520 1591
 			// What type of data are we showing?
1521
-			if ($field['type'] == 'label')
1522
-				echo '
1592
+			if ($field['type'] == 'label') {
1593
+							echo '
1523 1594
 						', $field['value'];
1595
+			}
1524 1596
 
1525 1597
 			// Maybe it's a text box - very likely!
1526 1598
 			elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'number', 'time', 'url')))
1527 1599
 			{
1528
-				if ($field['type'] == 'int' || $field['type'] == 'float')
1529
-					$type = 'number';
1530
-				else
1531
-					$type = $field['type'];
1600
+				if ($field['type'] == 'int' || $field['type'] == 'float') {
1601
+									$type = 'number';
1602
+				} else {
1603
+									$type = $field['type'];
1604
+				}
1532 1605
 				$step = $field['type'] == 'float' ? ' step="0.1"' : '';
1533 1606
 
1534 1607
 
@@ -1536,10 +1609,11 @@  discard block
 block discarded – undo
1536 1609
 						<input type="', $type, '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" ', $field['input_attr'], ' ', $step, '>';
1537 1610
 			}
1538 1611
 			// You "checking" me out? ;)
1539
-			elseif ($field['type'] == 'check')
1540
-				echo '
1612
+			elseif ($field['type'] == 'check') {
1613
+							echo '
1541 1614
 						<input type="hidden" name="', $key, '" value="0">
1542 1615
 						<input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" ', $field['input_attr'], '>';
1616
+			}
1543 1617
 
1544 1618
 			// Always fun - select boxes!
1545 1619
 			elseif ($field['type'] == 'select')
@@ -1550,14 +1624,16 @@  discard block
 block discarded – undo
1550 1624
 				if (isset($field['options']))
1551 1625
 				{
1552 1626
 					// Is this some code to generate the options?
1553
-					if (!is_array($field['options']))
1554
-						$field['options'] = $field['options']();
1627
+					if (!is_array($field['options'])) {
1628
+											$field['options'] = $field['options']();
1629
+					}
1555 1630
 
1556 1631
 					// Assuming we now have some!
1557
-					if (is_array($field['options']))
1558
-						foreach ($field['options'] as $value => $name)
1632
+					if (is_array($field['options'])) {
1633
+											foreach ($field['options'] as $value => $name)
1559 1634
 							echo '
1560 1635
 							<option', is_numeric($value) ? ' value="" disabled' : ' value="' . $value . '"', $value === $field['value'] ? ' selected' : '', '>', $name, '</option>';
1636
+					}
1561 1637
 				}
1562 1638
 
1563 1639
 				echo '
@@ -1565,31 +1641,34 @@  discard block
 block discarded – undo
1565 1641
 			}
1566 1642
 
1567 1643
 			// Something to end with?
1568
-			if (!empty($field['postinput']))
1569
-				echo '
1644
+			if (!empty($field['postinput'])) {
1645
+							echo '
1570 1646
 						', $field['postinput'];
1647
+			}
1571 1648
 
1572 1649
 			echo '
1573 1650
 					</dd>';
1574 1651
 		}
1575 1652
 	}
1576 1653
 
1577
-	if (!empty($context['profile_fields']))
1578
-		echo '
1654
+	if (!empty($context['profile_fields'])) {
1655
+			echo '
1579 1656
 				</dl>';
1657
+	}
1580 1658
 
1581 1659
 	// Are there any custom profile fields - if so print them!
1582 1660
 	if (!empty($context['custom_fields']))
1583 1661
 	{
1584
-		if ($lastItem != 'hr')
1585
-			echo '
1662
+		if ($lastItem != 'hr') {
1663
+					echo '
1586 1664
 				<hr>';
1665
+		}
1587 1666
 
1588 1667
 		echo '
1589 1668
 				<dl class="settings">';
1590 1669
 
1591
-		foreach ($context['custom_fields'] as $field)
1592
-			echo '
1670
+		foreach ($context['custom_fields'] as $field) {
1671
+					echo '
1593 1672
 					<dt>
1594 1673
 						<strong>', $field['name'], ': </strong><br>
1595 1674
 						<span class="smalltext">', $field['desc'], '</span>
@@ -1597,19 +1676,21 @@  discard block
 block discarded – undo
1597 1676
 					<dd>
1598 1677
 						', $field['input_html'], '
1599 1678
 					</dd>';
1679
+		}
1600 1680
 
1601 1681
 		echo '
1602 1682
 				</dl>';
1603 1683
 	}
1604 1684
 
1605 1685
 	// Any closing HTML?
1606
-	if (!empty($context['profile_posthtml']))
1607
-		echo '
1686
+	if (!empty($context['profile_posthtml'])) {
1687
+			echo '
1608 1688
 				<div>', $context['profile_posthtml'], '</div>';
1689
+	}
1609 1690
 
1610 1691
 	// Only show the password box if it's actually needed.
1611
-	if ($context['require_password'])
1612
-		echo '
1692
+	if ($context['require_password']) {
1693
+			echo '
1613 1694
 				<dl class="settings">
1614 1695
 					<dt>
1615 1696
 						<strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '><label for="oldpasswrd">', $txt['current_password'], ': </label></strong><br>
@@ -1619,18 +1700,21 @@  discard block
 block discarded – undo
1619 1700
 						<input type="password" name="oldpasswrd" id="oldpasswrd" size="20">
1620 1701
 					</dd>
1621 1702
 				</dl>';
1703
+	}
1622 1704
 
1623 1705
 	// The button shouldn't say "Change profile" unless we're changing the profile...
1624
-	if (!empty($context['submit_button_text']))
1625
-		echo '
1706
+	if (!empty($context['submit_button_text'])) {
1707
+			echo '
1626 1708
 				<input type="submit" name="save" value="', $context['submit_button_text'], '" class="button floatright">';
1627
-	else
1628
-		echo '
1709
+	} else {
1710
+			echo '
1629 1711
 				<input type="submit" name="save" value="', $txt['change_profile'], '" class="button floatright">';
1712
+	}
1630 1713
 
1631
-	if (!empty($context['token_check']))
1632
-		echo '
1714
+	if (!empty($context['token_check'])) {
1715
+			echo '
1633 1716
 				<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
1717
+	}
1634 1718
 
1635 1719
 	echo '
1636 1720
 				<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -1640,10 +1724,11 @@  discard block
 block discarded – undo
1640 1724
 		</form>';
1641 1725
 
1642 1726
 	// Any final spellchecking stuff?
1643
-	if (!empty($context['show_spellchecking']))
1644
-		echo '
1727
+	if (!empty($context['show_spellchecking'])) {
1728
+			echo '
1645 1729
 		<form name="spell_form" id="spell_form" method="post" accept-charset="', $context['character_set'], '" target="spellWindow" action="', $scripturl, '?action=spellcheck"><input type="hidden" name="spellstring" value=""></form>';
1646
-}
1730
+	}
1731
+	}
1647 1732
 
1648 1733
 /**
1649 1734
  * Personal Message settings.
@@ -1680,10 +1765,11 @@  discard block
 block discarded – undo
1680 1765
 						<select name="pm_receive_from" id="pm_receive_from">
1681 1766
 							<option value="0"', empty($context['receive_from']) || (empty($modSettings['enable_buddylist']) && $context['receive_from'] < 3) ? ' selected' : '', '>', $txt['pm_receive_from_everyone'], '</option>';
1682 1767
 
1683
-	if (!empty($modSettings['enable_buddylist']))
1684
-		echo '
1768
+	if (!empty($modSettings['enable_buddylist'])) {
1769
+			echo '
1685 1770
 							<option value="1"', !empty($context['receive_from']) && $context['receive_from'] == 1 ? ' selected' : '', '>', $txt['pm_receive_from_ignore'], '</option>
1686 1771
 							<option value="2"', !empty($context['receive_from']) && $context['receive_from'] == 2 ? ' selected' : '', '>', $txt['pm_receive_from_buddies'], '</option>';
1772
+	}
1687 1773
 
1688 1774
 	echo '
1689 1775
 							<option value="3"', !empty($context['receive_from']) && $context['receive_from'] > 2 ? ' selected' : '', '>', $txt['pm_receive_from_admins'], '</option>
@@ -1726,11 +1812,12 @@  discard block
 block discarded – undo
1726 1812
 		if (empty($setting) || !is_array($setting))
1727 1813
 		{
1728 1814
 			// Insert a separator (unless this is the first item in the list)
1729
-			if ($i !== $first_option_key)
1730
-				echo '
1815
+			if ($i !== $first_option_key) {
1816
+							echo '
1731 1817
 				</dl>
1732 1818
 				<hr>
1733 1819
 				<dl class="settings">';
1820
+			}
1734 1821
 
1735 1822
 			// Should we give a name to this section?
1736 1823
 			if (is_string($setting) && !empty($setting))
@@ -1739,51 +1826,55 @@  discard block
 block discarded – undo
1739 1826
 				echo '
1740 1827
 					<dt><strong>' . $setting . '</strong></dt>
1741 1828
 					<dd></dd>';
1829
+			} else {
1830
+							$titled_section = false;
1742 1831
 			}
1743
-			else
1744
-				$titled_section = false;
1745 1832
 
1746 1833
 			continue;
1747 1834
 		}
1748 1835
 
1749 1836
 		// Is this disabled?
1750
-		if (isset($setting['enabled']) && $setting['enabled'] === false)
1751
-			continue;
1837
+		if (isset($setting['enabled']) && $setting['enabled'] === false) {
1838
+					continue;
1839
+		}
1752 1840
 
1753 1841
 		// Some of these may not be set...  Set to defaults here
1754 1842
 		$opts = array('calendar_start_day', 'topics_per_page', 'messages_per_page', 'display_quick_mod');
1755
-		if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']]))
1756
-			$context['member']['options'][$setting['id']] = 0;
1757
-
1758
-		if (!isset($setting['type']) || $setting['type'] == 'bool')
1759
-			$setting['type'] = 'checkbox';
1760
-
1761
-		elseif ($setting['type'] == 'int' || $setting['type'] == 'integer')
1762
-			$setting['type'] = 'number';
1843
+		if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']])) {
1844
+					$context['member']['options'][$setting['id']] = 0;
1845
+		}
1763 1846
 
1764
-		elseif ($setting['type'] == 'string')
1765
-			$setting['type'] = 'text';
1847
+		if (!isset($setting['type']) || $setting['type'] == 'bool') {
1848
+					$setting['type'] = 'checkbox';
1849
+		} elseif ($setting['type'] == 'int' || $setting['type'] == 'integer') {
1850
+					$setting['type'] = 'number';
1851
+		} elseif ($setting['type'] == 'string') {
1852
+					$setting['type'] = 'text';
1853
+		}
1766 1854
 
1767
-		if (isset($setting['options']))
1768
-			$setting['type'] = 'list';
1855
+		if (isset($setting['options'])) {
1856
+					$setting['type'] = 'list';
1857
+		}
1769 1858
 
1770 1859
 		echo '
1771 1860
 					<dt>
1772 1861
 						<label for="', $setting['id'], '">', !$titled_section ? '<strong>' : '', $setting['label'], !$titled_section ? '</strong>' : '', '</label>';
1773 1862
 
1774
-		if (isset($setting['description']))
1775
-			echo '
1863
+		if (isset($setting['description'])) {
1864
+					echo '
1776 1865
 						<br>
1777 1866
 						<span class="smalltext">', $setting['description'], '</span>';
1867
+		}
1778 1868
 		echo '
1779 1869
 					</dt>
1780 1870
 					<dd>';
1781 1871
 
1782 1872
 		// Display checkbox options
1783
-		if ($setting['type'] == 'checkbox')
1784
-			echo '
1873
+		if ($setting['type'] == 'checkbox') {
1874
+					echo '
1785 1875
 						<input type="hidden" name="default_options[' . $setting['id'] . ']" value="0">
1786 1876
 						<input type="checkbox" name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', !empty($context['member']['options'][$setting['id']]) ? ' checked' : '', ' value="1">';
1877
+		}
1787 1878
 
1788 1879
 		// How about selection lists, we all love them
1789 1880
 		elseif ($setting['type'] == 'list')
@@ -1791,9 +1882,10 @@  discard block
 block discarded – undo
1791 1882
 			echo '
1792 1883
 						<select name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', '>';
1793 1884
 
1794
-			foreach ($setting['options'] as $value => $label)
1795
-				echo '
1885
+			foreach ($setting['options'] as $value => $label) {
1886
+							echo '
1796 1887
 							<option value="', $value, '"', $value == $context['member']['options'][$setting['id']] ? ' selected' : '', '>', $label, '</option>';
1888
+			}
1797 1889
 
1798 1890
 			echo '
1799 1891
 						</select>';
@@ -1809,14 +1901,13 @@  discard block
 block discarded – undo
1809 1901
 
1810 1902
 				echo '
1811 1903
 						<input type="number"', $min . $max . $step;
1812
-			}
1813
-			elseif (isset($setting['type']) && $setting['type'] == 'url')
1814
-				echo'
1904
+			} elseif (isset($setting['type']) && $setting['type'] == 'url') {
1905
+							echo'
1815 1906
 						<input type="url"';
1816
-
1817
-			else
1818
-				echo '
1907
+			} else {
1908
+							echo '
1819 1909
 						<input type="text"';
1910
+			}
1820 1911
 
1821 1912
 			echo ' name="default_options[', $setting['id'], ']" id="', $setting['id'], '" value="', isset($context['member']['options'][$setting['id']]) ? $context['member']['options'][$setting['id']] : $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : '', '>';
1822 1913
 		}
@@ -1853,8 +1944,8 @@  discard block
 block discarded – undo
1853 1944
 				<dl class="settings">';
1854 1945
 
1855 1946
 	// Allow notification on announcements to be disabled?
1856
-	if (!empty($modSettings['allow_disableAnnounce']))
1857
-		echo '
1947
+	if (!empty($modSettings['allow_disableAnnounce'])) {
1948
+			echo '
1858 1949
 					<dt>
1859 1950
 						<label for="notify_announcements">', $txt['notify_important_email'], '</label>
1860 1951
 					</dt>
@@ -1862,15 +1953,17 @@  discard block
 block discarded – undo
1862 1953
 						<input type="hidden" name="notify_announcements" value="0">
1863 1954
 						<input type="checkbox" id="notify_announcements" name="notify_announcements" value="1"', !empty($context['member']['notify_announcements']) ? ' checked' : '', '>
1864 1955
 					</dd>';
1956
+	}
1865 1957
 
1866
-	if (!empty($modSettings['enable_ajax_alerts']))
1867
-		echo '
1958
+	if (!empty($modSettings['enable_ajax_alerts'])) {
1959
+			echo '
1868 1960
 					<dt>
1869 1961
 						<label for="notify_send_body">', $txt['notify_alert_timeout'], '</label>
1870 1962
 					</dt>
1871 1963
 					<dd>
1872 1964
 						<input type="number" size="4" id="notify_alert_timeout" name="opt_alert_timeout" min="0" value="', $context['member']['alert_timeout'], '">
1873 1965
 					</dd>';
1966
+	}
1874 1967
 
1875 1968
 	echo '
1876 1969
 				</dl>
@@ -1902,9 +1995,10 @@  discard block
 block discarded – undo
1902 1995
 
1903 1996
 				$label = $txt['alert_opt_' . $opts[1]];
1904 1997
 				$label_pos = isset($opts['label']) ? $opts['label'] : '';
1905
-				if ($label_pos == 'before')
1906
-					echo '
1998
+				if ($label_pos == 'before') {
1999
+									echo '
1907 2000
 						<label for="opt_', $opts[1], '">', $label, '</label>';
2001
+				}
1908 2002
 
1909 2003
 				$this_value = isset($context['alert_prefs'][$opts[1]]) ? $context['alert_prefs'][$opts[1]] : 0;
1910 2004
 				switch ($opts[0])
@@ -1918,17 +2012,19 @@  discard block
 block discarded – undo
1918 2012
 						echo '
1919 2013
 						<select name="opt_', $opts[1], '" id="opt_', $opts[1], '">';
1920 2014
 
1921
-						foreach ($opts['opts'] as $k => $v)
1922
-							echo '
2015
+						foreach ($opts['opts'] as $k => $v) {
2016
+													echo '
1923 2017
 							<option value="', $k, '"', $this_value == $k ? ' selected' : '', '>', $v, '</option>';
2018
+						}
1924 2019
 						echo '
1925 2020
 						</select>';
1926 2021
 						break;
1927 2022
 				}
1928 2023
 
1929
-				if ($label_pos == 'after')
1930
-					echo '
2024
+				if ($label_pos == 'after') {
2025
+									echo '
1931 2026
 						<label for="opt_', $opts[1], '">', $label, '</label>';
2027
+				}
1932 2028
 
1933 2029
 				echo '
1934 2030
 					</td>
@@ -2045,11 +2141,12 @@  discard block
 block discarded – undo
2045 2141
 			<p class="information">', $txt['groupMembership_info'], '</p>';
2046 2142
 
2047 2143
 	// Do we have an update message?
2048
-	if (!empty($context['update_message']))
2049
-		echo '
2144
+	if (!empty($context['update_message'])) {
2145
+			echo '
2050 2146
 			<div class="infobox">
2051 2147
 				', $context['update_message'], '.
2052 2148
 			</div>';
2149
+	}
2053 2150
 
2054 2151
 	echo '
2055 2152
 			<div id="groups">';
@@ -2071,8 +2168,7 @@  discard block
 block discarded – undo
2071 2168
 						</div>
2072 2169
 					</div>
2073 2170
 				</div><!-- .groupmembership -->';
2074
-	}
2075
-	else
2171
+	} else
2076 2172
 	{
2077 2173
 		echo '
2078 2174
 				<div class="title_bar">
@@ -2084,27 +2180,30 @@  discard block
 block discarded – undo
2084 2180
 			echo '
2085 2181
 				<div class="windowbg" id="primdiv_', $group['id'], '">';
2086 2182
 
2087
-				if ($context['can_edit_primary'])
2088
-					echo '
2183
+				if ($context['can_edit_primary']) {
2184
+									echo '
2089 2185
 					<input type="radio" name="primary" id="primary_', $group['id'], '" value="', $group['id'], '"', $group['is_primary'] ? ' checked' : '', ' onclick="highlightSelected(\'primdiv_' . $group['id'] . '\');"', $group['can_be_primary'] ? '' : ' disabled', '>';
2186
+				}
2090 2187
 
2091 2188
 				echo '
2092 2189
 					<label for="primary_', $group['id'], '"><strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '</label>';
2093 2190
 
2094 2191
 				// Can they leave their group?
2095
-				if ($group['can_leave'])
2096
-					echo '
2192
+				if ($group['can_leave']) {
2193
+									echo '
2097 2194
 					<a href="' . $scripturl . '?action=profile;save;u=' . $context['id_member'] . ';area=groupmembership;' . $context['session_var'] . '=' . $context['session_id'] . ';gid=' . $group['id'] . ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">' . $txt['leave_group'] . '</a>';
2195
+				}
2098 2196
 
2099 2197
 				echo '
2100 2198
 				</div><!-- .windowbg -->';
2101 2199
 		}
2102 2200
 
2103
-		if ($context['can_edit_primary'])
2104
-			echo '
2201
+		if ($context['can_edit_primary']) {
2202
+					echo '
2105 2203
 				<div class="padding righttext">
2106 2204
 					<input type="submit" value="', $txt['make_primary'], '" class="button">
2107 2205
 				</div>';
2206
+		}
2108 2207
 
2109 2208
 		// Any groups they can join?
2110 2209
 		if (!empty($context['groups']['available']))
@@ -2120,17 +2219,16 @@  discard block
 block discarded – undo
2120 2219
 				<div class="windowbg">
2121 2220
 					<strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '';
2122 2221
 
2123
-				if ($group['type'] == 3)
2124
-					echo '
2222
+				if ($group['type'] == 3) {
2223
+									echo '
2125 2224
 					<a href="', $scripturl, '?action=profile;save;u=', $context['id_member'], ';area=groupmembership;', $context['session_var'], '=', $context['session_id'], ';gid=', $group['id'], ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '" class="button floatright">', $txt['join_group'], '</a>';
2126
-
2127
-				elseif ($group['type'] == 2 && $group['pending'])
2128
-					echo '
2225
+				} elseif ($group['type'] == 2 && $group['pending']) {
2226
+									echo '
2129 2227
 					<span class="floatright">', $txt['approval_pending'], '</span>';
2130
-
2131
-				elseif ($group['type'] == 2)
2132
-					echo '
2228
+				} elseif ($group['type'] == 2) {
2229
+									echo '
2133 2230
 					<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=groupmembership;request=', $group['id'], '" class="button floatright">', $txt['request_group'], '</a>';
2231
+				}
2134 2232
 
2135 2233
 				echo '
2136 2234
 				</div><!-- .windowbg -->';
@@ -2153,9 +2251,10 @@  discard block
 block discarded – undo
2153 2251
 
2154 2252
 						prevDiv.className = "windowbg";
2155 2253
 					}';
2156
-		if (isset($context['groups']['member'][$context['primary_group']]))
2157
-			echo '
2254
+		if (isset($context['groups']['member'][$context['primary_group']])) {
2255
+					echo '
2158 2256
 					highlightSelected("primdiv_' . $context['primary_group'] . '");';
2257
+		}
2159 2258
 
2160 2259
 		echo '
2161 2260
 				</script>';
@@ -2164,9 +2263,10 @@  discard block
 block discarded – undo
2164 2263
 	echo '
2165 2264
 			</div><!-- #groups -->';
2166 2265
 
2167
-	if (!empty($context['token_check']))
2168
-		echo '
2266
+	if (!empty($context['token_check'])) {
2267
+			echo '
2169 2268
 			<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
2269
+	}
2170 2270
 
2171 2271
 	echo '
2172 2272
 			<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -2244,10 +2344,11 @@  discard block
 block discarded – undo
2244 2344
 
2245 2345
 	// Work out the starting warning.
2246 2346
 	$context['current_warning_mode'] = $context['warning_mode'][0];
2247
-	foreach ($context['warning_mode'] as $limit => $warning)
2248
-		if ($context['member']['warning'] >= $limit)
2347
+	foreach ($context['warning_mode'] as $limit => $warning) {
2348
+			if ($context['member']['warning'] >= $limit)
2249 2349
 			$context['current_warning_mode'] = $warning;
2250
-}
2350
+	}
2351
+	}
2251 2352
 
2252 2353
 // Show all warnings of a user?
2253 2354
 function template_viewWarning()
@@ -2282,14 +2383,15 @@  discard block
 block discarded – undo
2282 2383
 				</dd>';
2283 2384
 
2284 2385
 	// There's some impact of this?
2285
-	if (!empty($context['level_effects'][$context['current_level']]))
2286
-		echo '
2386
+	if (!empty($context['level_effects'][$context['current_level']])) {
2387
+			echo '
2287 2388
 				<dt>
2288 2389
 					<strong>', $txt['profile_viewwarning_impact'], ':</strong>
2289 2390
 				</dt>
2290 2391
 				<dd>
2291 2392
 					', $context['level_effects'][$context['current_level']], '
2292 2393
 				</dd>';
2394
+	}
2293 2395
 
2294 2396
 	echo '
2295 2397
 			</dl>
@@ -2327,10 +2429,11 @@  discard block
 block discarded – undo
2327 2429
 
2328 2430
 			// Otherwise see what we can do...';
2329 2431
 
2330
-	foreach ($context['notification_templates'] as $k => $type)
2331
-		echo '
2432
+	foreach ($context['notification_templates'] as $k => $type) {
2433
+			echo '
2332 2434
 			if (index == ', $k, ')
2333 2435
 				document.getElementById(\'warn_body\').value = "', strtr($type['body'], array('"' => "'", "\n" => '\\n', "\r" => '')), '";';
2436
+	}
2334 2437
 
2335 2438
 	echo '
2336 2439
 		}
@@ -2340,10 +2443,11 @@  discard block
 block discarded – undo
2340 2443
 			// Also set the right effect.
2341 2444
 			effectText = "";';
2342 2445
 
2343
-	foreach ($context['level_effects'] as $limit => $text)
2344
-		echo '
2446
+	foreach ($context['level_effects'] as $limit => $text) {
2447
+			echo '
2345 2448
 			if (slideAmount >= ', $limit, ')
2346 2449
 				effectText = "', $text, '";';
2450
+	}
2347 2451
 
2348 2452
 	echo '
2349 2453
 			setInnerHTML(document.getElementById(\'cur_level_div\'), slideAmount + \'% (\' + effectText + \')\');
@@ -2358,32 +2462,35 @@  discard block
 block discarded – undo
2358 2462
 			</h3>
2359 2463
 		</div>';
2360 2464
 
2361
-	if (!$context['user']['is_owner'])
2362
-		echo '
2465
+	if (!$context['user']['is_owner']) {
2466
+			echo '
2363 2467
 		<p class="information">', $txt['profile_warning_desc'], '</p>';
2468
+	}
2364 2469
 
2365 2470
 	echo '
2366 2471
 		<div class="windowbg">
2367 2472
 			<dl class="settings">';
2368 2473
 
2369
-	if (!$context['user']['is_owner'])
2370
-		echo '
2474
+	if (!$context['user']['is_owner']) {
2475
+			echo '
2371 2476
 				<dt>
2372 2477
 					<strong>', $txt['profile_warning_name'], ':</strong>
2373 2478
 				</dt>
2374 2479
 				<dd>
2375 2480
 					<strong>', $context['member']['name'], '</strong>
2376 2481
 				</dd>';
2482
+	}
2377 2483
 
2378 2484
 	echo '
2379 2485
 				<dt>
2380 2486
 					<strong>', $txt['profile_warning_level'], ':</strong>';
2381 2487
 
2382 2488
 	// Is there only so much they can apply?
2383
-	if ($context['warning_limit'])
2384
-		echo '
2489
+	if ($context['warning_limit']) {
2490
+			echo '
2385 2491
 					<br>
2386 2492
 					<span class="smalltext">', sprintf($txt['profile_warning_limit_attribute'], $context['warning_limit']), '</span>';
2493
+	}
2387 2494
 
2388 2495
 	echo '
2389 2496
 				</dt>
@@ -2438,9 +2545,10 @@  discard block
 block discarded – undo
2438 2545
 						<option value="-1">', $txt['profile_warning_notify_template'], '</option>
2439 2546
 						<option value="-1" disabled>------------------------------</option>';
2440 2547
 
2441
-		foreach ($context['notification_templates'] as $id_template => $template)
2442
-			echo '
2548
+		foreach ($context['notification_templates'] as $id_template => $template) {
2549
+					echo '
2443 2550
 						<option value="', $id_template, '">', $template['title'], '</option>';
2551
+		}
2444 2552
 
2445 2553
 		echo '
2446 2554
 					</select>
@@ -2453,9 +2561,10 @@  discard block
 block discarded – undo
2453 2561
 			</dl>
2454 2562
 			<div class="righttext">';
2455 2563
 
2456
-	if (!empty($context['token_check']))
2457
-		echo '
2564
+	if (!empty($context['token_check'])) {
2565
+			echo '
2458 2566
 				<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
2567
+	}
2459 2568
 
2460 2569
 	echo '
2461 2570
 				<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -2471,8 +2580,8 @@  discard block
 block discarded – undo
2471 2580
 	echo '
2472 2581
 	<script>';
2473 2582
 
2474
-	if (!$context['user']['is_owner'])
2475
-		echo '
2583
+	if (!$context['user']['is_owner']) {
2584
+			echo '
2476 2585
 		modifyWarnNotify();
2477 2586
 		$(document).ready(function() {
2478 2587
 			$("#preview_button").click(function() {
@@ -2511,6 +2620,7 @@  discard block
 block discarded – undo
2511 2620
 			});
2512 2621
 			return false;
2513 2622
 		}';
2623
+	}
2514 2624
 
2515 2625
 	echo '
2516 2626
 	</script>';
@@ -2533,17 +2643,19 @@  discard block
 block discarded – undo
2533 2643
 			</div>';
2534 2644
 
2535 2645
 	// If deleting another account give them a lovely info box.
2536
-	if (!$context['user']['is_owner'])
2537
-		echo '
2646
+	if (!$context['user']['is_owner']) {
2647
+			echo '
2538 2648
 			<p class="information">', $txt['deleteAccount_desc'], '</p>';
2649
+	}
2539 2650
 
2540 2651
 	echo '
2541 2652
 			<div class="windowbg">';
2542 2653
 
2543 2654
 	// If they are deleting their account AND the admin needs to approve it - give them another piece of info ;)
2544
-	if ($context['needs_approval'])
2545
-		echo '
2655
+	if ($context['needs_approval']) {
2656
+			echo '
2546 2657
 				<div class="errorbox">', $txt['deleteAccount_approval'], '</div>';
2658
+	}
2547 2659
 
2548 2660
 	// If the user is deleting their own account warn them first - and require a password!
2549 2661
 	if ($context['user']['is_owner'])
@@ -2555,9 +2667,10 @@  discard block
 block discarded – undo
2555 2667
 					<input type="password" name="oldpasswrd" size="20">
2556 2668
 					<input type="submit" value="', $txt['yes'], '" class="button">';
2557 2669
 
2558
-		if (!empty($context['token_check']))
2559
-			echo '
2670
+		if (!empty($context['token_check'])) {
2671
+					echo '
2560 2672
 					<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
2673
+		}
2561 2674
 
2562 2675
 		echo '
2563 2676
 					<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -2587,10 +2700,11 @@  discard block
 block discarded – undo
2587 2700
 						<option value="topics">', $txt['deleteAccount_topics'], '</option>
2588 2701
 					</select>';
2589 2702
 
2590
-			if ($context['show_perma_delete'])
2591
-				echo '
2703
+			if ($context['show_perma_delete']) {
2704
+							echo '
2592 2705
 					<br>
2593 2706
 					<label for="perma_delete"><input type="checkbox" name="perma_delete" id="perma_delete" value="1">', $txt['deleteAccount_permanent'], ':</label>';
2707
+			}
2594 2708
 
2595 2709
 			echo '
2596 2710
 				</div>';
@@ -2603,9 +2717,10 @@  discard block
 block discarded – undo
2603 2717
 				<div>
2604 2718
 					<input type="submit" value="', $txt['delete'], '" class="button">';
2605 2719
 
2606
-		if (!empty($context['token_check']))
2607
-			echo '
2720
+		if (!empty($context['token_check'])) {
2721
+					echo '
2608 2722
 				<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
2723
+		}
2609 2724
 
2610 2725
 		echo '
2611 2726
 					<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
@@ -2631,8 +2746,8 @@  discard block
 block discarded – undo
2631 2746
 					<hr>';
2632 2747
 
2633 2748
 	// Only show the password box if it's actually needed.
2634
-	if ($context['require_password'])
2635
-		echo '
2749
+	if ($context['require_password']) {
2750
+			echo '
2636 2751
 					<dl class="settings">
2637 2752
 						<dt>
2638 2753
 							<strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br>
@@ -2642,13 +2757,15 @@  discard block
 block discarded – undo
2642 2757
 							<input type="password" name="oldpasswrd" size="20">
2643 2758
 						</dd>
2644 2759
 					</dl>';
2760
+	}
2645 2761
 
2646 2762
 	echo '
2647 2763
 					<div class="righttext">';
2648 2764
 
2649
-	if (!empty($context['token_check']))
2650
-		echo '
2765
+	if (!empty($context['token_check'])) {
2766
+			echo '
2651 2767
 						<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
2768
+	}
2652 2769
 
2653 2770
 	echo '
2654 2771
 						<input type="submit" value="', $txt['change_profile'], '" class="button">
@@ -2675,9 +2792,10 @@  discard block
 block discarded – undo
2675 2792
 			<ul id="list_errors">';
2676 2793
 
2677 2794
 		// Cycle through each error and display an error message.
2678
-		foreach ($context['post_errors'] as $error)
2679
-			echo '
2795
+		foreach ($context['post_errors'] as $error) {
2796
+					echo '
2680 2797
 				<li>', isset($txt['profile_error_' . $error]) ? $txt['profile_error_' . $error] : $error, '</li>';
2798
+		}
2681 2799
 
2682 2800
 		echo '
2683 2801
 			</ul>';
@@ -2703,12 +2821,13 @@  discard block
 block discarded – undo
2703 2821
 								<select name="id_group" ', ($context['user']['is_owner'] && $context['member']['group_id'] == 1 ? 'onchange="if (this.value != 1 &amp;&amp; !confirm(\'' . $txt['deadmin_confirm'] . '\')) this.value = 1;"' : ''), '>';
2704 2822
 
2705 2823
 	// Fill the select box with all primary member groups that can be assigned to a member.
2706
-	foreach ($context['member_groups'] as $member_group)
2707
-		if (!empty($member_group['can_be_primary']))
2824
+	foreach ($context['member_groups'] as $member_group) {
2825
+			if (!empty($member_group['can_be_primary']))
2708 2826
 			echo '
2709 2827
 									<option value="', $member_group['id'], '"', $member_group['is_primary'] ? ' selected' : '', '>
2710 2828
 										', $member_group['name'], '
2711 2829
 									</option>';
2830
+	}
2712 2831
 
2713 2832
 	echo '
2714 2833
 								</select>
@@ -2721,10 +2840,11 @@  discard block
 block discarded – undo
2721 2840
 									<input type="hidden" name="additional_groups[]" value="0">';
2722 2841
 
2723 2842
 	// For each membergroup show a checkbox so members can be assigned to more than one group.
2724
-	foreach ($context['member_groups'] as $member_group)
2725
-		if ($member_group['can_be_additional'])
2843
+	foreach ($context['member_groups'] as $member_group) {
2844
+			if ($member_group['can_be_additional'])
2726 2845
 			echo '
2727 2846
 									<label for="additional_groups-', $member_group['id'], '"><input type="checkbox" name="additional_groups[]" value="', $member_group['id'], '" id="additional_groups-', $member_group['id'], '"', $member_group['is_additional'] ? ' checked' : '', '> ', $member_group['name'], '</label><br>';
2847
+	}
2728 2848
 
2729 2849
 	echo '
2730 2850
 								</span>
@@ -2784,9 +2904,10 @@  discard block
 block discarded – undo
2784 2904
 								<span class="smalltext">', $txt['sig_info'], '</span><br>
2785 2905
 								<br>';
2786 2906
 
2787
-	if ($context['show_spellchecking'])
2788
-		echo '
2907
+	if ($context['show_spellchecking']) {
2908
+			echo '
2789 2909
 								<input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" class="button">';
2910
+	}
2790 2911
 
2791 2912
 	echo '
2792 2913
 							</dt>
@@ -2794,17 +2915,20 @@  discard block
 block discarded – undo
2794 2915
 								<textarea class="editor" onkeyup="calcCharLeft();" id="signature" name="signature" rows="5" cols="50">', $context['member']['signature'], '</textarea><br>';
2795 2916
 
2796 2917
 	// If there is a limit at all!
2797
-	if (!empty($context['signature_limits']['max_length']))
2798
-		echo '
2918
+	if (!empty($context['signature_limits']['max_length'])) {
2919
+			echo '
2799 2920
 								<span class="smalltext">', sprintf($txt['max_sig_characters'], $context['signature_limits']['max_length']), ' <span id="signatureLeft">', $context['signature_limits']['max_length'], '</span></span><br>';
2921
+	}
2800 2922
 
2801
-	if (!empty($context['show_preview_button']))
2802
-		echo '
2923
+	if (!empty($context['show_preview_button'])) {
2924
+			echo '
2803 2925
 								<input type="button" name="preview_signature" id="preview_button" value="', $txt['preview_signature'], '" class="button floatright">';
2926
+	}
2804 2927
 
2805
-	if ($context['signature_warning'])
2806
-		echo '
2928
+	if ($context['signature_warning']) {
2929
+			echo '
2807 2930
 								<span class="smalltext">', $context['signature_warning'], '</span>';
2931
+	}
2808 2932
 
2809 2933
 	// Some javascript used to count how many characters have been used so far in the signature.
2810 2934
 	echo '
@@ -2835,38 +2959,43 @@  discard block
 block discarded – undo
2835 2959
 									<label for="avatar_upload_box">', $txt['personal_picture'], '</label>
2836 2960
 								</strong>';
2837 2961
 
2838
-	if (empty($modSettings['gravatarOverride']))
2839
-		echo '
2962
+	if (empty($modSettings['gravatarOverride'])) {
2963
+			echo '
2840 2964
 								<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_none" value="none"' . ($context['member']['avatar']['choice'] == 'none' ? ' checked="checked"' : '') . '>
2841 2965
 								<label for="avatar_choice_none"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
2842 2966
 									' . $txt['no_avatar'] . '
2843 2967
 								</label><br>';
2968
+	}
2844 2969
 
2845
-	if (!empty($context['member']['avatar']['allow_server_stored']))
2846
-		echo '
2970
+	if (!empty($context['member']['avatar']['allow_server_stored'])) {
2971
+			echo '
2847 2972
 								<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_server_stored" value="server_stored"' . ($context['member']['avatar']['choice'] == 'server_stored' ? ' checked="checked"' : '') . '>
2848 2973
 								<label for="avatar_choice_server_stored"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
2849 2974
 									', $txt['choose_avatar_gallery'], '
2850 2975
 								</label><br>';
2976
+	}
2851 2977
 
2852
-	if (!empty($context['member']['avatar']['allow_external']))
2853
-		echo '
2978
+	if (!empty($context['member']['avatar']['allow_external'])) {
2979
+			echo '
2854 2980
 								<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_external" value="external"' . ($context['member']['avatar']['choice'] == 'external' ? ' checked="checked"' : '') . '>
2855 2981
 								<label for="avatar_choice_external"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
2856 2982
 									', $txt['my_own_pic'], '
2857 2983
 								</label><br>';
2984
+	}
2858 2985
 
2859
-	if (!empty($context['member']['avatar']['allow_upload']))
2860
-		echo '
2986
+	if (!empty($context['member']['avatar']['allow_upload'])) {
2987
+			echo '
2861 2988
 								<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_upload" value="upload"' . ($context['member']['avatar']['choice'] == 'upload' ? ' checked="checked"' : '') . '>
2862 2989
 								<label for="avatar_choice_upload"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
2863 2990
 									', $txt['avatar_will_upload'], '
2864 2991
 								</label><br>';
2992
+	}
2865 2993
 
2866
-	if (!empty($context['member']['avatar']['allow_gravatar']))
2867
-		echo '
2994
+	if (!empty($context['member']['avatar']['allow_gravatar'])) {
2995
+			echo '
2868 2996
 								<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_gravatar" value="gravatar"' . ($context['member']['avatar']['choice'] == 'gravatar' ? ' checked="checked"' : '') . '>
2869 2997
 								<label for="avatar_choice_gravatar"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['use_gravatar'] . '</label>';
2998
+	}
2870 2999
 
2871 3000
 	echo '
2872 3001
 							</dt>
@@ -2881,9 +3010,10 @@  discard block
 block discarded – undo
2881 3010
 										<select name="cat" id="cat" size="10" onchange="changeSel(\'\');" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');">';
2882 3011
 
2883 3012
 		// This lists all the file categories.
2884
-		foreach ($context['avatars'] as $avatar)
2885
-			echo '
3013
+		foreach ($context['avatars'] as $avatar) {
3014
+					echo '
2886 3015
 											<option value="', $avatar['filename'] . ($avatar['is_dir'] ? '/' : ''), '"', ($avatar['checked'] ? ' selected' : ''), '>', $avatar['name'], '</option>';
3016
+		}
2887 3017
 
2888 3018
 		echo '
2889 3019
 										</select>
@@ -2915,20 +3045,22 @@  discard block
 block discarded – undo
2915 3045
 	}
2916 3046
 
2917 3047
 	// If the user can link to an off server avatar, show them a box to input the address.
2918
-	if (!empty($context['member']['avatar']['allow_external']))
2919
-		echo '
3048
+	if (!empty($context['member']['avatar']['allow_external'])) {
3049
+			echo '
2920 3050
 								<div id="avatar_external">
2921 3051
 									<div class="smalltext">', $txt['avatar_by_url'], '</div>', !empty($modSettings['avatar_action_too_large']) && $modSettings['avatar_action_too_large'] == 'option_download_and_resize' ? template_max_size('external') : '', '
2922 3052
 									<input type="text" name="userpicpersonal" size="45" value="', ((stristr($context['member']['avatar']['external'], 'http://') || stristr($context['member']['avatar']['external'], 'https://')) ? $context['member']['avatar']['external'] : 'http://'), '" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'external\');" onchange="if (typeof(previewExternalAvatar) != \'undefined\') previewExternalAvatar(this.value);">
2923 3053
 								</div>';
3054
+	}
2924 3055
 
2925 3056
 	// If the user is able to upload avatars to the server show them an upload box.
2926
-	if (!empty($context['member']['avatar']['allow_upload']))
2927
-		echo '
3057
+	if (!empty($context['member']['avatar']['allow_upload'])) {
3058
+			echo '
2928 3059
 								<div id="avatar_upload">
2929 3060
 									<input type="file" size="44" name="attachment" id="avatar_upload_box" value="" onchange="readfromUpload(this)"  onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" accept="image/gif, image/jpeg, image/jpg, image/png">', template_max_size('upload'), '
2930 3061
 									', (!empty($context['member']['avatar']['id_attach']) ? '<br><img src="' . $context['member']['avatar']['href'] . (strpos($context['member']['avatar']['href'], '?') === false ? '?' : '&amp;') . 'time=' . time() . '" alt="" id="attached_image"><input type="hidden" name="id_attach" value="' . $context['member']['avatar']['id_attach'] . '">' : ''), '
2931 3062
 								</div>';
3063
+	}
2932 3064
 
2933 3065
 	// if the user is able to use Gravatar avatars show then the image preview
2934 3066
 	if (!empty($context['member']['avatar']['allow_gravatar']))
@@ -2937,16 +3069,17 @@  discard block
 block discarded – undo
2937 3069
 								<div id="avatar_gravatar">
2938 3070
 									<img src="' . $context['member']['avatar']['href'] . '" alt="">';
2939 3071
 
2940
-		if (empty($modSettings['gravatarAllowExtraEmail']))
2941
-			echo '
3072
+		if (empty($modSettings['gravatarAllowExtraEmail'])) {
3073
+					echo '
2942 3074
 									<div class="smalltext">', $txt['gravatar_noAlternateEmail'], '</div>';
2943
-		else
3075
+		} else
2944 3076
 		{
2945 3077
 			// Depending on other stuff, the stored value here might have some odd things in it from other areas.
2946
-			if ($context['member']['avatar']['external'] == $context['member']['email'])
2947
-				$textbox_value = '';
2948
-			else
2949
-				$textbox_value = $context['member']['avatar']['external'];
3078
+			if ($context['member']['avatar']['external'] == $context['member']['email']) {
3079
+							$textbox_value = '';
3080
+			} else {
3081
+							$textbox_value = $context['member']['avatar']['external'];
3082
+			}
2950 3083
 
2951 3084
 			echo '
2952 3085
 									<div class="smalltext">', $txt['gravatar_alternateEmail'], '</div>
@@ -3018,8 +3151,9 @@  discard block
 block discarded – undo
3018 3151
 	$h = !empty($modSettings['avatar_max_height_' . $type]) ? comma_format($modSettings['avatar_max_height_' . $type]) : 0;
3019 3152
 
3020 3153
 	$suffix = (!empty($w) ? 'w' : '') . (!empty($h) ? 'h' : '');
3021
-	if (empty($suffix))
3022
-		return;
3154
+	if (empty($suffix)) {
3155
+			return;
3156
+	}
3023 3157
 
3024 3158
 	echo '
3025 3159
 								<div class="smalltext">', sprintf($txt['avatar_max_size_' . $suffix], $w, $h), '</div>';
@@ -3044,9 +3178,10 @@  discard block
 block discarded – undo
3044 3178
 								<select name="easyformat" id="easyformat" onchange="document.forms.creator.time_format.value = this.options[this.selectedIndex].value;">';
3045 3179
 
3046 3180
 	// Help the user by showing a list of common time formats.
3047
-	foreach ($context['easy_timeformats'] as $time_format)
3048
-		echo '
3181
+	foreach ($context['easy_timeformats'] as $time_format) {
3182
+			echo '
3049 3183
 									<option value="', $time_format['format'], '"', $time_format['format'] == $context['member']['time_format'] ? ' selected' : '', '>', $time_format['title'], '</option>';
3184
+	}
3050 3185
 
3051 3186
 	echo '
3052 3187
 								</select>
@@ -3084,9 +3219,10 @@  discard block
 block discarded – undo
3084 3219
 							<dd>
3085 3220
 								<select name="smiley_set" id="smiley_set">';
3086 3221
 
3087
-	foreach ($context['smiley_sets'] as $set)
3088
-		echo '
3222
+	foreach ($context['smiley_sets'] as $set) {
3223
+			echo '
3089 3224
 									<option value="', $set['id'], '"', $set['selected'] ? ' selected' : '', '>', $set['name'], '</option>';
3225
+	}
3090 3226
 
3091 3227
 	echo '
3092 3228
 								</select>
@@ -3108,17 +3244,17 @@  discard block
 block discarded – undo
3108 3244
 			<div class="roundframe">
3109 3245
 				<div>';
3110 3246
 
3111
-	if (!empty($context['tfa_backup']))
3112
-		echo '
3247
+	if (!empty($context['tfa_backup'])) {
3248
+			echo '
3113 3249
 					<div class="smalltext error">
3114 3250
 						', $txt['tfa_backup_used_desc'], '
3115 3251
 					</div>';
3116
-
3117
-	elseif ($modSettings['tfa_mode'] == 2)
3118
-		echo '
3252
+	} elseif ($modSettings['tfa_mode'] == 2) {
3253
+			echo '
3119 3254
 					<div class="smalltext">
3120 3255
 						<strong>', $txt['tfa_forced_desc'], '</strong>
3121 3256
 					</div>';
3257
+	}
3122 3258
 
3123 3259
 	echo '
3124 3260
 					<div class="smalltext">
@@ -3129,11 +3265,12 @@  discard block
 block discarded – undo
3129 3265
 							<div class="block">
3130 3266
 								<strong>', $txt['tfa_step1'], '</strong><br>';
3131 3267
 
3132
-	if (!empty($context['tfa_pass_error']))
3133
-		echo '
3268
+	if (!empty($context['tfa_pass_error'])) {
3269
+			echo '
3134 3270
 								<div class="error smalltext">
3135 3271
 									', $txt['tfa_pass_invalid'], '
3136 3272
 								</div>';
3273
+	}
3137 3274
 
3138 3275
 	echo '
3139 3276
 								<input type="password" name="passwd" size="25"', !empty($context['tfa_pass_error']) ? ' class="error"' : '', !empty($context['tfa_pass_value']) ? ' value="' . $context['tfa_pass_value'] . '"' : '', '>
@@ -3146,11 +3283,12 @@  discard block
 block discarded – undo
3146 3283
 							<div class="block">
3147 3284
 								<strong>', $txt['tfa_step3'], '</strong><br>';
3148 3285
 
3149
-	if (!empty($context['tfa_error']))
3150
-		echo '
3286
+	if (!empty($context['tfa_error'])) {
3287
+			echo '
3151 3288
 								<div class="error smalltext">
3152 3289
 									', $txt['tfa_code_invalid'], '
3153 3290
 								</div>';
3291
+	}
3154 3292
 
3155 3293
 	echo '
3156 3294
 								<input type="text" name="tfa_code" size="25"', !empty($context['tfa_error']) ? ' class="error"' : '', !empty($context['tfa_value']) ? ' value="' . $context['tfa_value'] . '"' : '', '>
@@ -3164,10 +3302,11 @@  discard block
 block discarded – undo
3164 3302
 						<img src="', $context['tfa_qr_url'], '" alt="">
3165 3303
 					</div>';
3166 3304
 
3167
-	if (!empty($context['from_ajax']))
3168
-		echo '
3305
+	if (!empty($context['from_ajax'])) {
3306
+			echo '
3169 3307
 					<br>
3170 3308
 					<a href="javascript:self.close();"></a>';
3309
+	}
3171 3310
 
3172 3311
 	echo '
3173 3312
 				</div>
@@ -3207,17 +3346,16 @@  discard block
 block discarded – undo
3207 3346
 							</dt>
3208 3347
 							<dd>';
3209 3348
 
3210
-	if (!$context['tfa_enabled'] && $context['user']['is_owner'])
3211
-		echo '
3349
+	if (!$context['tfa_enabled'] && $context['user']['is_owner']) {
3350
+			echo '
3212 3351
 								<a href="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=profile;area=tfasetup" id="enable_tfa">', $txt['tfa_profile_enable'], '</a>';
3213
-
3214
-	elseif (!$context['tfa_enabled'])
3215
-		echo '
3352
+	} elseif (!$context['tfa_enabled']) {
3353
+			echo '
3216 3354
 								', $txt['tfa_profile_disabled'];
3217
-
3218
-	else
3219
-		echo '
3355
+	} else {
3356
+			echo '
3220 3357
 								', sprintf($txt['tfa_profile_enabled'], $scripturl . '?action=profile;u=' . $context['id_member'] . ';area=tfasetup;disable');
3358
+	}
3221 3359
 
3222 3360
 	echo '
3223 3361
 							</dd>';
Please login to merge, or discard this patch.