Completed
Pull Request — release-2.1 (#4892)
by Mathias
08:29
created
Sources/ManageSettings.php 1 patch
Braces   +279 added lines, -203 removed lines patch added patch discarded remove patch
@@ -14,8 +14,9 @@  discard block
 block discarded – undo
14 14
  * @version 2.1 Beta 4
15 15
  */
16 16
 
17
-if (!defined('SMF'))
17
+if (!defined('SMF')) {
18 18
 	die('No direct access...');
19
+}
19 20
 
20 21
 /**
21 22
  * This function makes sure the requested subaction does exists, if it doesn't, it sets a default action or.
@@ -210,16 +211,18 @@  discard block
 block discarded – undo
210 211
 	{
211 212
 		$all_zones = timezone_identifiers_list();
212 213
 		// Make sure we set the value to the same as the printed value.
213
-		foreach ($all_zones as $zone)
214
-			$config_vars['default_timezone'][2][$zone] = $zone;
214
+		foreach ($all_zones as $zone) {
215
+					$config_vars['default_timezone'][2][$zone] = $zone;
216
+		}
217
+	} else {
218
+			unset($config_vars['default_timezone']);
215 219
 	}
216
-	else
217
-		unset($config_vars['default_timezone']);
218 220
 
219 221
 	call_integration_hook('integrate_modify_basic_settings', array(&$config_vars));
220 222
 
221
-	if ($return_config)
222
-		return $config_vars;
223
+	if ($return_config) {
224
+			return $config_vars;
225
+	}
223 226
 
224 227
 	// Saving?
225 228
 	if (isset($_GET['save']))
@@ -227,8 +230,9 @@  discard block
 block discarded – undo
227 230
 		checkSession();
228 231
 
229 232
 		// Prevent absurd boundaries here - make it a day tops.
230
-		if (isset($_POST['lastActive']))
231
-			$_POST['lastActive'] = min((int) $_POST['lastActive'], 1440);
233
+		if (isset($_POST['lastActive'])) {
234
+					$_POST['lastActive'] = min((int) $_POST['lastActive'], 1440);
235
+		}
232 236
 
233 237
 		call_integration_hook('integrate_save_basic_settings');
234 238
 
@@ -236,8 +240,9 @@  discard block
 block discarded – undo
236 240
 		$_SESSION['adm-save'] = true;
237 241
 
238 242
 		// Do a bit of housekeeping
239
-		if (empty($_POST['minimize_files']))
240
-			deleteAllMinified();
243
+		if (empty($_POST['minimize_files'])) {
244
+					deleteAllMinified();
245
+		}
241 246
 
242 247
 		writeLog();
243 248
 		redirectexit('action=admin;area=featuresettings;sa=basic');
@@ -277,8 +282,9 @@  discard block
 block discarded – undo
277 282
 
278 283
 	call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars));
279 284
 
280
-	if ($return_config)
281
-		return $config_vars;
285
+	if ($return_config) {
286
+			return $config_vars;
287
+	}
282 288
 
283 289
 	// Setup the template.
284 290
 	require_once($sourcedir . '/ManageServer.php');
@@ -295,13 +301,15 @@  discard block
 block discarded – undo
295 301
 
296 302
 		// Clean up the tags.
297 303
 		$bbcTags = array();
298
-		foreach (parse_bbc(false) as $tag)
299
-			$bbcTags[] = $tag['tag'];
304
+		foreach (parse_bbc(false) as $tag) {
305
+					$bbcTags[] = $tag['tag'];
306
+		}
300 307
 
301
-		if (!isset($_POST['disabledBBC_enabledTags']))
302
-			$_POST['disabledBBC_enabledTags'] = array();
303
-		elseif (!is_array($_POST['disabledBBC_enabledTags']))
304
-			$_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']);
308
+		if (!isset($_POST['disabledBBC_enabledTags'])) {
309
+					$_POST['disabledBBC_enabledTags'] = array();
310
+		} elseif (!is_array($_POST['disabledBBC_enabledTags'])) {
311
+					$_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']);
312
+		}
305 313
 		// Work out what is actually disabled!
306 314
 		$_POST['disabledBBC'] = implode(',', array_diff($bbcTags, $_POST['disabledBBC_enabledTags']));
307 315
 
@@ -345,8 +353,9 @@  discard block
 block discarded – undo
345 353
 
346 354
 	call_integration_hook('integrate_layout_settings', array(&$config_vars));
347 355
 
348
-	if ($return_config)
349
-		return $config_vars;
356
+	if ($return_config) {
357
+			return $config_vars;
358
+	}
350 359
 
351 360
 	// Saving?
352 361
 	if (isset($_GET['save']))
@@ -386,8 +395,9 @@  discard block
 block discarded – undo
386 395
 
387 396
 	call_integration_hook('integrate_likes_settings', array(&$config_vars));
388 397
 
389
-	if ($return_config)
390
-		return $config_vars;
398
+	if ($return_config) {
399
+			return $config_vars;
400
+	}
391 401
 
392 402
 	// Saving?
393 403
 	if (isset($_GET['save']))
@@ -425,8 +435,9 @@  discard block
 block discarded – undo
425 435
 
426 436
 	call_integration_hook('integrate_mentions_settings', array(&$config_vars));
427 437
 
428
-	if ($return_config)
429
-		return $config_vars;
438
+	if ($return_config) {
439
+			return $config_vars;
440
+	}
430 441
 
431 442
 	// Saving?
432 443
 	if (isset($_GET['save']))
@@ -470,8 +481,8 @@  discard block
 block discarded – undo
470 481
 			'enable' => array('check', 'warning_enable'),
471 482
 	);
472 483
 
473
-	if (!empty($modSettings['warning_settings']) && $currently_enabled)
474
-		$config_vars += array(
484
+	if (!empty($modSettings['warning_settings']) && $currently_enabled) {
485
+			$config_vars += array(
475 486
 			'',
476 487
 				array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'] . ' ' . $txt['zero_to_disable']),
477 488
 				'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note'] . ' ' . $txt['zero_to_disable']),
@@ -480,15 +491,18 @@  discard block
 block discarded – undo
480 491
 				'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note'] . ' ' . $txt['zero_to_disable']),
481 492
 				array('permissions', 'view_warning'),
482 493
 		);
494
+	}
483 495
 
484 496
 	call_integration_hook('integrate_warning_settings', array(&$config_vars));
485 497
 
486
-	if ($return_config)
487
-		return $config_vars;
498
+	if ($return_config) {
499
+			return $config_vars;
500
+	}
488 501
 
489 502
 	// Cannot use moderation if post moderation is not enabled.
490
-	if (!$modSettings['postmod_active'])
491
-		unset($config_vars['moderate']);
503
+	if (!$modSettings['postmod_active']) {
504
+			unset($config_vars['moderate']);
505
+	}
492 506
 
493 507
 	// Will need the utility functions from here.
494 508
 	require_once($sourcedir . '/ManageServer.php');
@@ -513,16 +527,16 @@  discard block
 block discarded – undo
513 527
 				'warning_watch' => 10,
514 528
 				'warning_mute' => 60,
515 529
 			);
516
-			if ($modSettings['postmod_active'])
517
-				$vars['warning_moderate'] = 35;
530
+			if ($modSettings['postmod_active']) {
531
+							$vars['warning_moderate'] = 35;
532
+			}
518 533
 
519 534
 			foreach ($vars as $var => $value)
520 535
 			{
521 536
 				$config_vars[] = array('int', $var);
522 537
 				$_POST[$var] = $value;
523 538
 			}
524
-		}
525
-		else
539
+		} else
526 540
 		{
527 541
 			$_POST['warning_watch'] = min($_POST['warning_watch'], 100);
528 542
 			$_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0;
@@ -610,8 +624,9 @@  discard block
 block discarded – undo
610 624
 
611 625
 	call_integration_hook('integrate_spam_settings', array(&$config_vars));
612 626
 
613
-	if ($return_config)
614
-		return $config_vars;
627
+	if ($return_config) {
628
+			return $config_vars;
629
+	}
615 630
 
616 631
 	// You need to be an admin to edit settings!
617 632
 	isAllowedTo('admin_forum');
@@ -645,8 +660,9 @@  discard block
 block discarded – undo
645 660
 
646 661
 	if (empty($context['qa_by_lang'][strtr($language, array('-utf8' => ''))]) && !empty($context['question_answers']))
647 662
 	{
648
-		if (empty($context['settings_insert_above']))
649
-			$context['settings_insert_above'] = '';
663
+		if (empty($context['settings_insert_above'])) {
664
+					$context['settings_insert_above'] = '';
665
+		}
650 666
 
651 667
 		$context['settings_insert_above'] .= '<div class="noticebox">' . sprintf($txt['question_not_defined'], $context['languages'][$language]['name']) . '</div>';
652 668
 	}
@@ -688,8 +704,9 @@  discard block
 block discarded – undo
688 704
 		$_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour'];
689 705
 
690 706
 		// Hack in guest requiring verification!
691
-		if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha']))
692
-			$_POST['posts_require_captcha'] = -1;
707
+		if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) {
708
+					$_POST['posts_require_captcha'] = -1;
709
+		}
693 710
 
694 711
 		$save_vars = $config_vars;
695 712
 		unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']);
@@ -706,14 +723,16 @@  discard block
 block discarded – undo
706 723
 		foreach ($context['qa_languages'] as $lang_id => $dummy)
707 724
 		{
708 725
 			// If we had some questions for this language before, but don't now, delete everything from that language.
709
-			if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id]))
710
-				$changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]);
726
+			if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) {
727
+							$changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]);
728
+			}
711 729
 
712 730
 			// Now step through and see if any existing questions no longer exist.
713
-			if (!empty($context['qa_by_lang'][$lang_id]))
714
-				foreach ($context['qa_by_lang'][$lang_id] as $q_id)
731
+			if (!empty($context['qa_by_lang'][$lang_id])) {
732
+							foreach ($context['qa_by_lang'][$lang_id] as $q_id)
715 733
 					if (empty($_POST['question'][$lang_id][$q_id]))
716 734
 						$changes['delete'][] = $q_id;
735
+			}
717 736
 
718 737
 			// Now let's see if there are new questions or ones that need updating.
719 738
 			if (isset($_POST['question'][$lang_id]))
@@ -722,14 +741,16 @@  discard block
 block discarded – undo
722 741
 				{
723 742
 					// Ignore junky ids.
724 743
 					$q_id = (int) $q_id;
725
-					if ($q_id <= 0)
726
-						continue;
744
+					if ($q_id <= 0) {
745
+											continue;
746
+					}
727 747
 
728 748
 					// Check the question isn't empty (because they want to delete it?)
729 749
 					if (empty($question) || trim($question) == '')
730 750
 					{
731
-						if (isset($context['question_answers'][$q_id]))
732
-							$changes['delete'][] = $q_id;
751
+						if (isset($context['question_answers'][$q_id])) {
752
+													$changes['delete'][] = $q_id;
753
+						}
733 754
 						continue;
734 755
 					}
735 756
 					$question = $smcFunc['htmlspecialchars'](trim($question));
@@ -737,19 +758,22 @@  discard block
 block discarded – undo
737 758
 					// Get the answers. Firstly check there actually might be some.
738 759
 					if (!isset($_POST['answer'][$lang_id][$q_id]) || !is_array($_POST['answer'][$lang_id][$q_id]))
739 760
 					{
740
-						if (isset($context['question_answers'][$q_id]))
741
-							$changes['delete'][] = $q_id;
761
+						if (isset($context['question_answers'][$q_id])) {
762
+													$changes['delete'][] = $q_id;
763
+						}
742 764
 						continue;
743 765
 					}
744 766
 					// Now get them and check that they might be viable.
745 767
 					$answers = array();
746
-					foreach ($_POST['answer'][$lang_id][$q_id] as $answer)
747
-						if (!empty($answer) && trim($answer) !== '')
768
+					foreach ($_POST['answer'][$lang_id][$q_id] as $answer) {
769
+											if (!empty($answer) && trim($answer) !== '')
748 770
 							$answers[] = $smcFunc['htmlspecialchars'](trim($answer));
771
+					}
749 772
 					if (empty($answers))
750 773
 					{
751
-						if (isset($context['question_answers'][$q_id]))
752
-							$changes['delete'][] = $q_id;
774
+						if (isset($context['question_answers'][$q_id])) {
775
+													$changes['delete'][] = $q_id;
776
+						}
753 777
 						continue;
754 778
 					}
755 779
 					$answers = $smcFunc['json_encode']($answers);
@@ -759,16 +783,17 @@  discard block
 block discarded – undo
759 783
 					{
760 784
 						// New question. Now, we don't want to randomly consume ids, so we'll set those, rather than trusting the browser's supplied ids.
761 785
 						$changes['insert'][] = array($lang_id, $question, $answers);
762
-					}
763
-					else
786
+					} else
764 787
 					{
765 788
 						// It's an existing question. Let's see what's changed, if anything.
766
-						if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers'])
767
-							$changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers);
789
+						if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) {
790
+													$changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers);
791
+						}
768 792
 					}
769 793
 
770
-					if (!isset($qs_per_lang[$lang_id]))
771
-						$qs_per_lang[$lang_id] = 0;
794
+					if (!isset($qs_per_lang[$lang_id])) {
795
+											$qs_per_lang[$lang_id] = 0;
796
+					}
772 797
 					$qs_per_lang[$lang_id]++;
773 798
 				}
774 799
 			}
@@ -818,8 +843,9 @@  discard block
 block discarded – undo
818 843
 
819 844
 		// Lastly, the count of messages needs to be no more than the lowest number of questions for any one language.
820 845
 		$count_questions = empty($qs_per_lang) ? 0 : min($qs_per_lang);
821
-		if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions)
822
-			$_POST['qa_verification_number'] = $count_questions;
846
+		if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) {
847
+					$_POST['qa_verification_number'] = $count_questions;
848
+		}
823 849
 
824 850
 		call_integration_hook('integrate_save_spam_settings', array(&$save_vars));
825 851
 
@@ -834,24 +860,27 @@  discard block
 block discarded – undo
834 860
 
835 861
 	$character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y'));
836 862
 	$_SESSION['visual_verification_code'] = '';
837
-	for ($i = 0; $i < 6; $i++)
838
-		$_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)];
863
+	for ($i = 0; $i < 6; $i++) {
864
+			$_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)];
865
+	}
839 866
 
840 867
 	// Some javascript for CAPTCHA.
841 868
 	$context['settings_post_javascript'] = '';
842
-	if ($context['use_graphic_library'])
843
-		$context['settings_post_javascript'] .= '
869
+	if ($context['use_graphic_library']) {
870
+			$context['settings_post_javascript'] .= '
844 871
 		function refreshImages()
845 872
 		{
846 873
 			var imageType = document.getElementById(\'visual_verification_type\').value;
847 874
 			document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType;
848 875
 		}';
876
+	}
849 877
 
850 878
 	// Show the image itself, or text saying we can't.
851
-	if ($context['use_graphic_library'])
852
-		$config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>';
853
-	else
854
-		$config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>';
879
+	if ($context['use_graphic_library']) {
880
+			$config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>';
881
+	} else {
882
+			$config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>';
883
+	}
855 884
 
856 885
 	// Hack for PM spam settings.
857 886
 	list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']);
@@ -861,9 +890,10 @@  discard block
 block discarded – undo
861 890
 	$modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha'];
862 891
 
863 892
 	// Some minor javascript for the guest post setting.
864
-	if ($modSettings['posts_require_captcha'])
865
-		$context['settings_post_javascript'] .= '
893
+	if ($modSettings['posts_require_captcha']) {
894
+			$context['settings_post_javascript'] .= '
866 895
 		document.getElementById(\'guests_require_captcha\').disabled = true;';
896
+	}
867 897
 
868 898
 	// And everything else.
869 899
 	$context['post_url'] = $scripturl . '?action=admin;area=antispam;save';
@@ -910,8 +940,9 @@  discard block
 block discarded – undo
910 940
 
911 941
 	call_integration_hook('integrate_signature_settings', array(&$config_vars));
912 942
 
913
-	if ($return_config)
914
-		return $config_vars;
943
+	if ($return_config) {
944
+			return $config_vars;
945
+	}
915 946
 
916 947
 	// Setup the template.
917 948
 	$context['page_title'] = $txt['signature_settings'];
@@ -966,8 +997,9 @@  discard block
 block discarded – undo
966 997
 				$sig = strtr($row['signature'], array('<br>' => "\n"));
967 998
 
968 999
 				// Max characters...
969
-				if (!empty($sig_limits[1]))
970
-					$sig = $smcFunc['substr']($sig, 0, $sig_limits[1]);
1000
+				if (!empty($sig_limits[1])) {
1001
+									$sig = $smcFunc['substr']($sig, 0, $sig_limits[1]);
1002
+				}
971 1003
 				// Max lines...
972 1004
 				if (!empty($sig_limits[2]))
973 1005
 				{
@@ -977,8 +1009,9 @@  discard block
 block discarded – undo
977 1009
 						if ($sig[$i] == "\n")
978 1010
 						{
979 1011
 							$count++;
980
-							if ($count >= $sig_limits[2])
981
-								$sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' '));
1012
+							if ($count >= $sig_limits[2]) {
1013
+															$sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' '));
1014
+							}
982 1015
 						}
983 1016
 					}
984 1017
 				}
@@ -989,17 +1022,19 @@  discard block
 block discarded – undo
989 1022
 					{
990 1023
 						$limit_broke = 0;
991 1024
 						// Attempt to allow all sizes of abuse, so to speak.
992
-						if ($matches[2][$ind] == 'px' && $size > $sig_limits[7])
993
-							$limit_broke = $sig_limits[7] . 'px';
994
-						elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75))
995
-							$limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt';
996
-						elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16))
997
-							$limit_broke = ((float) $sig_limits[7] / 16) . 'em';
998
-						elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18)
999
-							$limit_broke = 'large';
1000
-
1001
-						if ($limit_broke)
1002
-							$sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig);
1025
+						if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) {
1026
+													$limit_broke = $sig_limits[7] . 'px';
1027
+						} elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) {
1028
+													$limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt';
1029
+						} elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) {
1030
+													$limit_broke = ((float) $sig_limits[7] / 16) . 'em';
1031
+						} elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) {
1032
+													$limit_broke = 'large';
1033
+						}
1034
+
1035
+						if ($limit_broke) {
1036
+													$sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig);
1037
+						}
1003 1038
 					}
1004 1039
 				}
1005 1040
 
@@ -1055,32 +1090,34 @@  discard block
 block discarded – undo
1055 1090
 											$img_offset = false;
1056 1091
 										}
1057 1092
 									}
1093
+								} else {
1094
+																	$replaces[$image] = '';
1058 1095
 								}
1059
-								else
1060
-									$replaces[$image] = '';
1061 1096
 
1062 1097
 								continue;
1063 1098
 							}
1064 1099
 
1065 1100
 							// Does it have predefined restraints? Width first.
1066
-							if ($matches[6][$key])
1067
-								$matches[2][$key] = $matches[6][$key];
1101
+							if ($matches[6][$key]) {
1102
+															$matches[2][$key] = $matches[6][$key];
1103
+							}
1068 1104
 							if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5])
1069 1105
 							{
1070 1106
 								$width = $sig_limits[5];
1071 1107
 								$matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]);
1108
+							} elseif ($matches[2][$key]) {
1109
+															$width = $matches[2][$key];
1072 1110
 							}
1073
-							elseif ($matches[2][$key])
1074
-								$width = $matches[2][$key];
1075 1111
 							// ... and height.
1076 1112
 							if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6])
1077 1113
 							{
1078 1114
 								$height = $sig_limits[6];
1079
-								if ($width != -1)
1080
-									$width = $width * ($height / $matches[4][$key]);
1115
+								if ($width != -1) {
1116
+																	$width = $width * ($height / $matches[4][$key]);
1117
+								}
1118
+							} elseif ($matches[4][$key]) {
1119
+															$height = $matches[4][$key];
1081 1120
 							}
1082
-							elseif ($matches[4][$key])
1083
-								$height = $matches[4][$key];
1084 1121
 
1085 1122
 							// If the dimensions are still not fixed - we need to check the actual image.
1086 1123
 							if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6]))
@@ -1098,12 +1135,13 @@  discard block
 block discarded – undo
1098 1135
 									if ($sizes[1] > $sig_limits[6] && $sig_limits[6])
1099 1136
 									{
1100 1137
 										$height = $sig_limits[6];
1101
-										if ($width == -1)
1102
-											$width = $sizes[0];
1138
+										if ($width == -1) {
1139
+																					$width = $sizes[0];
1140
+										}
1103 1141
 										$width = $width * ($height / $sizes[1]);
1142
+									} elseif ($width != -1) {
1143
+																			$height = $sizes[1];
1104 1144
 									}
1105
-									elseif ($width != -1)
1106
-										$height = $sizes[1];
1107 1145
 								}
1108 1146
 							}
1109 1147
 
@@ -1116,8 +1154,9 @@  discard block
 block discarded – undo
1116 1154
 							// Record that we got one.
1117 1155
 							$image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1;
1118 1156
 						}
1119
-						if (!empty($replaces))
1120
-							$sig = str_replace(array_keys($replaces), array_values($replaces), $sig);
1157
+						if (!empty($replaces)) {
1158
+													$sig = str_replace(array_keys($replaces), array_values($replaces), $sig);
1159
+						}
1121 1160
 					}
1122 1161
 				}
1123 1162
 				// Try to fix disabled tags.
@@ -1129,18 +1168,20 @@  discard block
 block discarded – undo
1129 1168
 
1130 1169
 				$sig = strtr($sig, array("\n" => '<br>'));
1131 1170
 				call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags));
1132
-				if ($sig != $row['signature'])
1133
-					$changes[$row['id_member']] = $sig;
1171
+				if ($sig != $row['signature']) {
1172
+									$changes[$row['id_member']] = $sig;
1173
+				}
1174
+			}
1175
+			if ($smcFunc['db_num_rows']($request) == 0) {
1176
+							$done = true;
1134 1177
 			}
1135
-			if ($smcFunc['db_num_rows']($request) == 0)
1136
-				$done = true;
1137 1178
 			$smcFunc['db_free_result']($request);
1138 1179
 
1139 1180
 			// Do we need to delete what we have?
1140 1181
 			if (!empty($changes))
1141 1182
 			{
1142
-				foreach ($changes as $id => $sig)
1143
-					$smcFunc['db_query']('', '
1183
+				foreach ($changes as $id => $sig) {
1184
+									$smcFunc['db_query']('', '
1144 1185
 						UPDATE {db_prefix}members
1145 1186
 						SET signature = {string:signature}
1146 1187
 						WHERE id_member = {int:id_member}',
@@ -1149,11 +1190,13 @@  discard block
 block discarded – undo
1149 1190
 							'signature' => $sig,
1150 1191
 						)
1151 1192
 					);
1193
+				}
1152 1194
 			}
1153 1195
 
1154 1196
 			$_GET['step'] += 50;
1155
-			if (!$done)
1156
-				pauseSignatureApplySettings();
1197
+			if (!$done) {
1198
+							pauseSignatureApplySettings();
1199
+			}
1157 1200
 		}
1158 1201
 		$settings_applied = true;
1159 1202
 	}
@@ -1171,8 +1214,9 @@  discard block
 block discarded – undo
1171 1214
 	);
1172 1215
 
1173 1216
 	// Temporarily make each setting a modSetting!
1174
-	foreach ($context['signature_settings'] as $key => $value)
1175
-		$modSettings['signature_' . $key] = $value;
1217
+	foreach ($context['signature_settings'] as $key => $value) {
1218
+			$modSettings['signature_' . $key] = $value;
1219
+	}
1176 1220
 
1177 1221
 	// Make sure we check the right tags!
1178 1222
 	$modSettings['bbc_disabled_signature_bbc'] = $disabledTags;
@@ -1184,23 +1228,26 @@  discard block
 block discarded – undo
1184 1228
 
1185 1229
 		// Clean up the tag stuff!
1186 1230
 		$bbcTags = array();
1187
-		foreach (parse_bbc(false) as $tag)
1188
-			$bbcTags[] = $tag['tag'];
1231
+		foreach (parse_bbc(false) as $tag) {
1232
+					$bbcTags[] = $tag['tag'];
1233
+		}
1189 1234
 
1190
-		if (!isset($_POST['signature_bbc_enabledTags']))
1191
-			$_POST['signature_bbc_enabledTags'] = array();
1192
-		elseif (!is_array($_POST['signature_bbc_enabledTags']))
1193
-			$_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']);
1235
+		if (!isset($_POST['signature_bbc_enabledTags'])) {
1236
+					$_POST['signature_bbc_enabledTags'] = array();
1237
+		} elseif (!is_array($_POST['signature_bbc_enabledTags'])) {
1238
+					$_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']);
1239
+		}
1194 1240
 
1195 1241
 		$sig_limits = array();
1196 1242
 		foreach ($context['signature_settings'] as $key => $value)
1197 1243
 		{
1198
-			if ($key == 'allow_smileys')
1199
-				continue;
1200
-			elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys']))
1201
-				$sig_limits[] = -1;
1202
-			else
1203
-				$sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0;
1244
+			if ($key == 'allow_smileys') {
1245
+							continue;
1246
+			} elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) {
1247
+							$sig_limits[] = -1;
1248
+			} else {
1249
+							$sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0;
1250
+			}
1204 1251
 		}
1205 1252
 
1206 1253
 		call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags));
@@ -1233,12 +1280,14 @@  discard block
 block discarded – undo
1233 1280
 
1234 1281
 	// Try get more time...
1235 1282
 	@set_time_limit(600);
1236
-	if (function_exists('apache_reset_timeout'))
1237
-		@apache_reset_timeout();
1283
+	if (function_exists('apache_reset_timeout')) {
1284
+			@apache_reset_timeout();
1285
+	}
1238 1286
 
1239 1287
 	// Have we exhausted all the time we allowed?
1240
-	if (time() - array_sum(explode(' ', $sig_start)) < 3)
1241
-		return;
1288
+	if (time() - array_sum(explode(' ', $sig_start)) < 3) {
1289
+			return;
1290
+	}
1242 1291
 
1243 1292
 	$context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id'];
1244 1293
 	$context['page_title'] = $txt['not_done_title'];
@@ -1284,9 +1333,10 @@  discard block
 block discarded – undo
1284 1333
 		$disable_fields = array_flip($standard_fields);
1285 1334
 		if (!empty($_POST['active']))
1286 1335
 		{
1287
-			foreach ($_POST['active'] as $value)
1288
-				if (isset($disable_fields[$value]))
1336
+			foreach ($_POST['active'] as $value) {
1337
+							if (isset($disable_fields[$value]))
1289 1338
 					unset($disable_fields[$value]);
1339
+			}
1290 1340
 		}
1291 1341
 		// What we have left!
1292 1342
 		$changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields));
@@ -1295,16 +1345,18 @@  discard block
 block discarded – undo
1295 1345
 		$reg_fields = array();
1296 1346
 		if (!empty($_POST['reg']))
1297 1347
 		{
1298
-			foreach ($_POST['reg'] as $value)
1299
-				if (in_array($value, $standard_fields) && !isset($disable_fields[$value]))
1348
+			foreach ($_POST['reg'] as $value) {
1349
+							if (in_array($value, $standard_fields) && !isset($disable_fields[$value]))
1300 1350
 					$reg_fields[] = $value;
1351
+			}
1301 1352
 		}
1302 1353
 		// What we have left!
1303 1354
 		$changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields);
1304 1355
 
1305 1356
 		$_SESSION['adm-save'] = true;
1306
-		if (!empty($changes))
1307
-			updateSettings($changes);
1357
+		if (!empty($changes)) {
1358
+					updateSettings($changes);
1359
+		}
1308 1360
 	}
1309 1361
 
1310 1362
 	createToken('admin-scp');
@@ -1407,11 +1459,13 @@  discard block
 block discarded – undo
1407 1459
 					{
1408 1460
 						$return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>';
1409 1461
 
1410
-						if ($rowData['field_order'] > 1)
1411
-							$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>';
1462
+						if ($rowData['field_order'] > 1) {
1463
+													$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>';
1464
+						}
1412 1465
 
1413
-						if ($rowData['field_order'] < $context['custFieldsMaxOrder'])
1414
-							$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>';
1466
+						if ($rowData['field_order'] < $context['custFieldsMaxOrder']) {
1467
+													$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>';
1468
+						}
1415 1469
 
1416 1470
 						$return .= '</p>';
1417 1471
 
@@ -1549,16 +1603,16 @@  discard block
 block discarded – undo
1549 1603
 		$disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
1550 1604
 		$registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array();
1551 1605
 
1552
-		foreach ($standard_fields as $field)
1553
-			$list[] = array(
1606
+		foreach ($standard_fields as $field) {
1607
+					$list[] = array(
1554 1608
 				'id' => $field,
1555 1609
 				'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field),
1556 1610
 				'disabled' => in_array($field, $disabled_fields),
1557 1611
 				'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration),
1558 1612
 				'can_show_register' => !in_array($field, $fields_no_registration),
1559 1613
 			);
1560
-	}
1561
-	else
1614
+		}
1615
+	} else
1562 1616
 	{
1563 1617
 		// Load all the fields.
1564 1618
 		$request = $smcFunc['db_query']('', '
@@ -1572,8 +1626,9 @@  discard block
 block discarded – undo
1572 1626
 				'items_per_page' => $items_per_page,
1573 1627
 			)
1574 1628
 		);
1575
-		while ($row = $smcFunc['db_fetch_assoc']($request))
1576
-			$list[] = $row;
1629
+		while ($row = $smcFunc['db_fetch_assoc']($request)) {
1630
+					$list[] = $row;
1631
+		}
1577 1632
 		$smcFunc['db_free_result']($request);
1578 1633
 	}
1579 1634
 
@@ -1639,9 +1694,9 @@  discard block
 block discarded – undo
1639 1694
 		$context['field'] = array();
1640 1695
 		while ($row = $smcFunc['db_fetch_assoc']($request))
1641 1696
 		{
1642
-			if ($row['field_type'] == 'textarea')
1643
-				@list ($rows, $cols) = @explode(',', $row['default_value']);
1644
-			else
1697
+			if ($row['field_type'] == 'textarea') {
1698
+							@list ($rows, $cols) = @explode(',', $row['default_value']);
1699
+			} else
1645 1700
 			{
1646 1701
 				$rows = 3;
1647 1702
 				$cols = 30;
@@ -1677,8 +1732,8 @@  discard block
 block discarded – undo
1677 1732
 	}
1678 1733
 
1679 1734
 	// Setup the default values as needed.
1680
-	if (empty($context['field']))
1681
-		$context['field'] = array(
1735
+	if (empty($context['field'])) {
1736
+			$context['field'] = array(
1682 1737
 			'name' => '',
1683 1738
 			'col_name' => '???',
1684 1739
 			'desc' => '',
@@ -1703,6 +1758,7 @@  discard block
 block discarded – undo
1703 1758
 			'enclose' => '',
1704 1759
 			'placement' => 0,
1705 1760
 		);
1761
+	}
1706 1762
 
1707 1763
 	// Are we moving it?
1708 1764
 	if (isset($_GET['move']) && in_array($smcFunc['htmlspecialchars']($_GET['move']), $move_to))
@@ -1711,8 +1767,10 @@  discard block
 block discarded – undo
1711 1767
 		$new_order = ($_GET['move'] == 'up' ? ($context['field']['order'] - 1) : ($context['field']['order'] + 1));
1712 1768
 
1713 1769
 		// Is this a valid position?
1714
-		if ($new_order <= 0 || $new_order > $order_count)
1715
-			redirectexit('action=admin;area=featuresettings;sa=profile'); // @todo implement an error handler
1770
+		if ($new_order <= 0 || $new_order > $order_count) {
1771
+					redirectexit('action=admin;area=featuresettings;sa=profile');
1772
+		}
1773
+		// @todo implement an error handler
1716 1774
 
1717 1775
 		// All good, proceed.
1718 1776
 		$smcFunc['db_query']('','
@@ -1743,12 +1801,14 @@  discard block
 block discarded – undo
1743 1801
 		validateToken('admin-ecp');
1744 1802
 
1745 1803
 		// Everyone needs a name - even the (bracket) unknown...
1746
-		if (trim($_POST['field_name']) == '')
1747
-			redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name');
1804
+		if (trim($_POST['field_name']) == '') {
1805
+					redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name');
1806
+		}
1748 1807
 
1749 1808
 		// Regex you say?  Do a very basic test to see if the pattern is valid
1750
-		if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false)
1751
-			redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error');
1809
+		if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) {
1810
+					redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error');
1811
+		}
1752 1812
 
1753 1813
 		$_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']);
1754 1814
 		$_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']);
@@ -1765,8 +1825,9 @@  discard block
 block discarded – undo
1765 1825
 
1766 1826
 		// Some masking stuff...
1767 1827
 		$mask = isset($_POST['mask']) ? $_POST['mask'] : '';
1768
-		if ($mask == 'regex' && isset($_POST['regex']))
1769
-			$mask .= $_POST['regex'];
1828
+		if ($mask == 'regex' && isset($_POST['regex'])) {
1829
+					$mask .= $_POST['regex'];
1830
+		}
1770 1831
 
1771 1832
 		$field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255;
1772 1833
 		$enclose = isset($_POST['enclose']) ? $_POST['enclose'] : '';
@@ -1785,8 +1846,9 @@  discard block
 block discarded – undo
1785 1846
 				$v = strtr($v, array(',' => ''));
1786 1847
 
1787 1848
 				// Nada, zip, etc...
1788
-				if (trim($v) == '')
1789
-					continue;
1849
+				if (trim($v) == '') {
1850
+									continue;
1851
+				}
1790 1852
 
1791 1853
 				// Otherwise, save it boy.
1792 1854
 				$field_options .= $v . ',';
@@ -1794,15 +1856,17 @@  discard block
 block discarded – undo
1794 1856
 				$newOptions[$k] = $v;
1795 1857
 
1796 1858
 				// Is it default?
1797
-				if (isset($_POST['default_select']) && $_POST['default_select'] == $k)
1798
-					$default = $v;
1859
+				if (isset($_POST['default_select']) && $_POST['default_select'] == $k) {
1860
+									$default = $v;
1861
+				}
1799 1862
 			}
1800 1863
 			$field_options = substr($field_options, 0, -1);
1801 1864
 		}
1802 1865
 
1803 1866
 		// Text area has default has dimensions
1804
-		if ($_POST['field_type'] == 'textarea')
1805
-			$default = (int) $_POST['rows'] . ',' . (int) $_POST['cols'];
1867
+		if ($_POST['field_type'] == 'textarea') {
1868
+					$default = (int) $_POST['rows'] . ',' . (int) $_POST['cols'];
1869
+		}
1806 1870
 
1807 1871
 		// Come up with the unique name?
1808 1872
 		if (empty($context['fid']))
@@ -1811,32 +1875,36 @@  discard block
 block discarded – undo
1811 1875
 			preg_match('~([\w\d_-]+)~', $col_name, $matches);
1812 1876
 
1813 1877
 			// If there is nothing to the name, then let's start out own - for foreign languages etc.
1814
-			if (isset($matches[1]))
1815
-				$col_name = $initial_col_name = 'cust_' . strtolower($matches[1]);
1816
-			else
1817
-				$col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999);
1878
+			if (isset($matches[1])) {
1879
+							$col_name = $initial_col_name = 'cust_' . strtolower($matches[1]);
1880
+			} else {
1881
+							$col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999);
1882
+			}
1818 1883
 
1819 1884
 			// Make sure this is unique.
1820 1885
 			$current_fields = array();
1821 1886
 			$request = $smcFunc['db_query']('', '
1822 1887
 				SELECT id_field, col_name
1823 1888
 				FROM {db_prefix}custom_fields');
1824
-			while ($row = $smcFunc['db_fetch_assoc']($request))
1825
-				$current_fields[$row['id_field']] = $row['col_name'];
1889
+			while ($row = $smcFunc['db_fetch_assoc']($request)) {
1890
+							$current_fields[$row['id_field']] = $row['col_name'];
1891
+			}
1826 1892
 			$smcFunc['db_free_result']($request);
1827 1893
 
1828 1894
 			$unique = false;
1829 1895
 			for ($i = 0; !$unique && $i < 9; $i ++)
1830 1896
 			{
1831
-				if (!in_array($col_name, $current_fields))
1832
-					$unique = true;
1833
-				else
1834
-					$col_name = $initial_col_name . $i;
1897
+				if (!in_array($col_name, $current_fields)) {
1898
+									$unique = true;
1899
+				} else {
1900
+									$col_name = $initial_col_name . $i;
1901
+				}
1835 1902
 			}
1836 1903
 
1837 1904
 			// Still not a unique column name? Leave it up to the user, then.
1838
-			if (!$unique)
1839
-				fatal_lang_error('custom_option_not_unique');
1905
+			if (!$unique) {
1906
+							fatal_lang_error('custom_option_not_unique');
1907
+			}
1840 1908
 		}
1841 1909
 		// Work out what to do with the user data otherwise...
1842 1910
 		else
@@ -1864,8 +1932,9 @@  discard block
 block discarded – undo
1864 1932
 				// Work out what's changed!
1865 1933
 				foreach ($context['field']['options'] as $k => $option)
1866 1934
 				{
1867
-					if (trim($option) == '')
1868
-						continue;
1935
+					if (trim($option) == '') {
1936
+											continue;
1937
+					}
1869 1938
 
1870 1939
 					// Still exists?
1871 1940
 					if (in_array($option, $newOptions))
@@ -1879,8 +1948,8 @@  discard block
 block discarded – undo
1879 1948
 				foreach ($optionChanges as $k => $option)
1880 1949
 				{
1881 1950
 					// Just been renamed?
1882
-					if (!in_array($k, $takenKeys) && !empty($newOptions[$k]))
1883
-						$smcFunc['db_query']('', '
1951
+					if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) {
1952
+											$smcFunc['db_query']('', '
1884 1953
 							UPDATE {db_prefix}themes
1885 1954
 							SET value = {string:new_value}
1886 1955
 							WHERE variable = {string:current_column}
@@ -1893,6 +1962,7 @@  discard block
 block discarded – undo
1893 1962
 								'old_value' => $option,
1894 1963
 							)
1895 1964
 						);
1965
+					}
1896 1966
 				}
1897 1967
 			}
1898 1968
 			// @todo Maybe we should adjust based on new text length limits?
@@ -1935,8 +2005,8 @@  discard block
 block discarded – undo
1935 2005
 			);
1936 2006
 
1937 2007
 			// Just clean up any old selects - these are a pain!
1938
-			if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions))
1939
-				$smcFunc['db_query']('', '
2008
+			if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) {
2009
+							$smcFunc['db_query']('', '
1940 2010
 					DELETE FROM {db_prefix}themes
1941 2011
 					WHERE variable = {string:current_column}
1942 2012
 						AND value NOT IN ({array_string:new_option_values})
@@ -1947,8 +2017,8 @@  discard block
 block discarded – undo
1947 2017
 						'current_column' => $context['field']['col_name'],
1948 2018
 					)
1949 2019
 				);
1950
-		}
1951
-		else
2020
+			}
2021
+		} else
1952 2022
 		{
1953 2023
 			// Gotta figure it out the order.
1954 2024
 			$new_order = $order_count > 1 ? ($order_count + 1) : 1;
@@ -2123,11 +2193,13 @@  discard block
 block discarded – undo
2123 2193
 	call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false));
2124 2194
 
2125 2195
 	$prune_toggle_dt = array();
2126
-	foreach ($prune_toggle as $item)
2127
-		$prune_toggle_dt[] = 'setting_' . $item;
2196
+	foreach ($prune_toggle as $item) {
2197
+			$prune_toggle_dt[] = 'setting_' . $item;
2198
+	}
2128 2199
 
2129
-	if ($return_config)
2130
-		return $config_vars;
2200
+	if ($return_config) {
2201
+			return $config_vars;
2202
+	}
2131 2203
 
2132 2204
 	addInlineJavaScript('
2133 2205
 	function togglePruned()
@@ -2165,15 +2237,16 @@  discard block
 block discarded – undo
2165 2237
 			$vals = array();
2166 2238
 			foreach ($config_vars as $index => $dummy)
2167 2239
 			{
2168
-				if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle))
2169
-					continue;
2240
+				if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) {
2241
+									continue;
2242
+				}
2170 2243
 
2171 2244
 				$vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]];
2172 2245
 			}
2173 2246
 			$_POST['pruningOptions'] = implode(',', $vals);
2247
+		} else {
2248
+					$_POST['pruningOptions'] = '';
2174 2249
 		}
2175
-		else
2176
-			$_POST['pruningOptions'] = '';
2177 2250
 
2178 2251
 		saveDBSettings($savevar);
2179 2252
 		$_SESSION['adm-save'] = true;
@@ -2185,10 +2258,11 @@  discard block
 block discarded – undo
2185 2258
 	$context['sub_template'] = 'show_settings';
2186 2259
 
2187 2260
 	// Get the actual values
2188
-	if (!empty($modSettings['pruningOptions']))
2189
-		@list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']);
2190
-	else
2191
-		$modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0;
2261
+	if (!empty($modSettings['pruningOptions'])) {
2262
+			@list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']);
2263
+	} else {
2264
+			$modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0;
2265
+	}
2192 2266
 
2193 2267
 	prepareDBSettingContext($config_vars);
2194 2268
 }
@@ -2210,8 +2284,9 @@  discard block
 block discarded – undo
2210 2284
 	// Make it even easier to add new settings.
2211 2285
 	call_integration_hook('integrate_general_mod_settings', array(&$config_vars));
2212 2286
 
2213
-	if ($return_config)
2214
-		return $config_vars;
2287
+	if ($return_config) {
2288
+			return $config_vars;
2289
+	}
2215 2290
 
2216 2291
 	$context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general';
2217 2292
 	$context['settings_title'] = $txt['mods_cat_modifications_misc'];
@@ -2298,8 +2373,9 @@  discard block
 block discarded – undo
2298 2373
 
2299 2374
 	call_integration_hook('integrate_privacy_settings', array(&$config_vars));
2300 2375
 
2301
-	if ($return_config)
2302
-		return $config_vars;
2376
+	if ($return_config) {
2377
+			return $config_vars;
2378
+	}
2303 2379
 
2304 2380
 	// Saving?
2305 2381
 	if (isset($_GET['save']))
Please login to merge, or discard this patch.
Sources/Profile-Actions.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1050,15 +1050,15 @@
 block discarded – undo
1050 1050
 }
1051 1051
 
1052 1052
 /**
1053
-  * Formats a line (passed as a fields  array) as CSV and returns the CSV as a string.
1054
-  * from https://stackoverflow.com/questions/3933668/convert-array-into-csv
1053
+ * Formats a line (passed as a fields  array) as CSV and returns the CSV as a string.
1054
+ * from https://stackoverflow.com/questions/3933668/convert-array-into-csv
1055 1055
  * 
1056 1056
  * @param array $fields a line of the array
1057 1057
  * @param string @delimiter the delimiter char
1058 1058
  * @param string @enclosure the enclosure char
1059 1059
  * @param boolean $encloseAll enclose all
1060 1060
  * @param boolean $nullToMysqlNull
1061
-  */
1061
+ */
1062 1062
 function arrayToCsv( array $fields, $delimiter = ';', $enclosure = '"', $encloseAll = false, $nullToMysqlNull = false ) {
1063 1063
 	$delimiter_esc = preg_quote($delimiter, '/');
1064 1064
 	$enclosure_esc = preg_quote($enclosure, '/');
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -992,12 +992,12 @@  discard block
 block discarded – undo
992 992
 	{
993 993
 		loadMemberData($memID, false, 'profile');
994 994
 		$profile = $user_profile[$memID];
995
-		$removeFields = array('secret_question','tfa_secret','password_salt');
995
+		$removeFields = array('secret_question', 'tfa_secret', 'password_salt');
996 996
 		foreach ($removeFields as $value)
997 997
 		{
998 998
 			unset($profile[$value]);
999 999
 		}
1000
-		foreach($profile as $key => &$value)
1000
+		foreach ($profile as $key => &$value)
1001 1001
 		{
1002 1002
 			if (is_array($value))
1003 1003
 				$value = $smcFunc['json_encode']($value);
@@ -1009,7 +1009,7 @@  discard block
 block discarded – undo
1009 1009
 	elseif ($mode == 'messages') // messages
1010 1010
 	{
1011 1011
 		
1012
-		$request = $smcFunc['db_query']('','
1012
+		$request = $smcFunc['db_query']('', '
1013 1013
 			SELECT id_msg, id_topic, poster_time, subject, modified_time, modified_name, modified_reason, body, likes, poster_ip
1014 1014
 			FROM {db_prefix}messages 
1015 1015
 			WHERE id_member = {int:memID}',
@@ -1027,7 +1027,7 @@  discard block
 block discarded – undo
1027 1027
 	}
1028 1028
 	elseif ($mode == 'pmessages')
1029 1029
 	{
1030
-		$request = $smcFunc['db_query']('','
1030
+		$request = $smcFunc['db_query']('', '
1031 1031
 			SELECT pm.msgtime, pm.subject, pm.body
1032 1032
 			FROM {db_prefix}personal_messages pm
1033 1033
 			LEFT JOIN {db_prefix}pm_recipients pmr on (pm.id_pm = pmr.id_pm and pmr.id_member = {int:memID})
@@ -1045,14 +1045,14 @@  discard block
 block discarded – undo
1045 1045
 	}
1046 1046
 	$count = count($profileData);
1047 1047
 	$csv_data = '';
1048
-	for($i = 0; $i < $count; $i++)
1048
+	for ($i = 0; $i < $count; $i++)
1049 1049
 	{
1050 1050
 		$csv_data .= arrayToCsv($profileData[$i]) . "\r\n";
1051 1051
 	}
1052 1052
 
1053 1053
 
1054 1054
 	header("Pragma: no-cache");
1055
-	header('Content-Disposition: attachment; filename="privacySMF'.$mode.'.csv";');
1055
+	header('Content-Disposition: attachment; filename="privacySMF' . $mode . '.csv";');
1056 1056
 	header("Content-Length: " . strlen($csv_data));
1057 1057
 	header("Content-Transfer-Encoding: binary");
1058 1058
 	header("Content-Type: application/force-download");
@@ -1071,12 +1071,12 @@  discard block
 block discarded – undo
1071 1071
  * @param boolean $encloseAll enclose all
1072 1072
  * @param boolean $nullToMysqlNull
1073 1073
   */
1074
-function arrayToCsv( array $fields, $delimiter = ';', $enclosure = '"', $encloseAll = false, $nullToMysqlNull = false ) {
1074
+function arrayToCsv(array $fields, $delimiter = ';', $enclosure = '"', $encloseAll = false, $nullToMysqlNull = false) {
1075 1075
 	$delimiter_esc = preg_quote($delimiter, '/');
1076 1076
 	$enclosure_esc = preg_quote($enclosure, '/');
1077 1077
 
1078 1078
 	$output = array();
1079
-	foreach ( $fields as $field )
1079
+	foreach ($fields as $field)
1080 1080
 	{
1081 1081
 		if ($field === null && $nullToMysqlNull)
1082 1082
 		{
@@ -1085,7 +1085,7 @@  discard block
 block discarded – undo
1085 1085
 		}
1086 1086
 
1087 1087
 		// Enclose fields containing $delimiter, $enclosure or whitespace
1088
-		if ( $encloseAll || preg_match( "/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field ) )
1088
+		if ($encloseAll || preg_match("/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field))
1089 1089
 		{
1090 1090
 			$output[] = $enclosure . str_replace($enclosure, $enclosure . $enclosure, $field) . $enclosure;
1091 1091
 		}
@@ -1095,7 +1095,7 @@  discard block
 block discarded – undo
1095 1095
 		}
1096 1096
 	}
1097 1097
 
1098
-	return implode( $delimiter, $output );
1098
+	return implode($delimiter, $output);
1099 1099
 }
1100 1100
 
1101 1101
 ?>
1102 1102
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +142 added lines, -105 removed lines patch added patch discarded remove patch
@@ -13,8 +13,9 @@  discard block
 block discarded – undo
13 13
  * @version 2.1 Beta 4
14 14
  */
15 15
 
16
-if (!defined('SMF'))
16
+if (!defined('SMF')) {
17 17
 	die('No direct access...');
18
+}
18 19
 
19 20
 /**
20 21
  * Activate an account.
@@ -48,8 +49,9 @@  discard block
 block discarded – undo
48 49
 		logAction('approve_member', array('member' => $memID), 'admin');
49 50
 
50 51
 		// If we are doing approval, update the stats for the member just in case.
51
-		if (in_array($user_profile[$memID]['is_activated'], array(3, 4, 5, 13, 14, 15)))
52
-			updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > 1 ? $modSettings['unapprovedMembers'] - 1 : 0)));
52
+		if (in_array($user_profile[$memID]['is_activated'], array(3, 4, 5, 13, 14, 15))) {
53
+					updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > 1 ? $modSettings['unapprovedMembers'] - 1 : 0)));
54
+		}
53 55
 
54 56
 		// Make sure we update the stats too.
55 57
 		updateStats('member', false);
@@ -76,8 +78,9 @@  discard block
 block discarded – undo
76 78
 	$issueErrors = array();
77 79
 
78 80
 	// Doesn't hurt to be overly cautious.
79
-	if (empty($modSettings['warning_enable']) || ($context['user']['is_owner'] && !$cur_profile['warning']) || !allowedTo('issue_warning'))
80
-		fatal_lang_error('no_access', false);
81
+	if (empty($modSettings['warning_enable']) || ($context['user']['is_owner'] && !$cur_profile['warning']) || !allowedTo('issue_warning')) {
82
+			fatal_lang_error('no_access', false);
83
+	}
81 84
 
82 85
 	// Get the base (errors related) stuff done.
83 86
 	loadLanguage('Errors');
@@ -135,16 +138,18 @@  discard block
 block discarded – undo
135 138
 
136 139
 		// This cannot be empty!
137 140
 		$_POST['warn_reason'] = isset($_POST['warn_reason']) ? trim($_POST['warn_reason']) : '';
138
-		if ($_POST['warn_reason'] == '' && !$context['user']['is_owner'])
139
-			$issueErrors[] = 'warning_no_reason';
141
+		if ($_POST['warn_reason'] == '' && !$context['user']['is_owner']) {
142
+					$issueErrors[] = 'warning_no_reason';
143
+		}
140 144
 		$_POST['warn_reason'] = $smcFunc['htmlspecialchars']($_POST['warn_reason']);
141 145
 
142 146
 		$_POST['warning_level'] = (int) $_POST['warning_level'];
143 147
 		$_POST['warning_level'] = max(0, min(100, $_POST['warning_level']));
144
-		if ($_POST['warning_level'] < $context['min_allowed'])
145
-			$_POST['warning_level'] = $context['min_allowed'];
146
-		elseif ($_POST['warning_level'] > $context['max_allowed'])
147
-			$_POST['warning_level'] = $context['max_allowed'];
148
+		if ($_POST['warning_level'] < $context['min_allowed']) {
149
+					$_POST['warning_level'] = $context['min_allowed'];
150
+		} elseif ($_POST['warning_level'] > $context['max_allowed']) {
151
+					$_POST['warning_level'] = $context['max_allowed'];
152
+		}
148 153
 
149 154
 		// Do we actually have to issue them with a PM?
150 155
 		$id_notice = 0;
@@ -152,8 +157,9 @@  discard block
 block discarded – undo
152 157
 		{
153 158
 			$_POST['warn_sub'] = trim($_POST['warn_sub']);
154 159
 			$_POST['warn_body'] = trim($_POST['warn_body']);
155
-			if (empty($_POST['warn_sub']) || empty($_POST['warn_body']))
156
-				$issueErrors[] = 'warning_notify_blank';
160
+			if (empty($_POST['warn_sub']) || empty($_POST['warn_body'])) {
161
+							$issueErrors[] = 'warning_notify_blank';
162
+			}
157 163
 			// Send the PM?
158 164
 			else
159 165
 			{
@@ -190,8 +196,8 @@  discard block
 block discarded – undo
190 196
 		if (empty($issueErrors))
191 197
 		{
192 198
 			// Log what we've done!
193
-			if (!$context['user']['is_owner'])
194
-				$smcFunc['db_insert']('',
199
+			if (!$context['user']['is_owner']) {
200
+							$smcFunc['db_insert']('',
195 201
 					'{db_prefix}log_comments',
196 202
 					array(
197 203
 						'id_member' => 'int', 'member_name' => 'string', 'comment_type' => 'string', 'id_recipient' => 'int', 'recipient_name' => 'string-255',
@@ -203,14 +209,14 @@  discard block
 block discarded – undo
203 209
 					),
204 210
 					array('id_comment')
205 211
 				);
212
+			}
206 213
 
207 214
 			// Make the change.
208 215
 			updateMemberData($memID, array('warning' => $_POST['warning_level']));
209 216
 
210 217
 			// Leave a lovely message.
211 218
 			$context['profile_updated'] = $context['user']['is_owner'] ? $txt['profile_updated_own'] : $txt['profile_warning_success'];
212
-		}
213
-		else
219
+		} else
214 220
 		{
215 221
 			// Try to remember some bits.
216 222
 			$context['warning_data'] = array(
@@ -229,8 +235,9 @@  discard block
 block discarded – undo
229 235
 	{
230 236
 		$warning_body = !empty($_POST['warn_body']) ? trim(censorText($_POST['warn_body'])) : '';
231 237
 		$context['preview_subject'] = !empty($_POST['warn_sub']) ? trim($smcFunc['htmlspecialchars']($_POST['warn_sub'])) : '';
232
-		if (empty($_POST['warn_sub']) || empty($_POST['warn_body']))
233
-			$issueErrors[] = 'warning_notify_blank';
238
+		if (empty($_POST['warn_sub']) || empty($_POST['warn_body'])) {
239
+					$issueErrors[] = 'warning_notify_blank';
240
+		}
234 241
 
235 242
 		if (!empty($_POST['warn_body']))
236 243
 		{
@@ -254,8 +261,9 @@  discard block
 block discarded – undo
254 261
 	{
255 262
 		// Fill in the suite of errors.
256 263
 		$context['post_errors'] = array();
257
-		foreach ($issueErrors as $error)
258
-			$context['post_errors'][] = $txt[$error];
264
+		foreach ($issueErrors as $error) {
265
+					$context['post_errors'][] = $txt[$error];
266
+		}
259 267
 	}
260 268
 
261 269
 
@@ -272,9 +280,10 @@  discard block
 block discarded – undo
272 280
 		$modSettings['warning_mute'] => $txt['profile_warning_effect_mute'],
273 281
 	);
274 282
 	$context['current_level'] = 0;
275
-	foreach ($context['level_effects'] as $limit => $dummy)
276
-		if ($context['member']['warning'] >= $limit)
283
+	foreach ($context['level_effects'] as $limit => $dummy) {
284
+			if ($context['member']['warning'] >= $limit)
277 285
 			$context['current_level'] = $limit;
286
+	}
278 287
 
279 288
 	$listOptions = array(
280 289
 		'id' => 'view_warnings',
@@ -337,11 +346,12 @@  discard block
 block discarded – undo
337 346
 							' . $warning['reason'] . '
338 347
 						</div>';
339 348
 
340
-						if (!empty($warning['id_notice']))
341
-							$ret .= '
349
+						if (!empty($warning['id_notice'])) {
350
+													$ret .= '
342 351
 						<div class="floatright">
343 352
 							<a href="' . $scripturl . '?action=moderate;area=notice;nid=' . $warning['id_notice'] . '" onclick="window.open(this.href, \'\', \'scrollbars=yes,resizable=yes,width=400,height=250\');return false;" target="_blank" rel="noopener" title="' . $txt['profile_warning_previous_notice'] . '"><span class="generic_icons filter centericon"></span></a>
344 353
 						</div>';
354
+						}
345 355
 
346 356
 						return $ret;
347 357
 					},
@@ -412,8 +422,9 @@  discard block
 block discarded – undo
412 422
 	while ($row = $smcFunc['db_fetch_assoc']($request))
413 423
 	{
414 424
 		// If we're not warning for a message skip any that are.
415
-		if (!$context['warning_for_message'] && strpos($row['body'], '{MESSAGE}') !== false)
416
-			continue;
425
+		if (!$context['warning_for_message'] && strpos($row['body'], '{MESSAGE}') !== false) {
426
+					continue;
427
+		}
417 428
 
418 429
 		$context['notification_templates'][] = array(
419 430
 			'title' => $row['template_title'],
@@ -423,16 +434,18 @@  discard block
 block discarded – undo
423 434
 	$smcFunc['db_free_result']($request);
424 435
 
425 436
 	// Setup the "default" templates.
426
-	foreach (array('spamming', 'offence', 'insulting') as $type)
427
-		$context['notification_templates'][] = array(
437
+	foreach (array('spamming', 'offence', 'insulting') as $type) {
438
+			$context['notification_templates'][] = array(
428 439
 			'title' => $txt['profile_warning_notify_title_' . $type],
429 440
 			'body' => sprintf($txt['profile_warning_notify_template_outline' . (!empty($context['warning_for_message']) ? '_post' : '')], $txt['profile_warning_notify_for_' . $type]),
430 441
 		);
442
+	}
431 443
 
432 444
 	// Replace all the common variables in the templates.
433
-	foreach ($context['notification_templates'] as $k => $name)
434
-		$context['notification_templates'][$k]['body'] = strtr($name['body'], array('{MEMBER}' => un_htmlspecialchars($context['member']['name']), '{MESSAGE}' => '[url=' . $scripturl . '?msg=' . $context['warning_for_message'] . ']' . un_htmlspecialchars($context['warned_message_subject']) . '[/url]', '{SCRIPTURL}' => $scripturl, '{FORUMNAME}' => $mbname, '{REGARDS}' => $txt['regards_team']));
435
-}
445
+	foreach ($context['notification_templates'] as $k => $name) {
446
+			$context['notification_templates'][$k]['body'] = strtr($name['body'], array('{MEMBER}' => un_htmlspecialchars($context['member']['name']), '{MESSAGE}' => '[url=' . $scripturl . '?msg=' . $context['warning_for_message'] . ']' . un_htmlspecialchars($context['warned_message_subject']) . '[/url]', '{SCRIPTURL}' => $scripturl, '{FORUMNAME}' => $mbname, '{REGARDS}' => $txt['regards_team']));
447
+	}
448
+	}
436 449
 
437 450
 /**
438 451
  * Get the number of warnings a user has. Callback for $listOptions['get_count'] in issueWarning()
@@ -516,10 +529,11 @@  discard block
 block discarded – undo
516 529
 {
517 530
 	global $txt, $context, $modSettings, $cur_profile;
518 531
 
519
-	if (!$context['user']['is_owner'])
520
-		isAllowedTo('profile_remove_any');
521
-	elseif (!allowedTo('profile_remove_any'))
522
-		isAllowedTo('profile_remove_own');
532
+	if (!$context['user']['is_owner']) {
533
+			isAllowedTo('profile_remove_any');
534
+	} elseif (!allowedTo('profile_remove_any')) {
535
+			isAllowedTo('profile_remove_own');
536
+	}
523 537
 
524 538
 	// Permissions for removing stuff...
525 539
 	$context['can_delete_posts'] = !$context['user']['is_owner'] && allowedTo('moderate_forum');
@@ -546,10 +560,11 @@  discard block
 block discarded – undo
546 560
 
547 561
 	// @todo Add a way to delete pms as well?
548 562
 
549
-	if (!$context['user']['is_owner'])
550
-		isAllowedTo('profile_remove_any');
551
-	elseif (!allowedTo('profile_remove_any'))
552
-		isAllowedTo('profile_remove_own');
563
+	if (!$context['user']['is_owner']) {
564
+			isAllowedTo('profile_remove_any');
565
+	} elseif (!allowedTo('profile_remove_any')) {
566
+			isAllowedTo('profile_remove_own');
567
+	}
553 568
 
554 569
 	checkSession();
555 570
 
@@ -575,8 +590,9 @@  discard block
 block discarded – undo
575 590
 		list ($another) = $smcFunc['db_fetch_row']($request);
576 591
 		$smcFunc['db_free_result']($request);
577 592
 
578
-		if (empty($another))
579
-			fatal_lang_error('at_least_one_admin', 'critical');
593
+		if (empty($another)) {
594
+					fatal_lang_error('at_least_one_admin', 'critical');
595
+		}
580 596
 	}
581 597
 
582 598
 	// This file is needed for the deleteMembers function.
@@ -655,8 +671,9 @@  discard block
 block discarded – undo
655 671
 					)
656 672
 				);
657 673
 				$topicIDs = array();
658
-				while ($row = $smcFunc['db_fetch_assoc']($request))
659
-					$topicIDs[] = $row['id_topic'];
674
+				while ($row = $smcFunc['db_fetch_assoc']($request)) {
675
+									$topicIDs[] = $row['id_topic'];
676
+				}
660 677
 				$smcFunc['db_free_result']($request);
661 678
 
662 679
 				// Actually remove the topics. Ignore recycling if we want to perma-delete things...
@@ -679,8 +696,9 @@  discard block
 block discarded – undo
679 696
 			// This could take a while... but ya know it's gonna be worth it in the end.
680 697
 			while ($row = $smcFunc['db_fetch_assoc']($request))
681 698
 			{
682
-				if (function_exists('apache_reset_timeout'))
683
-					@apache_reset_timeout();
699
+				if (function_exists('apache_reset_timeout')) {
700
+									@apache_reset_timeout();
701
+				}
684 702
 
685 703
 				removeMessage($row['id_msg']);
686 704
 			}
@@ -688,8 +706,9 @@  discard block
 block discarded – undo
688 706
 		}
689 707
 
690 708
 		// Only delete this poor members account if they are actually being booted out of camp.
691
-		if (isset($_POST['deleteAccount']))
692
-			deleteMembers($memID);
709
+		if (isset($_POST['deleteAccount'])) {
710
+					deleteMembers($memID);
711
+		}
693 712
 	}
694 713
 	// Do they need approval to delete?
695 714
 	elseif (!empty($modSettings['approveAccountDeletion']) && !allowedTo('moderate_forum'))
@@ -740,18 +759,18 @@  discard block
 block discarded – undo
740 759
 		{
741 760
 			foreach ($costs as $duration => $cost)
742 761
 			{
743
-				if ($cost != 0)
744
-					$cost_array[$duration] = $cost;
762
+				if ($cost != 0) {
763
+									$cost_array[$duration] = $cost;
764
+				}
745 765
 			}
746
-		}
747
-		else
766
+		} else
748 767
 		{
749 768
 			$cost_array['fixed'] = $costs['fixed'];
750 769
 		}
751 770
 
752
-		if (empty($cost_array))
753
-			unset($context['subscriptions'][$id]);
754
-		else
771
+		if (empty($cost_array)) {
772
+					unset($context['subscriptions'][$id]);
773
+		} else
755 774
 		{
756 775
 			$context['subscriptions'][$id]['member'] = 0;
757 776
 			$context['subscriptions'][$id]['subscribed'] = false;
@@ -764,13 +783,15 @@  discard block
 block discarded – undo
764 783
 	foreach ($gateways as $id => $gateway)
765 784
 	{
766 785
 		$gateways[$id] = new $gateway['display_class']();
767
-		if (!$gateways[$id]->gatewayEnabled())
768
-			unset($gateways[$id]);
786
+		if (!$gateways[$id]->gatewayEnabled()) {
787
+					unset($gateways[$id]);
788
+		}
769 789
 	}
770 790
 
771 791
 	// No gateways yet?
772
-	if (empty($gateways))
773
-		fatal_error($txt['paid_admin_not_setup_gateway']);
792
+	if (empty($gateways)) {
793
+			fatal_error($txt['paid_admin_not_setup_gateway']);
794
+	}
774 795
 
775 796
 	// Get the current subscriptions.
776 797
 	$request = $smcFunc['db_query']('', '
@@ -785,8 +806,9 @@  discard block
 block discarded – undo
785 806
 	while ($row = $smcFunc['db_fetch_assoc']($request))
786 807
 	{
787 808
 		// The subscription must exist!
788
-		if (!isset($context['subscriptions'][$row['id_subscribe']]))
789
-			continue;
809
+		if (!isset($context['subscriptions'][$row['id_subscribe']])) {
810
+					continue;
811
+		}
790 812
 
791 813
 		$context['current'][$row['id_subscribe']] = array(
792 814
 			'id' => $row['id_sublog'],
@@ -800,8 +822,9 @@  discard block
 block discarded – undo
800 822
 			'status_text' => $row['status'] == 0 ? ($row['payments_pending'] ? $txt['paid_pending'] : $txt['paid_finished']) : $txt['paid_active'],
801 823
 		);
802 824
 
803
-		if ($row['status'] == 1)
804
-			$context['subscriptions'][$row['id_subscribe']]['subscribed'] = true;
825
+		if ($row['status'] == 1) {
826
+					$context['subscriptions'][$row['id_subscribe']]['subscribed'] = true;
827
+		}
805 828
 	}
806 829
 	$smcFunc['db_free_result']($request);
807 830
 
@@ -852,21 +875,25 @@  discard block
 block discarded – undo
852 875
 	if (isset($_GET['confirm']) && isset($_POST['sub_id']) && is_array($_POST['sub_id']))
853 876
 	{
854 877
 		// Hopefully just one.
855
-		foreach ($_POST['sub_id'] as $k => $v)
856
-			$ID_SUB = (int) $k;
878
+		foreach ($_POST['sub_id'] as $k => $v) {
879
+					$ID_SUB = (int) $k;
880
+		}
857 881
 
858
-		if (!isset($context['subscriptions'][$ID_SUB]) || $context['subscriptions'][$ID_SUB]['active'] == 0)
859
-			fatal_lang_error('paid_sub_not_active');
882
+		if (!isset($context['subscriptions'][$ID_SUB]) || $context['subscriptions'][$ID_SUB]['active'] == 0) {
883
+					fatal_lang_error('paid_sub_not_active');
884
+		}
860 885
 
861 886
 		// Simplify...
862 887
 		$context['sub'] = $context['subscriptions'][$ID_SUB];
863 888
 		$period = 'xx';
864
-		if ($context['sub']['flexible'])
865
-			$period = isset($_POST['cur'][$ID_SUB]) && isset($context['sub']['costs'][$_POST['cur'][$ID_SUB]]) ? $_POST['cur'][$ID_SUB] : 'xx';
889
+		if ($context['sub']['flexible']) {
890
+					$period = isset($_POST['cur'][$ID_SUB]) && isset($context['sub']['costs'][$_POST['cur'][$ID_SUB]]) ? $_POST['cur'][$ID_SUB] : 'xx';
891
+		}
866 892
 
867 893
 		// Check we have a valid cost.
868
-		if ($context['sub']['flexible'] && $period == 'xx')
869
-			fatal_lang_error('paid_sub_not_active');
894
+		if ($context['sub']['flexible'] && $period == 'xx') {
895
+					fatal_lang_error('paid_sub_not_active');
896
+		}
870 897
 
871 898
 		// Sort out the cost/currency.
872 899
 		$context['currency'] = $modSettings['paid_currency_code'];
@@ -879,8 +906,7 @@  discard block
 block discarded – undo
879 906
 			$context['cost'] = sprintf($modSettings['paid_currency_symbol'], $context['value']) . '/' . $txt[$_POST['cur'][$ID_SUB]];
880 907
 			// The period value for paypal.
881 908
 			$context['paypal_period'] = strtoupper(substr($_POST['cur'][$ID_SUB], 0, 1));
882
-		}
883
-		else
909
+		} else
884 910
 		{
885 911
 			// Real cost...
886 912
 			$context['value'] = $context['sub']['costs']['fixed'];
@@ -897,13 +923,15 @@  discard block
 block discarded – undo
897 923
 		foreach ($gateways as $id => $gateway)
898 924
 		{
899 925
 			$fields = $gateways[$id]->fetchGatewayFields($context['sub']['id'] . '+' . $memID, $context['sub'], $context['value'], $period, $scripturl . '?action=profile;u=' . $memID . ';area=subscriptions;sub_id=' . $context['sub']['id'] . ';done');
900
-			if (!empty($fields['form']))
901
-				$context['gateways'][] = $fields;
926
+			if (!empty($fields['form'])) {
927
+							$context['gateways'][] = $fields;
928
+			}
902 929
 		}
903 930
 
904 931
 		// Bugger?!
905
-		if (empty($context['gateways']))
906
-			fatal_error($txt['paid_admin_not_setup_gateway']);
932
+		if (empty($context['gateways'])) {
933
+					fatal_error($txt['paid_admin_not_setup_gateway']);
934
+		}
907 935
 
908 936
 		// Now we are going to assume they want to take this out ;)
909 937
 		$new_data = array($context['sub']['id'], $context['value'], $period, 'prepay');
@@ -911,16 +939,19 @@  discard block
 block discarded – undo
911 939
 		{
912 940
 			// What are the details like?
913 941
 			$current_pending = array();
914
-			if ($context['current'][$context['sub']['id']]['pending_details'] != '')
915
-				$current_pending = $smcFunc['json_decode']($context['current'][$context['sub']['id']]['pending_details'], true);
942
+			if ($context['current'][$context['sub']['id']]['pending_details'] != '') {
943
+							$current_pending = $smcFunc['json_decode']($context['current'][$context['sub']['id']]['pending_details'], true);
944
+			}
916 945
 			// Don't get silly.
917
-			if (count($current_pending) > 9)
918
-				$current_pending = array();
946
+			if (count($current_pending) > 9) {
947
+							$current_pending = array();
948
+			}
919 949
 			$pending_count = 0;
920 950
 			// Only record real pending payments as will otherwise confuse the admin!
921
-			foreach ($current_pending as $pending)
922
-				if ($pending[3] == 'payback')
951
+			foreach ($current_pending as $pending) {
952
+							if ($pending[3] == 'payback')
923 953
 					$pending_count++;
954
+			}
924 955
 
925 956
 			if (!in_array($new_data, $current_pending))
926 957
 			{
@@ -964,10 +995,10 @@  discard block
 block discarded – undo
964 995
 
965 996
 		// Quit.
966 997
 		return;
998
+	} else {
999
+			$context['sub_template'] = 'user_subscription';
1000
+	}
967 1001
 	}
968
-	else
969
-		$context['sub_template'] = 'user_subscription';
970
-}
971 1002
 
972 1003
 /**
973 1004
  * Function to allow the user to todo Privacy stuff
@@ -978,19 +1009,23 @@  discard block
 block discarded – undo
978 1009
 {
979 1010
 	global $txt, $user_profile, $context, $smcFunc, $user_info;
980 1011
 
981
-	if ($memID == $user_info['id'])
982
-		$context['pdc']['own'] = true;
983
-	else
984
-		$context['pdc']['name'] = $context['member']['name'];
985
-	if (empty($_REQUEST['activity']))
986
-		return;
1012
+	if ($memID == $user_info['id']) {
1013
+			$context['pdc']['own'] = true;
1014
+	} else {
1015
+			$context['pdc']['name'] = $context['member']['name'];
1016
+	}
1017
+	if (empty($_REQUEST['activity'])) {
1018
+			return;
1019
+	}
987 1020
 	
988 1021
 	$mode = $_REQUEST['activity'];
989 1022
 
990 1023
 	$profileData = array();
991
-	if ($mode == 'profile') // profile
1024
+	if ($mode == 'profile') {
1025
+		// profile
992 1026
 	{
993 1027
 		loadMemberData($memID, false, 'profile');
1028
+	}
994 1029
 		$profile = $user_profile[$memID];
995 1030
 		$removeFields = array('secret_question','tfa_secret','password_salt');
996 1031
 		foreach ($removeFields as $value)
@@ -999,14 +1034,15 @@  discard block
 block discarded – undo
999 1034
 		}
1000 1035
 		foreach($profile as $key => &$value)
1001 1036
 		{
1002
-			if (is_array($value))
1003
-				$value = $smcFunc['json_encode']($value);
1037
+			if (is_array($value)) {
1038
+							$value = $smcFunc['json_encode']($value);
1039
+			}
1004 1040
 		}
1005 1041
 		$profileData[0] = array_keys($profile);
1006 1042
 		$profileData[1] = $profile;
1007 1043
 		call_integration_hook('integrate_getProfile_profile', array(&$profileData));
1008
-	}
1009
-	elseif ($mode == 'messages') // messages
1044
+	} elseif ($mode == 'messages') {
1045
+		// messages
1010 1046
 	{
1011 1047
 		
1012 1048
 		$request = $smcFunc['db_query']('','
@@ -1017,15 +1053,16 @@  discard block
 block discarded – undo
1017 1053
 				'memID' => $memID,
1018 1054
 			)
1019 1055
 		);
1056
+	}
1020 1057
 		$profileData = $smcFunc['db_fetch_all']($request);
1021
-		if (!is_array($profileData))
1022
-			exit;
1058
+		if (!is_array($profileData)) {
1059
+					exit;
1060
+		}
1023 1061
 		array_unshift($profileData, array_keys($profileData[0]));
1024 1062
 		$smcFunc['db_free_result']($request);
1025 1063
 
1026 1064
 		call_integration_hook('integrate_getProfile_messages', array(&$profileData));
1027
-	}
1028
-	elseif ($mode == 'pmessages')
1065
+	} elseif ($mode == 'pmessages')
1029 1066
 	{
1030 1067
 		$request = $smcFunc['db_query']('','
1031 1068
 			SELECT pm.msgtime, pm.subject, pm.body
@@ -1037,8 +1074,9 @@  discard block
 block discarded – undo
1037 1074
 			)
1038 1075
 		);
1039 1076
 		$profileData = $smcFunc['db_fetch_all']($request);
1040
-		if (!is_array($profileData))
1041
-			exit;
1077
+		if (!is_array($profileData)) {
1078
+					exit;
1079
+		}
1042 1080
 		array_unshift($profileData, array_keys($profileData[0]));
1043 1081
 		$smcFunc['db_free_result']($request);
1044 1082
 		call_integration_hook('integrate_getProfile_pmessages', array(&$profileData));
@@ -1088,8 +1126,7 @@  discard block
 block discarded – undo
1088 1126
 		if ( $encloseAll || preg_match( "/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field ) )
1089 1127
 		{
1090 1128
 			$output[] = $enclosure . str_replace($enclosure, $enclosure . $enclosure, $field) . $enclosure;
1091
-		}
1092
-		else
1129
+		} else
1093 1130
 		{
1094 1131
 			$output[] = $field;
1095 1132
 		}
Please login to merge, or discard this patch.