Completed
Pull Request — release-2.1 (#4985)
by Fran
06:10
created
Sources/Printpage.php 1 patch
Braces   +30 added lines, -23 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
  * Format a topic to be printer friendly.
@@ -32,8 +33,9 @@  discard block
 block discarded – undo
32 33
 	global $board_info, $smcFunc, $modSettings;
33 34
 
34 35
 	// Redirect to the boardindex if no valid topic id is provided.
35
-	if (empty($topic))
36
-		redirectexit();
36
+	if (empty($topic)) {
37
+			redirectexit();
38
+	}
37 39
 
38 40
 	if (!empty($modSettings['disable_print_topic']))
39 41
 	{
@@ -59,8 +61,9 @@  discard block
 block discarded – undo
59 61
 		)
60 62
 	);
61 63
 	// Redirect to the boardindex if no valid topic id is provided.
62
-	if ($smcFunc['db_num_rows']($request) == 0)
63
-		redirectexit();
64
+	if ($smcFunc['db_num_rows']($request) == 0) {
65
+			redirectexit();
66
+	}
64 67
 	$row = $smcFunc['db_fetch_assoc']($request);
65 68
 	$smcFunc['db_free_result']($request);
66 69
 
@@ -134,20 +137,21 @@  discard block
 block discarded – undo
134 137
 				foreach ($guestinfo as $i => $guestvoted)
135 138
 				{
136 139
 					$guestvoted = explode(',', $guestvoted);
137
-					if ($guestvoted[0] == $row['id_poll'])
138
-						break;
140
+					if ($guestvoted[0] == $row['id_poll']) {
141
+											break;
142
+					}
139 143
 				}
140 144
 				// Has the poll been reset since guest voted?
141 145
 				if ($pollinfo['reset_poll'] > $guestvoted[1])
142 146
 				{
143 147
 					// Remove the poll info from the cookie to allow guest to vote again
144 148
 					unset($guestinfo[$i]);
145
-					if (!empty($guestinfo))
146
-						$_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo);
147
-					else
148
-						unset($_COOKIE['guest_poll_vote']);
149
-				}
150
-				else
149
+					if (!empty($guestinfo)) {
150
+											$_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo);
151
+					} else {
152
+											unset($_COOKIE['guest_poll_vote']);
153
+					}
154
+				} else
151 155
 				{
152 156
 					// What did they vote for?
153 157
 					unset($guestvoted[0], $guestvoted[1]);
@@ -233,8 +237,9 @@  discard block
 block discarded – undo
233 237
 	$context['poster_name'] = $row['poster_name'];
234 238
 	$context['post_time'] = timeformat($row['poster_time'], false);
235 239
 	$context['parent_boards'] = array();
236
-	foreach ($board_info['parent_boards'] as $parent)
237
-		$context['parent_boards'][] = $parent['name'];
240
+	foreach ($board_info['parent_boards'] as $parent) {
241
+			$context['parent_boards'][] = $parent['name'];
242
+	}
238 243
 
239 244
 	// Split the topics up so we can print them.
240 245
 	$request = $smcFunc['db_query']('', '
@@ -266,8 +271,9 @@  discard block
 block discarded – undo
266 271
 			'id_msg' => $row['id_msg'],
267 272
 		);
268 273
 
269
-		if (!isset($context['topic_subject']))
270
-			$context['topic_subject'] = $row['subject'];
274
+		if (!isset($context['topic_subject'])) {
275
+					$context['topic_subject'] = $row['subject'];
276
+		}
271 277
 	}
272 278
 	$smcFunc['db_free_result']($request);
273 279
 
@@ -275,8 +281,9 @@  discard block
 block discarded – undo
275 281
 	if (isset($_REQUEST['images']) && !empty($modSettings['attachmentEnable']) && allowedTo('view_attachments'))
276 282
 	{
277 283
 		$messages = array();
278
-		foreach ($context['posts'] as $temp)
279
-			$messages[] = $temp['id_msg'];
284
+		foreach ($context['posts'] as $temp) {
285
+					$messages[] = $temp['id_msg'];
286
+		}
280 287
 
281 288
 		// build the request
282 289
 		$request = $smcFunc['db_query']('', '
@@ -295,8 +302,9 @@  discard block
 block discarded – undo
295 302
 		while ($row = $smcFunc['db_fetch_assoc']($request))
296 303
 		{
297 304
 			$temp[$row['id_attach']] = $row;
298
-			if (!isset($context['printattach'][$row['id_msg']]))
299
-				$context['printattach'][$row['id_msg']] = array();
305
+			if (!isset($context['printattach'][$row['id_msg']])) {
306
+							$context['printattach'][$row['id_msg']] = array();
307
+			}
300 308
 		}
301 309
 		$smcFunc['db_free_result']($request);
302 310
 		ksort($temp);
@@ -313,8 +321,7 @@  discard block
 block discarded – undo
313 321
 						$row['height'] = floor($row['height'] * ($modSettings['max_image_width'] / $row['width']));
314 322
 						$row['width'] = $modSettings['max_image_width'];
315 323
 					}
316
-				}
317
-				elseif (!empty($modSettings['max_image_width']))
324
+				} elseif (!empty($modSettings['max_image_width']))
318 325
 				{
319 326
 					if ($row['height'] > $modSettings['max_image_height'])
320 327
 					{
Please login to merge, or discard this patch.
Sources/ManageCalendar.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 					'value' => $txt['date'],
137 137
 				),
138 138
 				'data' => array(
139
-					'function' => function ($rowData) use ($txt)
139
+					'function' => function($rowData) use ($txt)
140 140
 					{
141 141
 						// Recurring every year or just a single year?
142 142
 						$year = $rowData['year'] == '1004' ? sprintf('(%1$s)', $txt['every_year']) : $rowData['year'];
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 		checkSession();
219 219
 
220 220
 		// Not too long good sir?
221
-		$_REQUEST['title'] =  $smcFunc['substr']($_REQUEST['title'], 0, 60);
221
+		$_REQUEST['title'] = $smcFunc['substr']($_REQUEST['title'], 0, 60);
222 222
 		$_REQUEST['holiday'] = isset($_REQUEST['holiday']) ? (int) $_REQUEST['holiday'] : 0;
223 223
 
224 224
 		if (isset($_REQUEST['delete']))
Please login to merge, or discard this patch.
Braces   +37 added lines, -28 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
  * The main controlling function doesn't have much to do... yet.
@@ -43,8 +44,7 @@  discard block
 block discarded – undo
43 44
 			'settings' => 'ModifyCalendarSettings'
44 45
 		);
45 46
 		$default = 'holidays';
46
-	}
47
-	else
47
+	} else
48 48
 	{
49 49
 		$subActions = array(
50 50
 			'settings' => 'ModifyCalendarSettings'
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 		'help' => 'calendar',
61 61
 		'description' => $txt['calendar_settings_desc'],
62 62
 	);
63
-	if (!empty($modSettings['cal_enabled']))
64
-		$context[$context['admin_menu_name']]['tab_data']['tabs'] = array(
63
+	if (!empty($modSettings['cal_enabled'])) {
64
+			$context[$context['admin_menu_name']]['tab_data']['tabs'] = array(
65 65
 			'holidays' => array(
66 66
 				'description' => $txt['manage_holidays_desc'],
67 67
 			),
@@ -69,6 +69,7 @@  discard block
 block discarded – undo
69 69
 				'description' => $txt['calendar_settings_desc'],
70 70
 			),
71 71
 		);
72
+	}
72 73
 
73 74
 	call_integration_hook('integrate_manage_calendar', array(&$subActions));
74 75
 
@@ -88,8 +89,9 @@  discard block
 block discarded – undo
88 89
 		checkSession();
89 90
 		validateToken('admin-mc');
90 91
 
91
-		foreach ($_REQUEST['holiday'] as $id => $value)
92
-			$_REQUEST['holiday'][$id] = (int) $id;
92
+		foreach ($_REQUEST['holiday'] as $id => $value) {
93
+					$_REQUEST['holiday'][$id] = (int) $id;
94
+		}
93 95
 
94 96
 		// Now the IDs are "safe" do the delete...
95 97
 		require_once($sourcedir . '/Subs-Calendar.php');
@@ -209,8 +211,9 @@  discard block
 block discarded – undo
209 211
 	$context['sub_template'] = 'edit_holiday';
210 212
 
211 213
 	// Cast this for safety...
212
-	if (isset($_REQUEST['holiday']))
213
-		$_REQUEST['holiday'] = (int) $_REQUEST['holiday'];
214
+	if (isset($_REQUEST['holiday'])) {
215
+			$_REQUEST['holiday'] = (int) $_REQUEST['holiday'];
216
+	}
214 217
 
215 218
 	// Submitting?
216 219
 	if (isset($_POST[$context['session_var']]) && (isset($_REQUEST['delete']) || $_REQUEST['title'] != ''))
@@ -221,19 +224,19 @@  discard block
 block discarded – undo
221 224
 		$_REQUEST['title'] =  $smcFunc['substr']($_REQUEST['title'], 0, 60);
222 225
 		$_REQUEST['holiday'] = isset($_REQUEST['holiday']) ? (int) $_REQUEST['holiday'] : 0;
223 226
 
224
-		if (isset($_REQUEST['delete']))
225
-			$smcFunc['db_query']('', '
227
+		if (isset($_REQUEST['delete'])) {
228
+					$smcFunc['db_query']('', '
226 229
 				DELETE FROM {db_prefix}calendar_holidays
227 230
 				WHERE id_holiday = {int:selected_holiday}',
228 231
 				array(
229 232
 					'selected_holiday' => $_REQUEST['holiday'],
230 233
 				)
231 234
 			);
232
-		else
235
+		} else
233 236
 		{
234 237
 			$date = strftime($_REQUEST['year'] <= 1004 ? '1004-%m-%d' : '%Y-%m-%d', mktime(0, 0, 0, $_REQUEST['month'], $_REQUEST['day'], $_REQUEST['year']));
235
-			if (isset($_REQUEST['edit']))
236
-				$smcFunc['db_query']('', '
238
+			if (isset($_REQUEST['edit'])) {
239
+							$smcFunc['db_query']('', '
237 240
 					UPDATE {db_prefix}calendar_holidays
238 241
 					SET event_date = {date:holiday_date}, title = {string:holiday_title}
239 242
 					WHERE id_holiday = {int:selected_holiday}',
@@ -243,8 +246,8 @@  discard block
 block discarded – undo
243 246
 						'holiday_title' => $_REQUEST['title'],
244 247
 					)
245 248
 				);
246
-			else
247
-				$smcFunc['db_insert']('',
249
+			} else {
250
+							$smcFunc['db_insert']('',
248 251
 					'{db_prefix}calendar_holidays',
249 252
 					array(
250 253
 						'event_date' => 'date', 'title' => 'string-60',
@@ -254,6 +257,7 @@  discard block
 block discarded – undo
254 257
 					),
255 258
 					array('id_holiday')
256 259
 				);
260
+			}
257 261
 		}
258 262
 
259 263
 		updateSettings(array(
@@ -265,14 +269,15 @@  discard block
 block discarded – undo
265 269
 	}
266 270
 
267 271
 	// Default states...
268
-	if ($context['is_new'])
269
-		$context['holiday'] = array(
272
+	if ($context['is_new']) {
273
+			$context['holiday'] = array(
270 274
 			'id' => 0,
271 275
 			'day' => date('d'),
272 276
 			'month' => date('m'),
273 277
 			'year' => '0000',
274 278
 			'title' => ''
275 279
 		);
280
+	}
276 281
 	// If it's not new load the data.
277 282
 	else
278 283
 	{
@@ -285,14 +290,15 @@  discard block
 block discarded – undo
285 290
 				'selected_holiday' => $_REQUEST['holiday'],
286 291
 			)
287 292
 		);
288
-		while ($row = $smcFunc['db_fetch_assoc']($request))
289
-			$context['holiday'] = array(
293
+		while ($row = $smcFunc['db_fetch_assoc']($request)) {
294
+					$context['holiday'] = array(
290 295
 				'id' => $row['id_holiday'],
291 296
 				'day' => $row['day'],
292 297
 				'month' => $row['month'],
293 298
 				'year' => $row['year'] <= 4 ? 0 : $row['year'],
294 299
 				'title' => $row['title']
295 300
 			);
301
+		}
296 302
 		$smcFunc['db_free_result']($request);
297 303
 	}
298 304
 
@@ -319,16 +325,17 @@  discard block
 block discarded – undo
319 325
 		array(
320 326
 		)
321 327
 	);
322
-	while ($row = $smcFunc['db_fetch_assoc']($request))
323
-		$boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name'];
328
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
329
+			$boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name'];
330
+	}
324 331
 	$smcFunc['db_free_result']($request);
325 332
 
326 333
 	require_once($sourcedir . '/Subs-Boards.php');
327 334
 	sortBoards($boards);
328 335
 
329 336
 	// Look, all the calendar settings - of which there are many!
330
-	if (!empty($modSettings['cal_enabled']))
331
-		$config_vars = array(
337
+	if (!empty($modSettings['cal_enabled'])) {
338
+			$config_vars = array(
332 339
 				array('check', 'cal_enabled'),
333 340
 			'',
334 341
 				// All the permissions:
@@ -371,14 +378,16 @@  discard block
 block discarded – undo
371 378
 				array('check', 'cal_short_days'),
372 379
 				array('check', 'cal_short_months'),
373 380
 		);
374
-	else
375
-		$config_vars = array(
381
+	} else {
382
+			$config_vars = array(
376 383
 			array('check', 'cal_enabled'),
377 384
 		);
385
+	}
378 386
 
379 387
 	call_integration_hook('integrate_modify_calendar_settings', array(&$config_vars));
380
-	if ($return_config)
381
-		return $config_vars;
388
+	if ($return_config) {
389
+			return $config_vars;
390
+	}
382 391
 
383 392
 	// Get the settings template fired up.
384 393
 	require_once($sourcedir . '/ManageServer.php');
Please login to merge, or discard this patch.
other/upgrade-helper.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 /**
82 82
  * Make files writable. First try to use regular chmod, but if that fails, try to use FTP.
83 83
  *
84
- * @param $files
84
+ * @param string[] $files
85 85
  * @return bool
86 86
  */
87 87
 function makeFilesWritable(&$files)
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 /**
323 323
  * Prints an error to stderr.
324 324
  *
325
- * @param $message
325
+ * @param string $message
326 326
  * @param bool $fatal
327 327
  */
328 328
 function print_error($message, $fatal = false)
Please login to merge, or discard this patch.
Braces   +96 added lines, -68 removed lines patch added patch discarded remove patch
@@ -13,8 +13,9 @@  discard block
 block discarded – undo
13 13
  * This file contains helper functions for upgrade.php
14 14
  */
15 15
 
16
-if (!defined('SMF_VERSION'))
16
+if (!defined('SMF_VERSION')) {
17 17
 	die('No direct access!');
18
+}
18 19
 
19 20
 /**
20 21
  * Clean the cache using the SMF 2.1 CacheAPI.
@@ -45,8 +46,9 @@  discard block
 block discarded – undo
45 46
 	global $smcFunc;
46 47
 	static $member_groups = array();
47 48
 
48
-	if (!empty($member_groups))
49
-		return $member_groups;
49
+	if (!empty($member_groups)) {
50
+			return $member_groups;
51
+	}
50 52
 
51 53
 	$request = $smcFunc['db_query']('', '
52 54
 		SELECT group_name, id_group
@@ -71,8 +73,9 @@  discard block
 block discarded – undo
71 73
 			)
72 74
 		);
73 75
 	}
74
-	while ($row = $smcFunc['db_fetch_row']($request))
75
-		$member_groups[trim($row[0])] = $row[1];
76
+	while ($row = $smcFunc['db_fetch_row']($request)) {
77
+			$member_groups[trim($row[0])] = $row[1];
78
+	}
76 79
 	$smcFunc['db_free_result']($request);
77 80
 
78 81
 	return $member_groups;
@@ -88,8 +91,9 @@  discard block
 block discarded – undo
88 91
 {
89 92
 	global $upcontext, $boarddir, $sourcedir;
90 93
 
91
-	if (empty($files))
92
-		return true;
94
+	if (empty($files)) {
95
+			return true;
96
+	}
93 97
 
94 98
 	$failure = false;
95 99
 	// On linux, it's easy - just use is_writable!
@@ -100,22 +104,25 @@  discard block
 block discarded – undo
100 104
 		foreach ($files as $k => $file)
101 105
 		{
102 106
 			// Some files won't exist, try to address up front
103
-			if (!file_exists($file))
104
-				@touch($file);
107
+			if (!file_exists($file)) {
108
+							@touch($file);
109
+			}
105 110
 			// NOW do the writable check...
106 111
 			if (!is_writable($file))
107 112
 			{
108 113
 				@chmod($file, 0755);
109 114
 
110 115
 				// Well, 755 hopefully worked... if not, try 777.
111
-				if (!is_writable($file) && !@chmod($file, 0777))
112
-					$failure = true;
116
+				if (!is_writable($file) && !@chmod($file, 0777)) {
117
+									$failure = true;
118
+				}
113 119
 				// Otherwise remove it as it's good!
114
-				else
115
-					unset($files[$k]);
120
+				else {
121
+									unset($files[$k]);
122
+				}
123
+			} else {
124
+							unset($files[$k]);
116 125
 			}
117
-			else
118
-				unset($files[$k]);
119 126
 		}
120 127
 	}
121 128
 	// Windows is trickier.  Let's try opening for r+...
@@ -126,30 +133,35 @@  discard block
 block discarded – undo
126 133
 		foreach ($files as $k => $file)
127 134
 		{
128 135
 			// Folders can't be opened for write... but the index.php in them can ;).
129
-			if (is_dir($file))
130
-				$file .= '/index.php';
136
+			if (is_dir($file)) {
137
+							$file .= '/index.php';
138
+			}
131 139
 
132 140
 			// Funny enough, chmod actually does do something on windows - it removes the read only attribute.
133 141
 			@chmod($file, 0777);
134 142
 			$fp = @fopen($file, 'r+');
135 143
 
136 144
 			// Hmm, okay, try just for write in that case...
137
-			if (!$fp)
138
-				$fp = @fopen($file, 'w');
145
+			if (!$fp) {
146
+							$fp = @fopen($file, 'w');
147
+			}
139 148
 
140
-			if (!$fp)
141
-				$failure = true;
142
-			else
143
-				unset($files[$k]);
149
+			if (!$fp) {
150
+							$failure = true;
151
+			} else {
152
+							unset($files[$k]);
153
+			}
144 154
 			@fclose($fp);
145 155
 		}
146 156
 	}
147 157
 
148
-	if (empty($files))
149
-		return true;
158
+	if (empty($files)) {
159
+			return true;
160
+	}
150 161
 
151
-	if (!isset($_SERVER))
152
-		return !$failure;
162
+	if (!isset($_SERVER)) {
163
+			return !$failure;
164
+	}
153 165
 
154 166
 	// What still needs to be done?
155 167
 	$upcontext['chmod']['files'] = $files;
@@ -201,36 +213,40 @@  discard block
 block discarded – undo
201 213
 
202 214
 		if (!isset($ftp) || $ftp->error !== false)
203 215
 		{
204
-			if (!isset($ftp))
205
-				$ftp = new ftp_connection(null);
216
+			if (!isset($ftp)) {
217
+							$ftp = new ftp_connection(null);
218
+			}
206 219
 			// Save the error so we can mess with listing...
207
-			elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error']))
208
-				$upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message;
220
+			elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) {
221
+							$upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message;
222
+			}
209 223
 
210 224
 			list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__));
211 225
 
212
-			if ($found_path || !isset($upcontext['chmod']['path']))
213
-				$upcontext['chmod']['path'] = $detect_path;
226
+			if ($found_path || !isset($upcontext['chmod']['path'])) {
227
+							$upcontext['chmod']['path'] = $detect_path;
228
+			}
214 229
 
215
-			if (!isset($upcontext['chmod']['username']))
216
-				$upcontext['chmod']['username'] = $username;
230
+			if (!isset($upcontext['chmod']['username'])) {
231
+							$upcontext['chmod']['username'] = $username;
232
+			}
217 233
 
218 234
 			// Don't forget the login token.
219 235
 			$upcontext += createToken('login');
220 236
 
221 237
 			return false;
222
-		}
223
-		else
238
+		} else
224 239
 		{
225 240
 			// We want to do a relative path for FTP.
226 241
 			if (!in_array($upcontext['chmod']['path'], array('', '/')))
227 242
 			{
228 243
 				$ftp_root = strtr($boarddir, array($upcontext['chmod']['path'] => ''));
229
-				if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/'))
230
-					$ftp_root = substr($ftp_root, 0, -1);
244
+				if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) {
245
+									$ftp_root = substr($ftp_root, 0, -1);
246
+				}
247
+			} else {
248
+							$ftp_root = $boarddir;
231 249
 			}
232
-			else
233
-				$ftp_root = $boarddir;
234 250
 
235 251
 			// Save the info for next time!
236 252
 			$_SESSION['installer_temp_ftp'] = array(
@@ -244,10 +260,12 @@  discard block
 block discarded – undo
244 260
 
245 261
 			foreach ($files as $k => $file)
246 262
 			{
247
-				if (!is_writable($file))
248
-					$ftp->chmod($file, 0755);
249
-				if (!is_writable($file))
250
-					$ftp->chmod($file, 0777);
263
+				if (!is_writable($file)) {
264
+									$ftp->chmod($file, 0755);
265
+				}
266
+				if (!is_writable($file)) {
267
+									$ftp->chmod($file, 0777);
268
+				}
251 269
 
252 270
 				// Assuming that didn't work calculate the path without the boarddir.
253 271
 				if (!is_writable($file))
@@ -256,19 +274,23 @@  discard block
 block discarded – undo
256 274
 					{
257 275
 						$ftp_file = strtr($file, array($_SESSION['installer_temp_ftp']['root'] => ''));
258 276
 						$ftp->chmod($ftp_file, 0755);
259
-						if (!is_writable($file))
260
-							$ftp->chmod($ftp_file, 0777);
277
+						if (!is_writable($file)) {
278
+													$ftp->chmod($ftp_file, 0777);
279
+						}
261 280
 						// Sometimes an extra slash can help...
262 281
 						$ftp_file = '/' . $ftp_file;
263
-						if (!is_writable($file))
264
-							$ftp->chmod($ftp_file, 0755);
265
-						if (!is_writable($file))
266
-							$ftp->chmod($ftp_file, 0777);
282
+						if (!is_writable($file)) {
283
+													$ftp->chmod($ftp_file, 0755);
284
+						}
285
+						if (!is_writable($file)) {
286
+													$ftp->chmod($ftp_file, 0777);
287
+						}
267 288
 					}
268 289
 				}
269 290
 
270
-				if (is_writable($file))
271
-					unset($files[$k]);
291
+				if (is_writable($file)) {
292
+									unset($files[$k]);
293
+				}
272 294
 			}
273 295
 
274 296
 			$ftp->close();
@@ -278,8 +300,9 @@  discard block
 block discarded – undo
278 300
 	// What remains?
279 301
 	$upcontext['chmod']['files'] = $files;
280 302
 
281
-	if (empty($files))
282
-		return true;
303
+	if (empty($files)) {
304
+			return true;
305
+	}
283 306
 
284 307
 	return false;
285 308
 }
@@ -293,12 +316,14 @@  discard block
 block discarded – undo
293 316
 function quickFileWritable($file)
294 317
 {
295 318
 	// Some files won't exist, try to address up front
296
-	if (!file_exists($file))
297
-		@touch($file);
319
+	if (!file_exists($file)) {
320
+			@touch($file);
321
+	}
298 322
 
299 323
 	// NOW do the writable check...
300
-	if (is_writable($file))
301
-		return true;
324
+	if (is_writable($file)) {
325
+			return true;
326
+	}
302 327
 
303 328
 	@chmod($file, 0755);
304 329
 
@@ -308,10 +333,11 @@  discard block
 block discarded – undo
308 333
 	foreach ($chmod_values as $val)
309 334
 	{
310 335
 		// If it's writable, break out of the loop
311
-		if (is_writable($file))
312
-			break;
313
-		else
314
-			@chmod($file, $val);
336
+		if (is_writable($file)) {
337
+					break;
338
+		} else {
339
+					@chmod($file, $val);
340
+		}
315 341
 	}
316 342
 
317 343
 	return is_writable($file);
@@ -338,14 +364,16 @@  discard block
 block discarded – undo
338 364
 {
339 365
 	static $fp = null;
340 366
 
341
-	if ($fp === null)
342
-		$fp = fopen('php://stderr', 'wb');
367
+	if ($fp === null) {
368
+			$fp = fopen('php://stderr', 'wb');
369
+	}
343 370
 
344 371
 	fwrite($fp, $message . "\n");
345 372
 
346
-	if ($fatal)
347
-		exit;
348
-}
373
+	if ($fatal) {
374
+			exit;
375
+	}
376
+	}
349 377
 
350 378
 /**
351 379
  * Throws a graphical error message.
Please login to merge, or discard this patch.
Sources/ManageSearchEngines.php 1 patch
Braces   +109 added lines, -77 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
  * Entry point for this section.
@@ -38,8 +39,7 @@  discard block
 block discarded – undo
38 39
 			'stats' => 'SpiderStats',
39 40
 		);
40 41
 		$default = 'stats';
41
-	}
42
-	else
42
+	} else
43 43
 	{
44 44
 		$subActions = array(
45 45
 			'settings' => 'ManageSearchEngineSettings',
@@ -90,11 +90,12 @@  discard block
 block discarded – undo
90 90
 		{
91 91
 			disabledState = document.getElementById(\'spider_mode\').value == 0;';
92 92
 
93
-	foreach ($config_vars as $variable)
94
-		if ($variable[1] != 'spider_mode')
93
+	foreach ($config_vars as $variable) {
94
+			if ($variable[1] != 'spider_mode')
95 95
 			$javascript_function .= '
96 96
 			if (document.getElementById(\'' . $variable[1] . '\'))
97 97
 				document.getElementById(\'' . $variable[1] . '\').disabled = disabledState;';
98
+	}
98 99
 
99 100
 	$javascript_function .= '
100 101
 		}
@@ -102,8 +103,9 @@  discard block
 block discarded – undo
102 103
 
103 104
 	call_integration_hook('integrate_modify_search_engine_settings', array(&$config_vars));
104 105
 
105
-	if ($return_config)
106
-		return $config_vars;
106
+	if ($return_config) {
107
+			return $config_vars;
108
+	}
107 109
 
108 110
 	// We need to load the groups for the spider group thingy.
109 111
 	$request = $smcFunc['db_query']('', '
@@ -116,13 +118,15 @@  discard block
 block discarded – undo
116 118
 			'moderator_group' => 3,
117 119
 		)
118 120
 	);
119
-	while ($row = $smcFunc['db_fetch_assoc']($request))
120
-		$config_vars['spider_group'][2][$row['id_group']] = $row['group_name'];
121
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
122
+			$config_vars['spider_group'][2][$row['id_group']] = $row['group_name'];
123
+	}
121 124
 	$smcFunc['db_free_result']($request);
122 125
 
123 126
 	// Make sure it's valid - note that regular members are given id_group = 1 which is reversed in Load.php - no admins here!
124
-	if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']]))
125
-		$_POST['spider_group'] = 0;
127
+	if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) {
128
+			$_POST['spider_group'] = 0;
129
+	}
126 130
 
127 131
 	// We'll want this for our easy save.
128 132
 	require_once($sourcedir . '/ManageServer.php');
@@ -166,8 +170,9 @@  discard block
 block discarded – undo
166 170
 	}
167 171
 
168 172
 	// Are we adding a new one?
169
-	if (!empty($_POST['addSpider']))
170
-		return EditSpider();
173
+	if (!empty($_POST['addSpider'])) {
174
+			return EditSpider();
175
+	}
171 176
 	// User pressed the 'remove selection button'.
172 177
 	elseif (!empty($_POST['removeSpiders']) && !empty($_POST['remove']) && is_array($_POST['remove']))
173 178
 	{
@@ -175,8 +180,9 @@  discard block
 block discarded – undo
175 180
 		validateToken('admin-ser');
176 181
 
177 182
 		// Make sure every entry is a proper integer.
178
-		foreach ($_POST['remove'] as $index => $spider_id)
179
-			$_POST['remove'][(int) $index] = (int) $spider_id;
183
+		foreach ($_POST['remove'] as $index => $spider_id) {
184
+					$_POST['remove'][(int) $index] = (int) $spider_id;
185
+		}
180 186
 
181 187
 		// Delete them all!
182 188
 		$smcFunc['db_query']('', '
@@ -215,8 +221,9 @@  discard block
 block discarded – undo
215 221
 	);
216 222
 
217 223
 	$context['spider_last_seen'] = array();
218
-	while ($row = $smcFunc['db_fetch_assoc']($request))
219
-		$context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time'];
224
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
225
+			$context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time'];
226
+	}
220 227
 	$smcFunc['db_free_result']($request);
221 228
 
222 229
 	createToken('admin-ser');
@@ -346,8 +353,9 @@  discard block
 block discarded – undo
346 353
 		)
347 354
 	);
348 355
 	$spiders = array();
349
-	while ($row = $smcFunc['db_fetch_assoc']($request))
350
-		$spiders[$row['id_spider']] = $row;
356
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
357
+			$spiders[$row['id_spider']] = $row;
358
+	}
351 359
 	$smcFunc['db_free_result']($request);
352 360
 
353 361
 	return $spiders;
@@ -397,14 +405,15 @@  discard block
 block discarded – undo
397 405
 		foreach ($ip_sets as $set)
398 406
 		{
399 407
 			$test = ip2range(trim($set));
400
-			if (!empty($test))
401
-				$ips[] = $set;
408
+			if (!empty($test)) {
409
+							$ips[] = $set;
410
+			}
402 411
 		}
403 412
 		$ips = implode(',', $ips);
404 413
 
405 414
 		// Goes in as it is...
406
-		if ($context['id_spider'])
407
-			$smcFunc['db_query']('', '
415
+		if ($context['id_spider']) {
416
+					$smcFunc['db_query']('', '
408 417
 				UPDATE {db_prefix}spiders
409 418
 				SET spider_name = {string:spider_name}, user_agent = {string:spider_agent},
410 419
 					ip_info = {string:ip_info}
@@ -416,8 +425,8 @@  discard block
 block discarded – undo
416 425
 					'ip_info' => $ips,
417 426
 				)
418 427
 			);
419
-		else
420
-			$smcFunc['db_insert']('insert',
428
+		} else {
429
+					$smcFunc['db_insert']('insert',
421 430
 				'{db_prefix}spiders',
422 431
 				array(
423 432
 					'spider_name' => 'string', 'user_agent' => 'string', 'ip_info' => 'string',
@@ -427,6 +436,7 @@  discard block
 block discarded – undo
427 436
 				),
428 437
 				array('id_spider')
429 438
 			);
439
+		}
430 440
 
431 441
 
432 442
 		cache_put_data('spider_search', null);
@@ -454,13 +464,14 @@  discard block
 block discarded – undo
454 464
 				'current_spider' => $context['id_spider'],
455 465
 			)
456 466
 		);
457
-		if ($row = $smcFunc['db_fetch_assoc']($request))
458
-			$context['spider'] = array(
467
+		if ($row = $smcFunc['db_fetch_assoc']($request)) {
468
+					$context['spider'] = array(
459 469
 				'id' => $row['id_spider'],
460 470
 				'name' => $row['spider_name'],
461 471
 				'agent' => $row['user_agent'],
462 472
 				'ip_info' => $row['ip_info'],
463 473
 			);
474
+		}
464 475
 		$smcFunc['db_free_result']($request);
465 476
 	}
466 477
 
@@ -477,8 +488,9 @@  discard block
 block discarded – undo
477 488
 {
478 489
 	global $modSettings, $smcFunc;
479 490
 
480
-	if (isset($_SESSION['id_robot']))
481
-		unset($_SESSION['id_robot']);
491
+	if (isset($_SESSION['id_robot'])) {
492
+			unset($_SESSION['id_robot']);
493
+	}
482 494
 	$_SESSION['robot_check'] = time();
483 495
 
484 496
 	// We cache the spider data for ten minutes if we can.
@@ -492,15 +504,17 @@  discard block
 block discarded – undo
492 504
 			)
493 505
 		);
494 506
 		$spider_data = array();
495
-		while ($row = $smcFunc['db_fetch_assoc']($request))
496
-			$spider_data[] = $row;
507
+		while ($row = $smcFunc['db_fetch_assoc']($request)) {
508
+					$spider_data[] = $row;
509
+		}
497 510
 		$smcFunc['db_free_result']($request);
498 511
 
499 512
 		cache_put_data('spider_search', $spider_data, 600);
500 513
 	}
501 514
 
502
-	if (empty($spider_data))
503
-		return false;
515
+	if (empty($spider_data)) {
516
+			return false;
517
+	}
504 518
 
505 519
 	// Only do these bits once.
506 520
 	$ci_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
@@ -508,33 +522,38 @@  discard block
 block discarded – undo
508 522
 	foreach ($spider_data as $spider)
509 523
 	{
510 524
 		// User agent is easy.
511
-		if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false)
512
-			$_SESSION['id_robot'] = $spider['id_spider'];
525
+		if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) {
526
+					$_SESSION['id_robot'] = $spider['id_spider'];
527
+		}
513 528
 		// IP stuff is harder.
514 529
 		elseif ($_SERVER['REMOTE_ADDR'])
515 530
 		{
516 531
 			$ips = explode(',', $spider['ip_info']);
517 532
 			foreach ($ips as $ip)
518 533
 			{
519
-				if ($ip === '')
520
-					continue;
534
+				if ($ip === '') {
535
+									continue;
536
+				}
521 537
 
522 538
 				$ip = ip2range($ip);
523 539
 				if (!empty($ip))
524 540
 				{
525
-					if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR']))
526
-						$_SESSION['id_robot'] = $spider['id_spider'];
541
+					if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) {
542
+											$_SESSION['id_robot'] = $spider['id_spider'];
543
+					}
527 544
 				}
528 545
 			}
529 546
 		}
530 547
 
531
-		if (isset($_SESSION['id_robot']))
532
-			break;
548
+		if (isset($_SESSION['id_robot'])) {
549
+					break;
550
+		}
533 551
 	}
534 552
 
535 553
 	// If this is low server tracking then log the spider here as opposed to the main logging function.
536
-	if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot']))
537
-		logSpider();
554
+	if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) {
555
+			logSpider();
556
+	}
538 557
 
539 558
 	return !empty($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0;
540 559
 }
@@ -548,8 +567,9 @@  discard block
 block discarded – undo
548 567
 {
549 568
 	global $smcFunc, $modSettings, $context;
550 569
 
551
-	if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot']))
552
-		return;
570
+	if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) {
571
+			return;
572
+	}
553 573
 
554 574
 	// Attempt to update today's entry.
555 575
 	if ($modSettings['spider_mode'] == 1)
@@ -590,9 +610,9 @@  discard block
 block discarded – undo
590 610
 			$url = $_GET + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']);
591 611
 			unset($url['sesc'], $url[$context['session_var']]);
592 612
 			$url = $smcFunc['json_encode']($url);
613
+		} else {
614
+					$url = '';
593 615
 		}
594
-		else
595
-			$url = '';
596 616
 
597 617
 		$smcFunc['db_insert']('insert',
598 618
 			'{db_prefix}log_spider_hits',
@@ -620,12 +640,14 @@  discard block
 block discarded – undo
620 640
 		)
621 641
 	);
622 642
 	$spider_hits = array();
623
-	while ($row = $smcFunc['db_fetch_assoc']($request))
624
-		$spider_hits[] = $row;
643
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
644
+			$spider_hits[] = $row;
645
+	}
625 646
 	$smcFunc['db_free_result']($request);
626 647
 
627
-	if (empty($spider_hits))
628
-		return;
648
+	if (empty($spider_hits)) {
649
+			return;
650
+	}
629 651
 
630 652
 	// Attempt to update the master data.
631 653
 	$stat_inserts = array();
@@ -646,18 +668,20 @@  discard block
 block discarded – undo
646 668
 				'hits' => $stat['num_hits'],
647 669
 			)
648 670
 		);
649
-		if ($smcFunc['db_affected_rows']() == 0)
650
-			$stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']);
671
+		if ($smcFunc['db_affected_rows']() == 0) {
672
+					$stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']);
673
+		}
651 674
 	}
652 675
 
653 676
 	// New stats?
654
-	if (!empty($stat_inserts))
655
-		$smcFunc['db_insert']('ignore',
677
+	if (!empty($stat_inserts)) {
678
+			$smcFunc['db_insert']('ignore',
656 679
 			'{db_prefix}log_spider_stats',
657 680
 			array('stat_date' => 'date', 'id_spider' => 'int', 'page_hits' => 'int', 'last_seen' => 'int'),
658 681
 			$stat_inserts,
659 682
 			array('stat_date', 'id_spider')
660 683
 		);
684
+	}
661 685
 
662 686
 	// All processed.
663 687
 	$smcFunc['db_query']('', '
@@ -700,8 +724,7 @@  discard block
 block discarded – undo
700 724
 					'delete_period' => $deleteTime,
701 725
 				)
702 726
 			);
703
-		}
704
-		else
727
+		} else
705 728
 		{
706 729
 			// Deleting all of them
707 730
 			$smcFunc['db_query']('', '
@@ -791,10 +814,11 @@  discard block
 block discarded – undo
791 814
 		foreach ($context['spider_logs']['rows'] as $k => $row)
792 815
 		{
793 816
 			// Feature disabled?
794
-			if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3)
795
-				$context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>';
796
-			else
797
-				$urls[$k] = array($row['data']['viewing']['value'], -1);
817
+			if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) {
818
+							$context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>';
819
+			} else {
820
+							$urls[$k] = array($row['data']['viewing']['value'], -1);
821
+			}
798 822
 		}
799 823
 
800 824
 		// Now stick in the new URLs.
@@ -836,8 +860,9 @@  discard block
 block discarded – undo
836 860
 		)
837 861
 	);
838 862
 	$spider_logs = array();
839
-	while ($row = $smcFunc['db_fetch_assoc']($request))
840
-		$spider_logs[] = $row;
863
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
864
+			$spider_logs[] = $row;
865
+	}
841 866
 	$smcFunc['db_free_result']($request);
842 867
 
843 868
 	return $spider_logs;
@@ -913,14 +938,18 @@  discard block
 block discarded – undo
913 938
 
914 939
 	// Prepare the dates for the drop down.
915 940
 	$date_choices = array();
916
-	for ($y = $min_year; $y <= $max_year; $y++)
917
-		for ($m = 1; $m <= 12; $m++)
941
+	for ($y = $min_year; $y <= $max_year; $y++) {
942
+			for ($m = 1;
943
+	}
944
+	$m <= 12; $m++)
918 945
 		{
919 946
 			// This doesn't count?
920
-			if ($y == $min_year && $m < $min_month)
921
-				continue;
922
-			if ($y == $max_year && $m > $max_month)
923
-				break;
947
+			if ($y == $min_year && $m < $min_month) {
948
+							continue;
949
+			}
950
+			if ($y == $max_year && $m > $max_month) {
951
+							break;
952
+			}
924 953
 
925 954
 			$date_choices[$y . $m] = $txt['months_short'][$m] . ' ' . $y;
926 955
 		}
@@ -933,13 +962,14 @@  discard block
 block discarded – undo
933 962
 		' . $txt['spider_stats_select_month'] . ':
934 963
 		<select name="new_date" onchange="document.spider_stat_list.submit();">';
935 964
 
936
-	if (empty($date_choices))
937
-		$date_select .= '
965
+	if (empty($date_choices)) {
966
+			$date_select .= '
938 967
 			<option></option>';
939
-	else
940
-		foreach ($date_choices as $id => $text)
968
+	} else {
969
+			foreach ($date_choices as $id => $text)
941 970
 			$date_select .= '
942 971
 			<option value="' . $id . '"' . ($current_date == $id ? ' selected' : '') . '>' . $text . '</option>';
972
+	}
943 973
 
944 974
 	$date_select .= '
945 975
 		</select>
@@ -1063,8 +1093,9 @@  discard block
 block discarded – undo
1063 1093
 		)
1064 1094
 	);
1065 1095
 	$spider_stats = array();
1066
-	while ($row = $smcFunc['db_fetch_assoc']($request))
1067
-		$spider_stats[] = $row;
1096
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
1097
+			$spider_stats[] = $row;
1098
+	}
1068 1099
 	$smcFunc['db_free_result']($request);
1069 1100
 
1070 1101
 	return $spider_stats;
@@ -1105,8 +1136,9 @@  discard block
 block discarded – undo
1105 1136
 		array()
1106 1137
 	);
1107 1138
 	$spiders = array();
1108
-	while ($row = $smcFunc['db_fetch_assoc']($request))
1109
-		$spiders[$row['id_spider']] = $row['spider_name'];
1139
+	while ($row = $smcFunc['db_fetch_assoc']($request)) {
1140
+			$spiders[$row['id_spider']] = $row['spider_name'];
1141
+	}
1110 1142
 	$smcFunc['db_free_result']($request);
1111 1143
 
1112 1144
 	updateSettings(array('spider_name_cache' => $smcFunc['json_encode']($spiders)));
Please login to merge, or discard this patch.
Sources/Who.php 2 patches
Braces   +126 added lines, -95 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
  * Who's online, and what are they doing?
@@ -35,8 +36,9 @@  discard block
 block discarded – undo
35 36
 	isAllowedTo('who_view');
36 37
 
37 38
 	// You can't do anything if this is off.
38
-	if (empty($modSettings['who_enabled']))
39
-		fatal_lang_error('who_off', false);
39
+	if (empty($modSettings['who_enabled'])) {
40
+			fatal_lang_error('who_off', false);
41
+	}
40 42
 
41 43
 	// Load the 'Who' template.
42 44
 	loadTemplate('Who');
@@ -71,9 +73,9 @@  discard block
 block discarded – undo
71 73
 		$show_methods['spiders'] = '(lo.id_member = 0 AND lo.id_spider > 0)';
72 74
 		$show_methods['guests'] = '(lo.id_member = 0 AND lo.id_spider = 0)';
73 75
 		$context['show_methods']['spiders'] = $txt['who_show_spiders_only'];
76
+	} elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') {
77
+			unset($_SESSION['who_online_filter']);
74 78
 	}
75
-	elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders')
76
-		unset($_SESSION['who_online_filter']);
77 79
 
78 80
 	// Does the user prefer a different sort direction?
79 81
 	if (isset($_REQUEST['sort']) && isset($sort_methods[$_REQUEST['sort']]))
@@ -97,20 +99,24 @@  discard block
 block discarded – undo
97 99
 	$context['sort_direction'] = isset($_REQUEST['asc']) || (isset($_REQUEST['sort_dir']) && $_REQUEST['sort_dir'] == 'asc') ? 'up' : 'down';
98 100
 
99 101
 	$conditions = array();
100
-	if (!allowedTo('moderate_forum'))
101
-		$conditions[] = '(COALESCE(mem.show_online, 1) = 1)';
102
+	if (!allowedTo('moderate_forum')) {
103
+			$conditions[] = '(COALESCE(mem.show_online, 1) = 1)';
104
+	}
102 105
 
103 106
 	// Fallback to top filter?
104
-	if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top']))
105
-		$_REQUEST['show'] = $_REQUEST['show_top'];
107
+	if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) {
108
+			$_REQUEST['show'] = $_REQUEST['show_top'];
109
+	}
106 110
 	// Does the user wish to apply a filter?
107
-	if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']]))
108
-		$context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show'];
111
+	if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) {
112
+			$context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show'];
113
+	}
109 114
 	// Perhaps we saved a filter earlier in the session?
110
-	elseif (isset($_SESSION['who_online_filter']))
111
-		$context['show_by'] = $_SESSION['who_online_filter'];
112
-	else
113
-		$context['show_by'] = 'members';
115
+	elseif (isset($_SESSION['who_online_filter'])) {
116
+			$context['show_by'] = $_SESSION['who_online_filter'];
117
+	} else {
118
+			$context['show_by'] = 'members';
119
+	}
114 120
 
115 121
 	$conditions[] = $show_methods[$context['show_by']];
116 122
 
@@ -156,8 +162,9 @@  discard block
 block discarded – undo
156 162
 	while ($row = $smcFunc['db_fetch_assoc']($request))
157 163
 	{
158 164
 		$actions = $smcFunc['json_decode']($row['url'], true);
159
-		if ($actions === false)
160
-			continue;
165
+		if ($actions === false) {
166
+					continue;
167
+		}
161 168
 
162 169
 		// Send the information to the template.
163 170
 		$context['members'][$row['session']] = array(
@@ -195,8 +202,8 @@  discard block
 block discarded – undo
195 202
 	$spiderContext = array();
196 203
 	if (!empty($modSettings['show_spider_online']) && ($modSettings['show_spider_online'] == 2 || allowedTo('admin_forum')) && !empty($modSettings['spider_name_cache']))
197 204
 	{
198
-		foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name)
199
-			$spiderContext[$id] = array(
205
+		foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) {
206
+					$spiderContext[$id] = array(
200 207
 				'id' => 0,
201 208
 				'name' => $name,
202 209
 				'group' => $txt['spiders'],
@@ -205,6 +212,7 @@  discard block
 block discarded – undo
205 212
 				'email' => $name,
206 213
 				'is_guest' => true
207 214
 			);
215
+		}
208 216
 	}
209 217
 
210 218
 	$url_data = determineActions($url_data);
@@ -219,16 +227,18 @@  discard block
 block discarded – undo
219 227
 	// Put it in the context variables.
220 228
 	foreach ($context['members'] as $i => $member)
221 229
 	{
222
-		if ($member['id'] != 0)
223
-			$member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0;
230
+		if ($member['id'] != 0) {
231
+					$member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0;
232
+		}
224 233
 
225 234
 		// Keep the IP that came from the database.
226 235
 		$memberContext[$member['id']]['ip'] = $member['ip'];
227 236
 		$context['members'][$i]['action'] = isset($url_data[$i]) ? $url_data[$i] : $txt['who_hidden'];
228
-		if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']]))
229
-			$context['members'][$i] += $spiderContext[$member['id_spider']];
230
-		else
231
-			$context['members'][$i] += $memberContext[$member['id']];
237
+		if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) {
238
+					$context['members'][$i] += $spiderContext[$member['id_spider']];
239
+		} else {
240
+					$context['members'][$i] += $memberContext[$member['id']];
241
+		}
232 242
 	}
233 243
 
234 244
 	// Some people can't send personal messages...
@@ -263,8 +273,9 @@  discard block
 block discarded – undo
263 273
 {
264 274
 	global $txt, $user_info, $modSettings, $smcFunc;
265 275
 
266
-	if (!allowedTo('who_view'))
267
-		return array();
276
+	if (!allowedTo('who_view')) {
277
+			return array();
278
+	}
268 279
 	loadLanguage('Who');
269 280
 
270 281
 	// Actions that require a specific permission level.
@@ -292,10 +303,11 @@  discard block
 block discarded – undo
292 303
 	);
293 304
 	call_integration_hook('who_allowed', array(&$allowedActions));
294 305
 
295
-	if (!is_array($urls))
296
-		$url_list = array(array($urls, $user_info['id']));
297
-	else
298
-		$url_list = $urls;
306
+	if (!is_array($urls)) {
307
+			$url_list = array(array($urls, $user_info['id']));
308
+	} else {
309
+			$url_list = $urls;
310
+	}
299 311
 
300 312
 	// These are done to later query these in large chunks. (instead of one by one.)
301 313
 	$topic_ids = array();
@@ -307,12 +319,14 @@  discard block
 block discarded – undo
307 319
 	{
308 320
 		// Get the request parameters..
309 321
 		$actions = $smcFunc['json_decode']($url[0], true);
310
-		if ($actions === false)
311
-			continue;
322
+		if ($actions === false) {
323
+					continue;
324
+		}
312 325
 
313 326
 		// If it's the admin or moderation center, and there is an area set, use that instead.
314
-		if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area']))
315
-			$actions['action'] = $actions['area'];
327
+		if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) {
328
+					$actions['action'] = $actions['area'];
329
+		}
316 330
 
317 331
 		// Check if there was no action or the action is display.
318 332
 		if (!isset($actions['action']) || $actions['action'] == 'display')
@@ -332,12 +346,14 @@  discard block
 block discarded – undo
332 346
 				$board_ids[$actions['board']][$k] = $txt['who_board'];
333 347
 			}
334 348
 			// It's the board index!!  It must be!
335
-			else
336
-				$data[$k] = $txt['who_index'];
349
+			else {
350
+							$data[$k] = $txt['who_index'];
351
+			}
337 352
 		}
338 353
 		// Probably an error or some goon?
339
-		elseif ($actions['action'] == '')
340
-			$data[$k] = $txt['who_index'];
354
+		elseif ($actions['action'] == '') {
355
+					$data[$k] = $txt['who_index'];
356
+		}
341 357
 		// Some other normal action...?
342 358
 		else
343 359
 		{
@@ -345,23 +361,25 @@  discard block
 block discarded – undo
345 361
 			if ($actions['action'] == 'profile')
346 362
 			{
347 363
 				// Whose?  Their own?
348
-				if (empty($actions['u']))
349
-					$actions['u'] = $url[1];
364
+				if (empty($actions['u'])) {
365
+									$actions['u'] = $url[1];
366
+				}
350 367
 
351 368
 				$data[$k] = $txt['who_hidden'];
352 369
 				$profile_ids[(int) $actions['u']][$k] = $actions['u'] == $url[1] ? $txt['who_viewownprofile'] : $txt['who_viewprofile'];
353
-			}
354
-			elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board']))
370
+			} elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board']))
355 371
 			{
356 372
 				$data[$k] = $txt['who_hidden'];
357 373
 				$board_ids[(int) $actions['board']][$k] = isset($actions['poll']) ? $txt['who_poll'] : $txt['who_post'];
358 374
 			}
359 375
 			// A subaction anyone can view... if the language string is there, show it.
360
-			elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']]))
361
-				$data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']];
376
+			elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) {
377
+							$data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']];
378
+			}
362 379
 			// An action any old fellow can look at. (if ['whoall_' . $action] exists, we know everyone can see it.)
363
-			elseif (isset($txt['whoall_' . $actions['action']]))
364
-				$data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']];
380
+			elseif (isset($txt['whoall_' . $actions['action']])) {
381
+							$data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']];
382
+			}
365 383
 			// Viewable if and only if they can see the board...
366 384
 			elseif (isset($txt['whotopic_' . $actions['action']]))
367 385
 			{
@@ -370,8 +388,7 @@  discard block
 block discarded – undo
370 388
 
371 389
 				$data[$k] = $txt['who_hidden'];
372 390
 				$topic_ids[$topic][$k] = $txt['whotopic_' . $actions['action']];
373
-			}
374
-			elseif (isset($txt['whopost_' . $actions['action']]))
391
+			} elseif (isset($txt['whopost_' . $actions['action']]))
375 392
 			{
376 393
 				// Find out what message they are accessing.
377 394
 				$msgid = (int) (isset($actions['msg']) ? $actions['msg'] : (isset($actions['quote']) ? $actions['quote'] : 0));
@@ -394,41 +411,46 @@  discard block
 block discarded – undo
394 411
 				$data[$k] = sprintf($txt['whopost_' . $actions['action']], $id_topic, $subject);
395 412
 				$smcFunc['db_free_result']($result);
396 413
 
397
-				if (empty($id_topic))
398
-					$data[$k] = $txt['who_hidden'];
414
+				if (empty($id_topic)) {
415
+									$data[$k] = $txt['who_hidden'];
416
+				}
399 417
 			}
400 418
 			// Viewable only by administrators.. (if it starts with whoadmin, it's admin only!)
401
-			elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']]))
402
-				$data[$k] = $txt['whoadmin_' . $actions['action']];
419
+			elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) {
420
+							$data[$k] = $txt['whoadmin_' . $actions['action']];
421
+			}
403 422
 			// Viewable by permission level.
404 423
 			elseif (isset($allowedActions[$actions['action']]))
405 424
 			{
406
-				if (allowedTo($allowedActions[$actions['action']]))
407
-					$data[$k] = $txt['whoallow_' . $actions['action']];
408
-				elseif (in_array('moderate_forum', $allowedActions[$actions['action']]))
409
-					$data[$k] = $txt['who_moderate'];
410
-				elseif (in_array('admin_forum', $allowedActions[$actions['action']]))
411
-					$data[$k] = $txt['who_admin'];
412
-				else
413
-					$data[$k] = $txt['who_hidden'];
425
+				if (allowedTo($allowedActions[$actions['action']])) {
426
+									$data[$k] = $txt['whoallow_' . $actions['action']];
427
+				} elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) {
428
+									$data[$k] = $txt['who_moderate'];
429
+				} elseif (in_array('admin_forum', $allowedActions[$actions['action']])) {
430
+									$data[$k] = $txt['who_admin'];
431
+				} else {
432
+									$data[$k] = $txt['who_hidden'];
433
+				}
434
+			} elseif (!empty($actions['action'])) {
435
+							$data[$k] = $txt['who_generic'] . ' ' . $actions['action'];
436
+			} else {
437
+							$data[$k] = $txt['who_unknown'];
414 438
 			}
415
-			elseif (!empty($actions['action']))
416
-				$data[$k] = $txt['who_generic'] . ' ' . $actions['action'];
417
-			else
418
-				$data[$k] = $txt['who_unknown'];
419 439
 		}
420 440
 
421 441
 		if (isset($actions['error']))
422 442
 		{
423
-			if (isset($txt[$actions['error']]))
424
-				$error_message = str_replace('"', '&quot;', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params']));
425
-			elseif ($actions['error'] == 'guest_login')
426
-				$error_message = str_replace('"', '&quot;', $txt['who_guest_login']);
427
-			else
428
-				$error_message = str_replace('"', '&quot;', $actions['error']);
429
-
430
-			if (!empty($error_message))
431
-				$data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>';
443
+			if (isset($txt[$actions['error']])) {
444
+							$error_message = str_replace('"', '&quot;', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params']));
445
+			} elseif ($actions['error'] == 'guest_login') {
446
+							$error_message = str_replace('"', '&quot;', $txt['who_guest_login']);
447
+			} else {
448
+							$error_message = str_replace('"', '&quot;', $actions['error']);
449
+			}
450
+
451
+			if (!empty($error_message)) {
452
+							$data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>';
453
+			}
432 454
 		}
433 455
 
434 456
 		// Maybe the action is integrated into another system?
@@ -439,12 +461,15 @@  discard block
 block discarded – undo
439 461
 				if (!empty($integrate_action))
440 462
 				{
441 463
 					$data[$k] = $integrate_action;
442
-					if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k]))
443
-						$topic_ids[(int) $actions['topic']][$k] = $integrate_action;
444
-					if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k]))
445
-						$board_ids[(int) $actions['board']][$k] = $integrate_action;
446
-					if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k]))
447
-						$profile_ids[(int) $actions['u']][$k] = $integrate_action;
464
+					if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) {
465
+											$topic_ids[(int) $actions['topic']][$k] = $integrate_action;
466
+					}
467
+					if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) {
468
+											$board_ids[(int) $actions['board']][$k] = $integrate_action;
469
+					}
470
+					if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) {
471
+											$profile_ids[(int) $actions['u']][$k] = $integrate_action;
472
+					}
448 473
 					break;
449 474
 				}
450 475
 			}
@@ -472,8 +497,9 @@  discard block
 block discarded – undo
472 497
 		while ($row = $smcFunc['db_fetch_assoc']($result))
473 498
 		{
474 499
 			// Show the topic's subject for each of the actions.
475
-			foreach ($topic_ids[$row['id_topic']] as $k => $session_text)
476
-				$data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject']));
500
+			foreach ($topic_ids[$row['id_topic']] as $k => $session_text) {
501
+							$data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject']));
502
+			}
477 503
 		}
478 504
 		$smcFunc['db_free_result']($result);
479 505
 	}
@@ -495,8 +521,9 @@  discard block
 block discarded – undo
495 521
 		while ($row = $smcFunc['db_fetch_assoc']($result))
496 522
 		{
497 523
 			// Put the board name into the string for each member...
498
-			foreach ($board_ids[$row['id_board']] as $k => $session_text)
499
-				$data[$k] = sprintf($session_text, $row['id_board'], $row['name']);
524
+			foreach ($board_ids[$row['id_board']] as $k => $session_text) {
525
+							$data[$k] = sprintf($session_text, $row['id_board'], $row['name']);
526
+			}
500 527
 		}
501 528
 		$smcFunc['db_free_result']($result);
502 529
 	}
@@ -518,23 +545,26 @@  discard block
 block discarded – undo
518 545
 		while ($row = $smcFunc['db_fetch_assoc']($result))
519 546
 		{
520 547
 			// If they aren't allowed to view this person's profile, skip it.
521
-			if (!$allow_view_any && ($user_info['id'] != $row['id_member']))
522
-				continue;
548
+			if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) {
549
+							continue;
550
+			}
523 551
 
524 552
 			// Set their action on each - session/text to sprintf.
525
-			foreach ($profile_ids[$row['id_member']] as $k => $session_text)
526
-				$data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']);
553
+			foreach ($profile_ids[$row['id_member']] as $k => $session_text) {
554
+							$data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']);
555
+			}
527 556
 		}
528 557
 		$smcFunc['db_free_result']($result);
529 558
 	}
530 559
 
531 560
 	call_integration_hook('whos_online_after', array(&$urls, &$data));
532 561
 
533
-	if (!is_array($urls))
534
-		return isset($data[0]) ? $data[0] : false;
535
-	else
536
-		return $data;
537
-}
562
+	if (!is_array($urls)) {
563
+			return isset($data[0]) ? $data[0] : false;
564
+	} else {
565
+			return $data;
566
+	}
567
+	}
538 568
 
539 569
 /**
540 570
  * It prepares credit and copyright information for the credits page or the admin page
@@ -710,8 +740,8 @@  discard block
 block discarded – undo
710 740
 	);
711 741
 
712 742
 	// Give the translators some credit for their hard work.
713
-	if (!empty($txt['translation_credits']))
714
-		$context['credits'][] = array(
743
+	if (!empty($txt['translation_credits'])) {
744
+			$context['credits'][] = array(
715 745
 			'title' => $txt['credits_groups_translation'],
716 746
 			'groups' => array(
717 747
 				array(
@@ -720,6 +750,7 @@  discard block
 block discarded – undo
720 750
 				),
721 751
 			),
722 752
 		);
753
+	}
723 754
 
724 755
 	$context['credits'][] = array(
725 756
 		'title' => $txt['credits_special'],
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
 						'Jessica "Suki" Gonz&aacute;lez',
593 593
 						'Karl "RegularExpression" Benson',
594 594
 						'Matthew "Labradoodle-360" Kerle',
595
-						$user_info['is_admin'] ? 'Matt "Grudge" Wolf': 'Grudge',
595
+						$user_info['is_admin'] ? 'Matt "Grudge" Wolf' : 'Grudge',
596 596
 						'Michael "Thantos" Miller',
597 597
 						'Norv',
598 598
 						'Peter "Arantor" Spicer',
@@ -824,13 +824,13 @@  discard block
 block discarded – undo
824 824
 			$credit_info = $smcFunc['json_decode']($row['credits'], true);
825 825
 
826 826
 			$copyright = empty($credit_info['copyright']) ? '' : $txt['credits_copyright'] . ' &copy; ' . $smcFunc['htmlspecialchars']($credit_info['copyright']);
827
-			$license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="'. $smcFunc['htmlspecialchars']($credit_info['licenseurl']) .'">'. $smcFunc['htmlspecialchars']($credit_info['license']) .'</a>' : $smcFunc['htmlspecialchars']($credit_info['license']));
827
+			$license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="' . $smcFunc['htmlspecialchars']($credit_info['licenseurl']) . '">' . $smcFunc['htmlspecialchars']($credit_info['license']) . '</a>' : $smcFunc['htmlspecialchars']($credit_info['license']));
828 828
 			$version = $txt['credits_version'] . ' ' . $row['version'];
829 829
 			$title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ': ' . $version;
830 830
 
831 831
 			// build this one out and stash it away
832 832
 			$mod_name = empty($credit_info['url']) ? $title : '<a href="' . $credit_info['url'] . '">' . $title . '</a>';
833
-			$mods[] = $mod_name . (!empty($license) ? ' | ' . $license  : '') . (!empty($copyright) ? ' | ' . $copyright  : '');
833
+			$mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : '');
834 834
 		}
835 835
 		cache_put_data('mods_credits', $mods, 86400);
836 836
 	}
Please login to merge, or discard this patch.
Sources/Drafts.php 2 patches
Braces   +75 added lines, -53 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
 loadLanguage('Drafts');
21 22
 
@@ -33,8 +34,9 @@  discard block
 block discarded – undo
33 34
 	global $context, $user_info, $smcFunc, $modSettings, $board;
34 35
 
35 36
 	// can you be, should you be ... here?
36
-	if (empty($modSettings['drafts_post_enabled']) || !allowedTo('post_draft') || !isset($_POST['save_draft']) || !isset($_POST['id_draft']))
37
-		return false;
37
+	if (empty($modSettings['drafts_post_enabled']) || !allowedTo('post_draft') || !isset($_POST['save_draft']) || !isset($_POST['id_draft'])) {
38
+			return false;
39
+	}
38 40
 
39 41
 	// read in what they sent us, if anything
40 42
 	$id_draft = (int) $_POST['id_draft'];
@@ -46,14 +48,16 @@  discard block
 block discarded – undo
46 48
 		$context['draft_saved_on'] = $draft_info['poster_time'];
47 49
 
48 50
 		// since we were called from the autosave function, send something back
49
-		if (!empty($id_draft))
50
-			XmlDraft($id_draft);
51
+		if (!empty($id_draft)) {
52
+					XmlDraft($id_draft);
53
+		}
51 54
 
52 55
 		return true;
53 56
 	}
54 57
 
55
-	if (!isset($_POST['message']))
56
-		$_POST['message'] = isset($_POST['quickReply']) ? $_POST['quickReply'] : '';
58
+	if (!isset($_POST['message'])) {
59
+			$_POST['message'] = isset($_POST['quickReply']) ? $_POST['quickReply'] : '';
60
+	}
57 61
 
58 62
 	// prepare any data from the form
59 63
 	$topic_id = empty($_REQUEST['topic']) ? 0 : (int) $_REQUEST['topic'];
@@ -66,8 +70,9 @@  discard block
 block discarded – undo
66 70
 
67 71
 	// message and subject still need a bit more work
68 72
 	preparsecode($draft['body']);
69
-	if ($smcFunc['strlen']($draft['subject']) > 100)
70
-		$draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100);
73
+	if ($smcFunc['strlen']($draft['subject']) > 100) {
74
+			$draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100);
75
+	}
71 76
 
72 77
 	// Modifying an existing draft, like hitting the save draft button or autosave enabled?
73 78
 	if (!empty($id_draft) && !empty($draft_info))
@@ -148,9 +153,9 @@  discard block
 block discarded – undo
148 153
 		{
149 154
 			$context['draft_saved'] = true;
150 155
 			$context['id_draft'] = $id_draft;
156
+		} else {
157
+					$post_errors[] = 'draft_not_saved';
151 158
 		}
152
-		else
153
-			$post_errors[] = 'draft_not_saved';
154 159
 
155 160
 		// cleanup
156 161
 		unset($_POST['save_draft']);
@@ -180,8 +185,9 @@  discard block
 block discarded – undo
180 185
 	global $context, $user_info, $smcFunc, $modSettings;
181 186
 
182 187
 	// PM survey says ... can you stay or must you go
183
-	if (empty($modSettings['drafts_pm_enabled']) || !allowedTo('pm_draft') || !isset($_POST['save_draft']))
184
-		return false;
188
+	if (empty($modSettings['drafts_pm_enabled']) || !allowedTo('pm_draft') || !isset($_POST['save_draft'])) {
189
+			return false;
190
+	}
185 191
 
186 192
 	// read in what you sent us
187 193
 	$id_pm_draft = (int) $_POST['id_pm_draft'];
@@ -193,8 +199,9 @@  discard block
 block discarded – undo
193 199
 		$context['draft_saved_on'] = $draft_info['poster_time'];
194 200
 
195 201
 		// Send something back to the javascript caller
196
-		if (!empty($id_draft))
197
-			XmlDraft($id_draft);
202
+		if (!empty($id_draft)) {
203
+					XmlDraft($id_draft);
204
+		}
198 205
 
199 206
 		return true;
200 207
 	}
@@ -204,9 +211,9 @@  discard block
 block discarded – undo
204 211
 	{
205 212
 		$recipientList['to'] = isset($_POST['recipient_to']) ? explode(',', $_POST['recipient_to']) : array();
206 213
 		$recipientList['bcc'] = isset($_POST['recipient_bcc']) ? explode(',', $_POST['recipient_bcc']) : array();
214
+	} elseif (!empty($draft_info['to_list']) && empty($recipientList)) {
215
+			$recipientList = $smcFunc['json_decode']($draft_info['to_list'], true);
207 216
 	}
208
-	elseif (!empty($draft_info['to_list']) && empty($recipientList))
209
-		$recipientList = $smcFunc['json_decode']($draft_info['to_list'], true);
210 217
 
211 218
 	// prepare the data we got from the form
212 219
 	$reply_id = empty($_POST['replied_to']) ? 0 : (int) $_POST['replied_to'];
@@ -215,8 +222,9 @@  discard block
 block discarded – undo
215 222
 
216 223
 	// message and subject always need a bit more work
217 224
 	preparsecode($draft['body']);
218
-	if ($smcFunc['strlen']($draft['subject']) > 100)
219
-		$draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100);
225
+	if ($smcFunc['strlen']($draft['subject']) > 100) {
226
+			$draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100);
227
+	}
220 228
 
221 229
 	// Modifying an existing PM draft?
222 230
 	if (!empty($id_pm_draft) && !empty($draft_info))
@@ -280,9 +288,9 @@  discard block
 block discarded – undo
280 288
 		{
281 289
 			$context['draft_saved'] = true;
282 290
 			$context['id_pm_draft'] = $id_pm_draft;
291
+		} else {
292
+					$post_errors[] = 'draft_not_saved';
283 293
 		}
284
-		else
285
-			$post_errors[] = 'draft_not_saved';
286 294
 	}
287 295
 
288 296
 	// if we were called from the autosave function, send something back
@@ -315,8 +323,9 @@  discard block
 block discarded – undo
315 323
 	$type = (int) $type;
316 324
 
317 325
 	// nothing to read, nothing to do
318
-	if (empty($id_draft))
319
-		return false;
326
+	if (empty($id_draft)) {
327
+			return false;
328
+	}
320 329
 
321 330
 	// load in this draft from the DB
322 331
 	$request = $smcFunc['db_query']('', '
@@ -337,8 +346,9 @@  discard block
 block discarded – undo
337 346
 	);
338 347
 
339 348
 	// no results?
340
-	if (!$smcFunc['db_num_rows']($request))
341
-		return false;
349
+	if (!$smcFunc['db_num_rows']($request)) {
350
+			return false;
351
+	}
342 352
 
343 353
 	// load up the data
344 354
 	$draft_info = $smcFunc['db_fetch_assoc']($request);
@@ -358,8 +368,7 @@  discard block
 block discarded – undo
358 368
 			$context['subject'] = !empty($draft_info['subject']) ? stripslashes($draft_info['subject']) : '';
359 369
 			$context['board'] = !empty($draft_info['id_board']) ? $draft_info['id_board'] : '';
360 370
 			$context['id_draft'] = !empty($draft_info['id_draft']) ? $draft_info['id_draft'] : 0;
361
-		}
362
-		elseif ($type === 1)
371
+		} elseif ($type === 1)
363 372
 		{
364 373
 			// one of those pm drafts? then set it up like we have an error
365 374
 			$_REQUEST['subject'] = !empty($draft_info['subject']) ? stripslashes($draft_info['subject']) : '';
@@ -395,12 +404,14 @@  discard block
 block discarded – undo
395 404
 	global $user_info, $smcFunc;
396 405
 
397 406
 	// Only a single draft.
398
-	if (is_numeric($id_draft))
399
-		$id_draft = array($id_draft);
407
+	if (is_numeric($id_draft)) {
408
+			$id_draft = array($id_draft);
409
+	}
400 410
 
401 411
 	// can't delete nothing
402
-	if (empty($id_draft) || ($check && empty($user_info['id'])))
403
-		return false;
412
+	if (empty($id_draft) || ($check && empty($user_info['id']))) {
413
+			return false;
414
+	}
404 415
 
405 416
 	$smcFunc['db_query']('', '
406 417
 		DELETE FROM {db_prefix}user_drafts
@@ -429,14 +440,16 @@  discard block
 block discarded – undo
429 440
 	global $smcFunc, $scripturl, $context, $txt, $modSettings;
430 441
 
431 442
 	// Permissions
432
-	if (($draft_type === 0 && empty($context['drafts_save'])) || ($draft_type === 1 && empty($context['drafts_pm_save'])) || empty($member_id))
433
-		return false;
443
+	if (($draft_type === 0 && empty($context['drafts_save'])) || ($draft_type === 1 && empty($context['drafts_pm_save'])) || empty($member_id)) {
444
+			return false;
445
+	}
434 446
 
435 447
 	$context['drafts'] = array();
436 448
 
437 449
 	// has a specific draft has been selected?  Load it up if there is not a message already in the editor
438
-	if (isset($_REQUEST['id_draft']) && empty($_POST['subject']) && empty($_POST['message']))
439
-		ReadDraft((int) $_REQUEST['id_draft'], $draft_type, true, true);
450
+	if (isset($_REQUEST['id_draft']) && empty($_POST['subject']) && empty($_POST['message'])) {
451
+			ReadDraft((int) $_REQUEST['id_draft'], $draft_type, true, true);
452
+	}
440 453
 
441 454
 	// load the drafts this user has available
442 455
 	$request = $smcFunc['db_query']('', '
@@ -459,8 +472,9 @@  discard block
 block discarded – undo
459 472
 	// add them to the draft array for display
460 473
 	while ($row = $smcFunc['db_fetch_assoc']($request))
461 474
 	{
462
-		if (empty($row['subject']))
463
-			$row['subject'] = $txt['no_subject'];
475
+		if (empty($row['subject'])) {
476
+					$row['subject'] = $txt['no_subject'];
477
+		}
464 478
 
465 479
 		// Post drafts
466 480
 		if ($draft_type === 0)
@@ -545,8 +559,9 @@  discard block
 block discarded – undo
545 559
 	}
546 560
 
547 561
 	// Default to 10.
548
-	if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount']))
549
-		$_REQUEST['viewscount'] = 10;
562
+	if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) {
563
+			$_REQUEST['viewscount'] = 10;
564
+	}
550 565
 
551 566
 	// Get the count of applicable drafts on the boards they can (still) see ...
552 567
 	// @todo .. should we just let them see their drafts even if they have lost board access ?
@@ -611,12 +626,14 @@  discard block
 block discarded – undo
611 626
 	while ($row = $smcFunc['db_fetch_assoc']($request))
612 627
 	{
613 628
 		// Censor....
614
-		if (empty($row['body']))
615
-			$row['body'] = '';
629
+		if (empty($row['body'])) {
630
+					$row['body'] = '';
631
+		}
616 632
 
617 633
 		$row['subject'] = $smcFunc['htmltrim']($row['subject']);
618
-		if (empty($row['subject']))
619
-			$row['subject'] = $txt['no_subject'];
634
+		if (empty($row['subject'])) {
635
+					$row['subject'] = $txt['no_subject'];
636
+		}
620 637
 
621 638
 		censorText($row['body']);
622 639
 		censorText($row['subject']);
@@ -648,8 +665,9 @@  discard block
 block discarded – undo
648 665
 	$smcFunc['db_free_result']($request);
649 666
 
650 667
 	// If the drafts were retrieved in reverse order, get them right again.
651
-	if ($reverse)
652
-		$context['drafts'] = array_reverse($context['drafts'], true);
668
+	if ($reverse) {
669
+			$context['drafts'] = array_reverse($context['drafts'], true);
670
+	}
653 671
 
654 672
 	// Menu tab
655 673
 	$context[$context['profile_menu_name']]['tab_data'] = array(
@@ -707,8 +725,9 @@  discard block
 block discarded – undo
707 725
 	}
708 726
 
709 727
 	// Default to 10.
710
-	if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount']))
711
-		$_REQUEST['viewscount'] = 10;
728
+	if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) {
729
+			$_REQUEST['viewscount'] = 10;
730
+	}
712 731
 
713 732
 	// Get the count of applicable drafts
714 733
 	$request = $smcFunc['db_query']('', '
@@ -767,12 +786,14 @@  discard block
 block discarded – undo
767 786
 	while ($row = $smcFunc['db_fetch_assoc']($request))
768 787
 	{
769 788
 		// Censor....
770
-		if (empty($row['body']))
771
-			$row['body'] = '';
789
+		if (empty($row['body'])) {
790
+					$row['body'] = '';
791
+		}
772 792
 
773 793
 		$row['subject'] = $smcFunc['htmltrim']($row['subject']);
774
-		if (empty($row['subject']))
775
-			$row['subject'] = $txt['no_subject'];
794
+		if (empty($row['subject'])) {
795
+					$row['subject'] = $txt['no_subject'];
796
+		}
776 797
 
777 798
 		censorText($row['body']);
778 799
 		censorText($row['subject']);
@@ -827,8 +848,9 @@  discard block
 block discarded – undo
827 848
 	$smcFunc['db_free_result']($request);
828 849
 
829 850
 	// if the drafts were retrieved in reverse order, then put them in the right order again.
830
-	if ($reverse)
831
-		$context['drafts'] = array_reverse($context['drafts'], true);
851
+	if ($reverse) {
852
+			$context['drafts'] = array_reverse($context['drafts'], true);
853
+	}
832 854
 
833 855
 	// off to the template we go
834 856
 	$context['page_title'] = $txt['drafts'];
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
  *
174 174
  * @param string $post_errors A string of info about errors encountered trying to save this draft
175 175
  * @param array $recipientList An array of data about who this PM is being sent to
176
- * @return boolean false if you can't save the draft, true if we're doing this via XML more than 5 seconds after the last save, nothing otherwise
176
+ * @return boolean|null false if you can't save the draft, true if we're doing this via XML more than 5 seconds after the last save, nothing otherwise
177 177
  */
178 178
 function SavePMDraft(&$post_errors, $recipientList)
179 179
 {
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
  *
389 389
  * @param int $id_draft The ID of the draft to delete
390 390
  * @param boolean $check Whether or not to check that the draft belongs to the current user
391
- * @return boolean False if it couldn't be deleted (doesn't return anything otherwise)
391
+ * @return false|null False if it couldn't be deleted (doesn't return anything otherwise)
392 392
  */
393 393
 function DeleteDraft($id_draft, $check = true)
394 394
 {
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
  * @param int $member_id ID of the member to show drafts for
423 423
  * @param boolean|integer $topic If $type is 1, this can be set to only load drafts for posts in the specific topic
424 424
  * @param int $draft_type The type of drafts to show - 0 for post drafts, 1 for PM drafts
425
- * @return boolean False if the drafts couldn't be loaded, nothing otherwise
425
+ * @return false|null False if the drafts couldn't be loaded, nothing otherwise
426 426
  */
427 427
 function ShowDrafts($member_id, $topic = false, $draft_type = 0)
428 428
 {
Please login to merge, or discard this patch.
subscriptions.php 1 patch
Braces   +38 added lines, -28 removed lines patch added patch discarded remove patch
@@ -16,8 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
 // Start things rolling by getting SMF alive...
18 18
 $ssi_guest_access = true;
19
-if (!file_exists(dirname(__FILE__) . '/SSI.php'))
19
+if (!file_exists(dirname(__FILE__) . '/SSI.php')) {
20 20
 	die('Cannot find SSI.php');
21
+}
21 22
 
22 23
 require_once(dirname(__FILE__) . '/SSI.php');
23 24
 require_once($sourcedir . '/ManagePaid.php');
@@ -35,20 +36,22 @@  discard block
 block discarded – undo
35 36
 }
36 37
 
37 38
 // I assume we're even active?
38
-if (empty($modSettings['paid_enabled']))
39
+if (empty($modSettings['paid_enabled'])) {
39 40
 	exit;
41
+}
40 42
 
41 43
 // If we have some custom people who find out about problems load them here.
42 44
 $notify_users = array();
43 45
 if (!empty($modSettings['paid_email_to']))
44 46
 {
45
-	foreach (explode(',', $modSettings['paid_email_to']) as $email)
46
-		$notify_users[] = array(
47
+	foreach (explode(',', $modSettings['paid_email_to']) as $email) {
48
+			$notify_users[] = array(
47 49
 			'email' => $email,
48 50
 			'name' => $txt['who_member'],
49 51
 			'id' => 0,
50 52
 		);
51
-}
53
+	}
54
+	}
52 55
 
53 56
 // We need to see whether we can find the correct payment gateway,
54 57
 // we'll going to go through all our gateway scripts and find out
@@ -65,8 +68,9 @@  discard block
 block discarded – undo
65 68
 	}
66 69
 }
67 70
 
68
-if (empty($txnType))
71
+if (empty($txnType)) {
69 72
 	generateSubscriptionError($txt['paid_unknown_transaction_type']);
73
+}
70 74
 
71 75
 // Get the subscription and member ID amoungst others...
72 76
 @list($subscription_id, $member_id) = $gatewayClass->precheck();
@@ -76,8 +80,9 @@  discard block
 block discarded – undo
76 80
 $member_id = (int) $member_id;
77 81
 
78 82
 // This would be bad...
79
-if (empty($member_id))
83
+if (empty($member_id)) {
80 84
 	generateSubscriptionError($txt['paid_empty_member']);
85
+}
81 86
 
82 87
 // Verify the member.
83 88
 $request = $smcFunc['db_query']('', '
@@ -89,8 +94,9 @@  discard block
 block discarded – undo
89 94
 	)
90 95
 );
91 96
 // Didn't find them?
92
-if ($smcFunc['db_num_rows']($request) === 0)
97
+if ($smcFunc['db_num_rows']($request) === 0) {
93 98
 	generateSubscriptionError(sprintf($txt['paid_could_not_find_member'], $member_id));
99
+}
94 100
 $member_info = $smcFunc['db_fetch_assoc']($request);
95 101
 $smcFunc['db_free_result']($request);
96 102
 
@@ -105,8 +111,9 @@  discard block
 block discarded – undo
105 111
 );
106 112
 
107 113
 // Didn't find it?
108
-if ($smcFunc['db_num_rows']($request) === 0)
114
+if ($smcFunc['db_num_rows']($request) === 0) {
109 115
 	generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription'], $member_id, $subscription_id));
116
+}
110 117
 
111 118
 $subscription_info = $smcFunc['db_fetch_assoc']($request);
112 119
 $smcFunc['db_free_result']($request);
@@ -123,8 +130,9 @@  discard block
 block discarded – undo
123 130
 		'current_member' => $member_id,
124 131
 	)
125 132
 );
126
-if ($smcFunc['db_num_rows']($request) === 0)
133
+if ($smcFunc['db_num_rows']($request) === 0) {
127 134
 	generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription_log'], $member_id, $subscription_id));
135
+}
128 136
 $subscription_info += $smcFunc['db_fetch_assoc']($request);
129 137
 $smcFunc['db_free_result']($request);
130 138
 
@@ -139,8 +147,7 @@  discard block
 block discarded – undo
139 147
 		removeSubscription($subscription_id, $member_id);
140 148
 		$subscription_act = time();
141 149
 		$status = 0;
142
-	}
143
-	else
150
+	} else
144 151
 	{
145 152
 		loadSubscriptions();
146 153
 		$subscription_act = $subscription_info['end_time'] - $context['subscriptions'][$subscription_id]['num_length'];
@@ -188,16 +195,18 @@  discard block
 block discarded – undo
188 195
 	if (!$gatewayClass->isSubscription())
189 196
 	{
190 197
 		$real_details = $smcFunc['json_decode']($subscription_info['pending_details'], true);
191
-		if (empty($real_details))
192
-			generateSubscriptionError(sprintf($txt['paid_count_not_find_outstanding_payment'], $member_id, $subscription_id));
198
+		if (empty($real_details)) {
199
+					generateSubscriptionError(sprintf($txt['paid_count_not_find_outstanding_payment'], $member_id, $subscription_id));
200
+		}
193 201
 
194 202
 		// Now we just try to find anything pending.
195 203
 		// We don't really care which it is as security happens later.
196 204
 		foreach ($real_details as $id => $detail)
197 205
 		{
198 206
 			unset($real_details[$id]);
199
-			if ($detail[3] == 'payback' && $subscription_info['payments_pending'])
200
-				$subscription_info['payments_pending']--;
207
+			if ($detail[3] == 'payback' && $subscription_info['payments_pending']) {
208
+							$subscription_info['payments_pending']--;
209
+			}
201 210
 			break;
202 211
 		}
203 212
 
@@ -223,10 +232,11 @@  discard block
 block discarded – undo
223 232
 		// This is a little harder, can we find the right duration?
224 233
 		foreach ($cost as $duration => $value)
225 234
 		{
226
-			if ($duration == 'fixed')
227
-				continue;
228
-			elseif ((float) $value == (float) $total_cost)
229
-				$found_duration = strtoupper(substr($duration, 0, 1));
235
+			if ($duration == 'fixed') {
236
+							continue;
237
+			} elseif ((float) $value == (float) $total_cost) {
238
+							$found_duration = strtoupper(substr($duration, 0, 1));
239
+			}
230 240
 		}
231 241
 
232 242
 		// If we have the duration then we're done.
@@ -235,8 +245,7 @@  discard block
 block discarded – undo
235 245
 			$notify = true;
236 246
 			addSubscription($subscription_id, $member_id, $found_duration);
237 247
 		}
238
-	}
239
-	else
248
+	} else
240 249
 	{
241 250
 		$actual_cost = $cost['fixed'];
242 251
 
@@ -268,10 +277,10 @@  discard block
 block discarded – undo
268 277
 // Maybe they're cancelling. Some subscriptions may require actively doing something, but PayPal doesn't, for example.
269 278
 elseif ($gatewayClass->isCancellation())
270 279
 {
271
-	if (method_exists($gatewayClass, 'performCancel'))
272
-		$gatewayClass->performCancel($subscription_id, $member_id, $subscription_info);
273
-}
274
-else
280
+	if (method_exists($gatewayClass, 'performCancel')) {
281
+			$gatewayClass->performCancel($subscription_id, $member_id, $subscription_info);
282
+	}
283
+	} else
275 284
 {
276 285
 	// Some other "valid" transaction such as:
277 286
 	//
@@ -308,8 +317,9 @@  discard block
 block discarded – undo
308 317
 	// Maybe we can try to give them the post data?
309 318
 	if (!empty($_POST))
310 319
 	{
311
-		foreach ($_POST as $key => $val)
312
-			$text .= '<br>' . $smcFunc['htmlspecialchars']($key) . ': ' . $smcFunc['htmlspecialchars']($val);
320
+		foreach ($_POST as $key => $val) {
321
+					$text .= '<br>' . $smcFunc['htmlspecialchars']($key) . ': ' . $smcFunc['htmlspecialchars']($val);
322
+		}
313 323
 	}
314 324
 
315 325
 	// Then just log and die.
Please login to merge, or discard this patch.
Sources/Load.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2259,9 +2259,9 @@  discard block
 block discarded – undo
2259 2259
  *
2260 2260
  * @uses the template_include() function to include the file.
2261 2261
  * @param string $template_name The name of the template to load
2262
- * @param array|string $style_sheets The name of a single stylesheet or an array of names of stylesheets to load
2262
+ * @param string $style_sheets The name of a single stylesheet or an array of names of stylesheets to load
2263 2263
  * @param bool $fatal If true, dies with an error message if the template cannot be found
2264
- * @return boolean Whether or not the template was loaded
2264
+ * @return boolean|null Whether or not the template was loaded
2265 2265
  */
2266 2266
 function loadTemplate($template_name, $style_sheets = array(), $fatal = true)
2267 2267
 {
@@ -2444,7 +2444,7 @@  discard block
 block discarded – undo
2444 2444
  * - all code added with this function is added to the same <style> tag so do make sure your css is valid!
2445 2445
  *
2446 2446
  * @param string $css Some css code
2447
- * @return void|bool Adds the CSS to the $context['css_header'] array or returns if no CSS is specified
2447
+ * @return false|null Adds the CSS to the $context['css_header'] array or returns if no CSS is specified
2448 2448
  */
2449 2449
 function addInlineCss($css)
2450 2450
 {
@@ -2558,7 +2558,7 @@  discard block
 block discarded – undo
2558 2558
  *
2559 2559
  * @param string $javascript Some JS code
2560 2560
  * @param bool $defer Whether the script should load in <head> or before the closing <html> tag
2561
- * @return void|bool Adds the code to one of the $context['javascript_inline'] arrays or returns if no JS was specified
2561
+ * @return false|null Adds the code to one of the $context['javascript_inline'] arrays or returns if no JS was specified
2562 2562
  */
2563 2563
 function addInlineJavaScript($javascript, $defer = false)
2564 2564
 {
@@ -2791,7 +2791,7 @@  discard block
 block discarded – undo
2791 2791
  * It will try to choose only utf8 or non-utf8 languages.
2792 2792
  *
2793 2793
  * @param bool $use_cache Whether or not to use the cache
2794
- * @return array An array of information about available languages
2794
+ * @return string An array of information about available languages
2795 2795
  */
2796 2796
 function getLanguages($use_cache = true)
2797 2797
 {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1742,7 +1742,7 @@  discard block
 block discarded – undo
1742 1742
 	}
1743 1743
 		
1744 1744
 	// We already load the basic stuff?
1745
-	if (empty($settings['theme_id']) || $settings['theme_id'] != $id_theme )
1745
+	if (empty($settings['theme_id']) || $settings['theme_id'] != $id_theme)
1746 1746
 	{
1747 1747
 		$member = empty($user_info['id']) ? -1 : $user_info['id'];
1748 1748
 
@@ -1767,7 +1767,7 @@  discard block
 block discarded – undo
1767 1767
 				SELECT variable, value, id_member, id_theme
1768 1768
 				FROM {db_prefix}themes
1769 1769
 				WHERE id_member' . (empty($themeData[0]) ? ' IN (-1, 0, {int:id_member})' : ' = {int:id_member}') . '
1770
-					AND id_theme' . ($id_theme == 1 ? ' = {int:id_theme}' : ' IN ({int:id_theme}, 1)') .'
1770
+					AND id_theme' . ($id_theme == 1 ? ' = {int:id_theme}' : ' IN ({int:id_theme}, 1)') . '
1771 1771
 				ORDER BY id_theme asc',
1772 1772
 				array(
1773 1773
 					'id_theme' => $id_theme,
@@ -1997,7 +1997,7 @@  discard block
 block discarded – undo
1997 1997
 	if (!isset($context['javascript_vars']))
1998 1998
 		$context['javascript_vars'] = array();
1999 1999
 
2000
-	$context['login_url'] =  $scripturl . '?action=login2';
2000
+	$context['login_url'] = $scripturl . '?action=login2';
2001 2001
 	$context['menu_separator'] = !empty($settings['use_image_buttons']) ? ' ' : ' | ';
2002 2002
 	$context['session_var'] = $_SESSION['session_var'];
2003 2003
 	$context['session_id'] = $_SESSION['session_value'];
Please login to merge, or discard this patch.
Braces   +792 added lines, -597 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
  * Load the $modSettings array.
@@ -25,13 +26,14 @@  discard block
 block discarded – undo
25 26
 	global $cache_enable, $sourcedir, $context;
26 27
 
27 28
 	// Most database systems have not set UTF-8 as their default input charset.
28
-	if (!empty($db_character_set))
29
-		$smcFunc['db_query']('', '
29
+	if (!empty($db_character_set)) {
30
+			$smcFunc['db_query']('', '
30 31
 			SET NAMES {string:db_character_set}',
31 32
 			array(
32 33
 				'db_character_set' => $db_character_set,
33 34
 			)
34 35
 		);
36
+	}
35 37
 
36 38
 	// We need some caching support, maybe.
37 39
 	loadCacheAccelerator();
@@ -46,28 +48,36 @@  discard block
 block discarded – undo
46 48
 			)
47 49
 		);
48 50
 		$modSettings = array();
49
-		if (!$request)
50
-			display_db_error();
51
-		while ($row = $smcFunc['db_fetch_row']($request))
52
-			$modSettings[$row[0]] = $row[1];
51
+		if (!$request) {
52
+					display_db_error();
53
+		}
54
+		while ($row = $smcFunc['db_fetch_row']($request)) {
55
+					$modSettings[$row[0]] = $row[1];
56
+		}
53 57
 		$smcFunc['db_free_result']($request);
54 58
 
55 59
 		// Do a few things to protect against missing settings or settings with invalid values...
56
-		if (empty($modSettings['defaultMaxTopics']) || $modSettings['defaultMaxTopics'] <= 0 || $modSettings['defaultMaxTopics'] > 999)
57
-			$modSettings['defaultMaxTopics'] = 20;
58
-		if (empty($modSettings['defaultMaxMessages']) || $modSettings['defaultMaxMessages'] <= 0 || $modSettings['defaultMaxMessages'] > 999)
59
-			$modSettings['defaultMaxMessages'] = 15;
60
-		if (empty($modSettings['defaultMaxMembers']) || $modSettings['defaultMaxMembers'] <= 0 || $modSettings['defaultMaxMembers'] > 999)
61
-			$modSettings['defaultMaxMembers'] = 30;
62
-		if (empty($modSettings['defaultMaxListItems']) || $modSettings['defaultMaxListItems'] <= 0 || $modSettings['defaultMaxListItems'] > 999)
63
-			$modSettings['defaultMaxListItems'] = 15;
60
+		if (empty($modSettings['defaultMaxTopics']) || $modSettings['defaultMaxTopics'] <= 0 || $modSettings['defaultMaxTopics'] > 999) {
61
+					$modSettings['defaultMaxTopics'] = 20;
62
+		}
63
+		if (empty($modSettings['defaultMaxMessages']) || $modSettings['defaultMaxMessages'] <= 0 || $modSettings['defaultMaxMessages'] > 999) {
64
+					$modSettings['defaultMaxMessages'] = 15;
65
+		}
66
+		if (empty($modSettings['defaultMaxMembers']) || $modSettings['defaultMaxMembers'] <= 0 || $modSettings['defaultMaxMembers'] > 999) {
67
+					$modSettings['defaultMaxMembers'] = 30;
68
+		}
69
+		if (empty($modSettings['defaultMaxListItems']) || $modSettings['defaultMaxListItems'] <= 0 || $modSettings['defaultMaxListItems'] > 999) {
70
+					$modSettings['defaultMaxListItems'] = 15;
71
+		}
64 72
 
65 73
 		// We explicitly do not use $smcFunc['json_decode'] here yet, as $smcFunc is not fully loaded.
66
-		if (!is_array($modSettings['attachmentUploadDir']))
67
-			$modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true);
74
+		if (!is_array($modSettings['attachmentUploadDir'])) {
75
+					$modSettings['attachmentUploadDir'] = smf_json_decode($modSettings['attachmentUploadDir'], true);
76
+		}
68 77
 
69
-		if (!empty($cache_enable))
70
-			cache_put_data('modSettings', $modSettings, 90);
78
+		if (!empty($cache_enable)) {
79
+					cache_put_data('modSettings', $modSettings, 90);
80
+		}
71 81
 	}
72 82
 
73 83
 	$modSettings['cache_enable'] = $cache_enable;
@@ -87,8 +97,9 @@  discard block
 block discarded – undo
87 97
 		};
88 98
 	$fix_utf8mb4 = function($string) use ($utf8, $smcFunc)
89 99
 	{
90
-		if (!$utf8 || $smcFunc['db_mb4'])
91
-			return $string;
100
+		if (!$utf8 || $smcFunc['db_mb4']) {
101
+					return $string;
102
+		}
92 103
 
93 104
 		$i = 0;
94 105
 		$len = strlen($string);
@@ -100,18 +111,15 @@  discard block
 block discarded – undo
100 111
 			{
101 112
 				$new_string .= $string[$i];
102 113
 				$i++;
103
-			}
104
-			elseif ($ord < 224)
114
+			} elseif ($ord < 224)
105 115
 			{
106 116
 				$new_string .= $string[$i] . $string[$i + 1];
107 117
 				$i += 2;
108
-			}
109
-			elseif ($ord < 240)
118
+			} elseif ($ord < 240)
110 119
 			{
111 120
 				$new_string .= $string[$i] . $string[$i + 1] . $string[$i + 2];
112 121
 				$i += 3;
113
-			}
114
-			elseif ($ord < 248)
122
+			} elseif ($ord < 248)
115 123
 			{
116 124
 				// Magic happens.
117 125
 				$val = (ord($string[$i]) & 0x07) << 18;
@@ -155,8 +163,7 @@  discard block
 block discarded – undo
155 163
 			{
156 164
 				$result = array_search($needle, array_slice($haystack_arr, $offset));
157 165
 				return is_int($result) ? $result + $offset : false;
158
-			}
159
-			else
166
+			} else
160 167
 			{
161 168
 				$needle_arr = preg_split('~(' . $ent_list . '|.)~' . ($utf8 ? 'u' : '') . '', $ent_check($needle), -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
162 169
 				$needle_size = count($needle_arr);
@@ -165,8 +172,9 @@  discard block
 block discarded – undo
165 172
 				while ((int) $result === $result)
166 173
 				{
167 174
 					$offset += $result;
168
-					if (array_slice($haystack_arr, $offset, $needle_size) === $needle_arr)
169
-						return $offset;
175
+					if (array_slice($haystack_arr, $offset, $needle_size) === $needle_arr) {
176
+											return $offset;
177
+					}
170 178
 					$result = array_search($needle_arr[0], array_slice($haystack_arr, ++$offset));
171 179
 				}
172 180
 				return false;
@@ -204,8 +212,9 @@  discard block
 block discarded – undo
204 212
 			$string = $ent_check($string);
205 213
 			preg_match('~^(' . $ent_list . '|.){' . $smcFunc['strlen'](substr($string, 0, $length)) . '}~' . ($utf8 ? 'u' : ''), $string, $matches);
206 214
 			$string = $matches[0];
207
-			while (strlen($string) > $length)
208
-				$string = preg_replace('~(?:' . $ent_list . '|.)$~' . ($utf8 ? 'u' : ''), '', $string);
215
+			while (strlen($string) > $length) {
216
+							$string = preg_replace('~(?:' . $ent_list . '|.)$~' . ($utf8 ? 'u' : ''), '', $string);
217
+			}
209 218
 			return $string;
210 219
 		},
211 220
 		'ucfirst' => $utf8 ? function($string) use (&$smcFunc)
@@ -215,8 +224,9 @@  discard block
 block discarded – undo
215 224
 		'ucwords' => $utf8 ? function($string) use (&$smcFunc)
216 225
 		{
217 226
 			$words = preg_split('~([\s\r\n\t]+)~', $string, -1, PREG_SPLIT_DELIM_CAPTURE);
218
-			for ($i = 0, $n = count($words); $i < $n; $i += 2)
219
-				$words[$i] = $smcFunc['ucfirst']($words[$i]);
227
+			for ($i = 0, $n = count($words); $i < $n; $i += 2) {
228
+							$words[$i] = $smcFunc['ucfirst']($words[$i]);
229
+			}
220 230
 			return implode('', $words);
221 231
 		} : 'ucwords',
222 232
 		'json_decode' => 'smf_json_decode',
@@ -224,16 +234,17 @@  discard block
 block discarded – undo
224 234
 	);
225 235
 
226 236
 	// Setting the timezone is a requirement for some functions.
227
-	if (isset($modSettings['default_timezone']) && in_array($modSettings['default_timezone'], timezone_identifiers_list()))
228
-		date_default_timezone_set($modSettings['default_timezone']);
229
-	else
237
+	if (isset($modSettings['default_timezone']) && in_array($modSettings['default_timezone'], timezone_identifiers_list())) {
238
+			date_default_timezone_set($modSettings['default_timezone']);
239
+	} else
230 240
 	{
231 241
 		// Get PHP's default timezone, if set
232 242
 		$ini_tz = ini_get('date.timezone');
233
-		if (!empty($ini_tz))
234
-			$modSettings['default_timezone'] = $ini_tz;
235
-		else
236
-			$modSettings['default_timezone'] = '';
243
+		if (!empty($ini_tz)) {
244
+					$modSettings['default_timezone'] = $ini_tz;
245
+		} else {
246
+					$modSettings['default_timezone'] = '';
247
+		}
237 248
 
238 249
 		// If date.timezone is unset, invalid, or just plain weird, make a best guess
239 250
 		if (!in_array($modSettings['default_timezone'], timezone_identifiers_list()))
@@ -251,22 +262,26 @@  discard block
 block discarded – undo
251 262
 		if (($modSettings['load_average'] = cache_get_data('loadavg', 90)) == null)
252 263
 		{
253 264
 			$modSettings['load_average'] = @file_get_contents('/proc/loadavg');
254
-			if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) != 0)
255
-				$modSettings['load_average'] = (float) $matches[1];
256
-			elseif (($modSettings['load_average'] = @`uptime`) != null && preg_match('~load average[s]?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) != 0)
257
-				$modSettings['load_average'] = (float) $matches[1];
258
-			else
259
-				unset($modSettings['load_average']);
265
+			if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) != 0) {
266
+							$modSettings['load_average'] = (float) $matches[1];
267
+			} elseif (($modSettings['load_average'] = @`uptime`) != null && preg_match('~load average[s]?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) != 0) {
268
+							$modSettings['load_average'] = (float) $matches[1];
269
+			} else {
270
+							unset($modSettings['load_average']);
271
+			}
260 272
 
261
-			if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0)
262
-				cache_put_data('loadavg', $modSettings['load_average'], 90);
273
+			if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0) {
274
+							cache_put_data('loadavg', $modSettings['load_average'], 90);
275
+			}
263 276
 		}
264 277
 
265
-		if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0)
266
-			call_integration_hook('integrate_load_average', array($modSettings['load_average']));
278
+		if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0) {
279
+					call_integration_hook('integrate_load_average', array($modSettings['load_average']));
280
+		}
267 281
 
268
-		if (!empty($modSettings['loadavg_forum']) && !empty($modSettings['load_average']) && $modSettings['load_average'] >= $modSettings['loadavg_forum'])
269
-			display_loadavg_error();
282
+		if (!empty($modSettings['loadavg_forum']) && !empty($modSettings['load_average']) && $modSettings['load_average'] >= $modSettings['loadavg_forum']) {
283
+					display_loadavg_error();
284
+		}
270 285
 	}
271 286
 
272 287
 	// Is post moderation alive and well? Everywhere else assumes this has been defined, so let's make sure it is.
@@ -287,8 +302,9 @@  discard block
 block discarded – undo
287 302
 	if (defined('SMF_INTEGRATION_SETTINGS'))
288 303
 	{
289 304
 		$integration_settings = $smcFunc['json_decode'](SMF_INTEGRATION_SETTINGS, true);
290
-		foreach ($integration_settings as $hook => $function)
291
-			add_integration_function($hook, $function, '', false);
305
+		foreach ($integration_settings as $hook => $function) {
306
+					add_integration_function($hook, $function, '', false);
307
+		}
292 308
 	}
293 309
 
294 310
 	// Any files to pre include?
@@ -298,8 +314,9 @@  discard block
 block discarded – undo
298 314
 		foreach ($pre_includes as $include)
299 315
 		{
300 316
 			$include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir));
301
-			if (file_exists($include))
302
-				require_once($include);
317
+			if (file_exists($include)) {
318
+							require_once($include);
319
+			}
303 320
 		}
304 321
 	}
305 322
 
@@ -410,9 +427,9 @@  discard block
 block discarded – undo
410 427
 				break;
411 428
 			}
412 429
 		}
430
+	} else {
431
+			$id_member = 0;
413 432
 	}
414
-	else
415
-		$id_member = 0;
416 433
 
417 434
 	if (empty($id_member) && isset($_COOKIE[$cookiename]))
418 435
 	{
@@ -420,8 +437,9 @@  discard block
 block discarded – undo
420 437
 		$cookie_data = $smcFunc['json_decode']($_COOKIE[$cookiename], true, false);
421 438
 
422 439
 		// Legacy format (for recent 2.0 --> 2.1 upgrades)
423
-		if (empty($cookie_data))
424
-			$cookie_data = safe_unserialize($_COOKIE[$cookiename]);
440
+		if (empty($cookie_data)) {
441
+					$cookie_data = safe_unserialize($_COOKIE[$cookiename]);
442
+		}
425 443
 
426 444
 		list($id_member, $password, $login_span, $cookie_domain, $cookie_path) = array_pad((array) $cookie_data, 5, '');
427 445
 
@@ -429,16 +447,17 @@  discard block
 block discarded – undo
429 447
 
430 448
 		// Make sure the cookie is set to the correct domain and path
431 449
 		require_once($sourcedir . '/Subs-Auth.php');
432
-		if (array($cookie_domain, $cookie_path) !== url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies'])))
433
-			setLoginCookie((int) $login_span - time(), $id_member);
434
-	}
435
-	elseif (empty($id_member) && isset($_SESSION['login_' . $cookiename]) && ($_SESSION['USER_AGENT'] == $_SERVER['HTTP_USER_AGENT'] || !empty($modSettings['disableCheckUA'])))
450
+		if (array($cookie_domain, $cookie_path) !== url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies']))) {
451
+					setLoginCookie((int) $login_span - time(), $id_member);
452
+		}
453
+	} elseif (empty($id_member) && isset($_SESSION['login_' . $cookiename]) && ($_SESSION['USER_AGENT'] == $_SERVER['HTTP_USER_AGENT'] || !empty($modSettings['disableCheckUA'])))
436 454
 	{
437 455
 		// @todo Perhaps we can do some more checking on this, such as on the first octet of the IP?
438 456
 		$cookie_data = $smcFunc['json_decode']($_SESSION['login_' . $cookiename], true);
439 457
 
440
-		if (empty($cookie_data))
441
-			$cookie_data = safe_unserialize($_SESSION['login_' . $cookiename]);
458
+		if (empty($cookie_data)) {
459
+					$cookie_data = safe_unserialize($_SESSION['login_' . $cookiename]);
460
+		}
442 461
 
443 462
 		list($id_member, $password, $login_span) = array_pad((array) $cookie_data, 3, '');
444 463
 		$id_member = !empty($id_member) && strlen($password) == 128 && (int) $login_span > time() ? (int) $id_member : 0;
@@ -463,30 +482,34 @@  discard block
 block discarded – undo
463 482
 			$user_settings = $smcFunc['db_fetch_assoc']($request);
464 483
 			$smcFunc['db_free_result']($request);
465 484
 
466
-			if (!empty($modSettings['force_ssl']) && $image_proxy_enabled && stripos($user_settings['avatar'], 'http://') !== false && empty($user_info['possibly_robot']))
467
-				$user_settings['avatar'] = get_proxied_url($user_settings['avatar']);
485
+			if (!empty($modSettings['force_ssl']) && $image_proxy_enabled && stripos($user_settings['avatar'], 'http://') !== false && empty($user_info['possibly_robot'])) {
486
+							$user_settings['avatar'] = get_proxied_url($user_settings['avatar']);
487
+			}
468 488
 
469
-			if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
470
-				cache_put_data('user_settings-' . $id_member, $user_settings, 60);
489
+			if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) {
490
+							cache_put_data('user_settings-' . $id_member, $user_settings, 60);
491
+			}
471 492
 		}
472 493
 
473 494
 		// Did we find 'im?  If not, junk it.
474 495
 		if (!empty($user_settings))
475 496
 		{
476 497
 			// As much as the password should be right, we can assume the integration set things up.
477
-			if (!empty($already_verified) && $already_verified === true)
478
-				$check = true;
498
+			if (!empty($already_verified) && $already_verified === true) {
499
+							$check = true;
500
+			}
479 501
 			// SHA-512 hash should be 128 characters long.
480
-			elseif (strlen($password) == 128)
481
-				$check = hash_salt($user_settings['passwd'], $user_settings['password_salt']) == $password;
482
-			else
483
-				$check = false;
502
+			elseif (strlen($password) == 128) {
503
+							$check = hash_salt($user_settings['passwd'], $user_settings['password_salt']) == $password;
504
+			} else {
505
+							$check = false;
506
+			}
484 507
 
485 508
 			// Wrong password or not activated - either way, you're going nowhere.
486 509
 			$id_member = $check && ($user_settings['is_activated'] == 1 || $user_settings['is_activated'] == 11) ? (int) $user_settings['id_member'] : 0;
510
+		} else {
511
+					$id_member = 0;
487 512
 		}
488
-		else
489
-			$id_member = 0;
490 513
 
491 514
 		// If we no longer have the member maybe they're being all hackey, stop brute force!
492 515
 		if (!$id_member)
@@ -515,8 +538,9 @@  discard block
 block discarded – undo
515 538
 
516 539
 					list ($tfamember, $tfasecret) = array_pad((array) $tfa_data, 2, '');
517 540
 
518
-					if (!isset($tfamember, $tfasecret) || (int) $tfamember != $id_member)
519
-						$tfasecret = null;
541
+					if (!isset($tfamember, $tfasecret) || (int) $tfamember != $id_member) {
542
+											$tfasecret = null;
543
+					}
520 544
 				}
521 545
 
522 546
 				// They didn't finish logging in before coming here? Then they're no one to us.
@@ -538,10 +562,12 @@  discard block
 block discarded – undo
538 562
 		// Are we forcing 2FA? Need to check if the user groups actually require 2FA
539 563
 		elseif (!empty($modSettings['tfa_mode']) && $modSettings['tfa_mode'] >= 2 && $id_member && empty($user_settings['tfa_secret']))
540 564
 		{
541
-			if ($modSettings['tfa_mode'] == 2) //only do this if we are just forcing SOME membergroups
565
+			if ($modSettings['tfa_mode'] == 2) {
566
+				//only do this if we are just forcing SOME membergroups
542 567
 			{
543 568
 				//Build an array of ALL user membergroups.
544 569
 				$full_groups = array($user_settings['id_group']);
570
+			}
545 571
 				if (!empty($user_settings['additional_groups']))
546 572
 				{
547 573
 					$full_groups = array_merge($full_groups, explode(',', $user_settings['additional_groups']));
@@ -561,15 +587,17 @@  discard block
 block discarded – undo
561 587
 				);
562 588
 				$row = $smcFunc['db_fetch_assoc']($request);
563 589
 				$smcFunc['db_free_result']($request);
590
+			} else {
591
+							$row['total'] = 1;
564 592
 			}
565
-			else
566
-				$row['total'] = 1; //simplifies logics in the next "if"
593
+			//simplifies logics in the next "if"
567 594
 
568 595
 			$area = !empty($_REQUEST['area']) ? $_REQUEST['area'] : '';
569 596
 			$action = !empty($_REQUEST['action']) ? $_REQUEST['action'] : '';
570 597
 
571
-			if ($row['total'] > 0 && !in_array($action, array('profile', 'logout')) || ($action == 'profile' && $area != 'tfasetup'))
572
-				redirectexit('action=profile;area=tfasetup;forced');
598
+			if ($row['total'] > 0 && !in_array($action, array('profile', 'logout')) || ($action == 'profile' && $area != 'tfasetup')) {
599
+							redirectexit('action=profile;area=tfasetup;forced');
600
+			}
573 601
 		}
574 602
 	}
575 603
 
@@ -606,29 +634,32 @@  discard block
 block discarded – undo
606 634
 				updateMemberData($id_member, array('id_msg_last_visit' => (int) $modSettings['maxMsgID'], 'last_login' => time(), 'member_ip' => $_SERVER['REMOTE_ADDR'], 'member_ip2' => $_SERVER['BAN_CHECK_IP']));
607 635
 				$user_settings['last_login'] = time();
608 636
 
609
-				if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
610
-					cache_put_data('user_settings-' . $id_member, $user_settings, 60);
637
+				if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) {
638
+									cache_put_data('user_settings-' . $id_member, $user_settings, 60);
639
+				}
611 640
 
612
-				if (!empty($modSettings['cache_enable']))
613
-					cache_put_data('user_last_visit-' . $id_member, $_SESSION['id_msg_last_visit'], 5 * 3600);
641
+				if (!empty($modSettings['cache_enable'])) {
642
+									cache_put_data('user_last_visit-' . $id_member, $_SESSION['id_msg_last_visit'], 5 * 3600);
643
+				}
614 644
 			}
645
+		} elseif (empty($_SESSION['id_msg_last_visit'])) {
646
+					$_SESSION['id_msg_last_visit'] = $user_settings['id_msg_last_visit'];
615 647
 		}
616
-		elseif (empty($_SESSION['id_msg_last_visit']))
617
-			$_SESSION['id_msg_last_visit'] = $user_settings['id_msg_last_visit'];
618 648
 
619 649
 		$username = $user_settings['member_name'];
620 650
 
621
-		if (empty($user_settings['additional_groups']))
622
-			$user_info = array(
651
+		if (empty($user_settings['additional_groups'])) {
652
+					$user_info = array(
623 653
 				'groups' => array($user_settings['id_group'], $user_settings['id_post_group'])
624 654
 			);
625
-		else
626
-			$user_info = array(
655
+		} else {
656
+					$user_info = array(
627 657
 				'groups' => array_merge(
628 658
 					array($user_settings['id_group'], $user_settings['id_post_group']),
629 659
 					explode(',', $user_settings['additional_groups'])
630 660
 				)
631 661
 			);
662
+		}
632 663
 
633 664
 		// Because history has proven that it is possible for groups to go bad - clean up in case.
634 665
 		$user_info['groups'] = array_map('intval', $user_info['groups']);
@@ -645,8 +676,7 @@  discard block
 block discarded – undo
645 676
 			$time_system = new DateTime('now', $tz_system);
646 677
 			$time_user = new DateTime('now', $tz_user);
647 678
 			$user_info['time_offset'] = ($tz_user->getOffset($time_user) - $tz_system->getOffset($time_system)) / 3600;
648
-		}
649
-		else
679
+		} else
650 680
 		{
651 681
 			// !!! Compatibility.
652 682
 			$user_info['time_offset'] = empty($user_settings['time_offset']) ? 0 : $user_settings['time_offset'];
@@ -660,8 +690,9 @@  discard block
 block discarded – undo
660 690
 		$user_info = array('groups' => array(-1));
661 691
 		$user_settings = array();
662 692
 
663
-		if (isset($_COOKIE[$cookiename]) && empty($context['tfa_member']))
664
-			$_COOKIE[$cookiename] = '';
693
+		if (isset($_COOKIE[$cookiename]) && empty($context['tfa_member'])) {
694
+					$_COOKIE[$cookiename] = '';
695
+		}
665 696
 
666 697
 		// Expire the 2FA cookie
667 698
 		if (isset($_COOKIE[$cookiename . '_tfa']) && empty($context['tfa_member']))
@@ -678,19 +709,20 @@  discard block
 block discarded – undo
678 709
 		}
679 710
 
680 711
 		// Create a login token if it doesn't exist yet.
681
-		if (!isset($_SESSION['token']['post-login']))
682
-			createToken('login');
683
-		else
684
-			list ($context['login_token_var'],,, $context['login_token']) = $_SESSION['token']['post-login'];
712
+		if (!isset($_SESSION['token']['post-login'])) {
713
+					createToken('login');
714
+		} else {
715
+					list ($context['login_token_var'],,, $context['login_token']) = $_SESSION['token']['post-login'];
716
+		}
685 717
 
686 718
 		// Do we perhaps think this is a search robot? Check every five minutes just in case...
687 719
 		if ((!empty($modSettings['spider_mode']) || !empty($modSettings['spider_group'])) && (!isset($_SESSION['robot_check']) || $_SESSION['robot_check'] < time() - 300))
688 720
 		{
689 721
 			require_once($sourcedir . '/ManageSearchEngines.php');
690 722
 			$user_info['possibly_robot'] = SpiderCheck();
723
+		} elseif (!empty($modSettings['spider_mode'])) {
724
+					$user_info['possibly_robot'] = isset($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0;
691 725
 		}
692
-		elseif (!empty($modSettings['spider_mode']))
693
-			$user_info['possibly_robot'] = isset($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0;
694 726
 		// If we haven't turned on proper spider hunts then have a guess!
695 727
 		else
696 728
 		{
@@ -738,8 +770,9 @@  discard block
 block discarded – undo
738 770
 	$user_info['groups'] = array_unique($user_info['groups']);
739 771
 
740 772
 	// Make sure that the last item in the ignore boards array is valid. If the list was too long it could have an ending comma that could cause problems.
741
-	if (!empty($user_info['ignoreboards']) && empty($user_info['ignoreboards'][$tmp = count($user_info['ignoreboards']) - 1]))
742
-		unset($user_info['ignoreboards'][$tmp]);
773
+	if (!empty($user_info['ignoreboards']) && empty($user_info['ignoreboards'][$tmp = count($user_info['ignoreboards']) - 1])) {
774
+			unset($user_info['ignoreboards'][$tmp]);
775
+	}
743 776
 
744 777
 	// Allow the user to change their language.
745 778
 	if (!empty($modSettings['userLanguage']))
@@ -752,13 +785,14 @@  discard block
 block discarded – undo
752 785
 			$user_info['language'] = strtr($_GET['language'], './\\:', '____');
753 786
 
754 787
 			// Make it permanent for members.
755
-			if (!empty($user_info['id']))
756
-				updateMemberData($user_info['id'], array('lngfile' => $user_info['language']));
757
-			else
758
-				$_SESSION['language'] = $user_info['language'];
788
+			if (!empty($user_info['id'])) {
789
+							updateMemberData($user_info['id'], array('lngfile' => $user_info['language']));
790
+			} else {
791
+							$_SESSION['language'] = $user_info['language'];
792
+			}
793
+		} elseif (!empty($_SESSION['language']) && isset($languages[strtr($_SESSION['language'], './\\:', '____')])) {
794
+					$user_info['language'] = strtr($_SESSION['language'], './\\:', '____');
759 795
 		}
760
-		elseif (!empty($_SESSION['language']) && isset($languages[strtr($_SESSION['language'], './\\:', '____')]))
761
-			$user_info['language'] = strtr($_SESSION['language'], './\\:', '____');
762 796
 	}
763 797
 
764 798
 	$temp = build_query_board($user_info['id']);
@@ -821,9 +855,9 @@  discard block
 block discarded – undo
821 855
 		}
822 856
 
823 857
 		// Remember redirection is the key to avoiding fallout from your bosses.
824
-		if (!empty($topic))
825
-			redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg']);
826
-		else
858
+		if (!empty($topic)) {
859
+					redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg']);
860
+		} else
827 861
 		{
828 862
 			loadPermissions();
829 863
 			loadTheme();
@@ -841,10 +875,11 @@  discard block
 block discarded – undo
841 875
 	if (!empty($modSettings['cache_enable']) && (empty($topic) || $modSettings['cache_enable'] >= 3))
842 876
 	{
843 877
 		// @todo SLOW?
844
-		if (!empty($topic))
845
-			$temp = cache_get_data('topic_board-' . $topic, 120);
846
-		else
847
-			$temp = cache_get_data('board-' . $board, 120);
878
+		if (!empty($topic)) {
879
+					$temp = cache_get_data('topic_board-' . $topic, 120);
880
+		} else {
881
+					$temp = cache_get_data('board-' . $board, 120);
882
+		}
848 883
 
849 884
 		if (!empty($temp))
850 885
 		{
@@ -882,8 +917,9 @@  discard block
 block discarded – undo
882 917
 			$row = $smcFunc['db_fetch_assoc']($request);
883 918
 
884 919
 			// Set the current board.
885
-			if (!empty($row['id_board']))
886
-				$board = $row['id_board'];
920
+			if (!empty($row['id_board'])) {
921
+							$board = $row['id_board'];
922
+			}
887 923
 
888 924
 			// Basic operating information. (globals... :/)
889 925
 			$board_info = array(
@@ -919,21 +955,23 @@  discard block
 block discarded – undo
919 955
 
920 956
 			do
921 957
 			{
922
-				if (!empty($row['id_moderator']))
923
-					$board_info['moderators'][$row['id_moderator']] = array(
958
+				if (!empty($row['id_moderator'])) {
959
+									$board_info['moderators'][$row['id_moderator']] = array(
924 960
 						'id' => $row['id_moderator'],
925 961
 						'name' => $row['real_name'],
926 962
 						'href' => $scripturl . '?action=profile;u=' . $row['id_moderator'],
927 963
 						'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_moderator'] . '">' . $row['real_name'] . '</a>'
928 964
 					);
965
+				}
929 966
 
930
-				if (!empty($row['id_moderator_group']))
931
-					$board_info['moderator_groups'][$row['id_moderator_group']] = array(
967
+				if (!empty($row['id_moderator_group'])) {
968
+									$board_info['moderator_groups'][$row['id_moderator_group']] = array(
932 969
 						'id' => $row['id_moderator_group'],
933 970
 						'name' => $row['group_name'],
934 971
 						'href' => $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'],
935 972
 						'link' => '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'] . '">' . $row['group_name'] . '</a>'
936 973
 					);
974
+				}
937 975
 			}
938 976
 			while ($row = $smcFunc['db_fetch_assoc']($request));
939 977
 
@@ -965,12 +1003,12 @@  discard block
 block discarded – undo
965 1003
 			if (!empty($modSettings['cache_enable']) && (empty($topic) || $modSettings['cache_enable'] >= 3))
966 1004
 			{
967 1005
 				// @todo SLOW?
968
-				if (!empty($topic))
969
-					cache_put_data('topic_board-' . $topic, $board_info, 120);
1006
+				if (!empty($topic)) {
1007
+									cache_put_data('topic_board-' . $topic, $board_info, 120);
1008
+				}
970 1009
 				cache_put_data('board-' . $board, $board_info, 120);
971 1010
 			}
972
-		}
973
-		else
1011
+		} else
974 1012
 		{
975 1013
 			// Otherwise the topic is invalid, there are no moderators, etc.
976 1014
 			$board_info = array(
@@ -984,8 +1022,9 @@  discard block
 block discarded – undo
984 1022
 		$smcFunc['db_free_result']($request);
985 1023
 	}
986 1024
 
987
-	if (!empty($topic))
988
-		$_GET['board'] = (int) $board;
1025
+	if (!empty($topic)) {
1026
+			$_GET['board'] = (int) $board;
1027
+	}
989 1028
 
990 1029
 	if (!empty($board))
991 1030
 	{
@@ -995,10 +1034,12 @@  discard block
 block discarded – undo
995 1034
 		// Now check if the user is a moderator.
996 1035
 		$user_info['is_mod'] = isset($board_info['moderators'][$user_info['id']]) || count(array_intersect($user_info['groups'], $moderator_groups)) != 0;
997 1036
 
998
-		if (count(array_intersect($user_info['groups'], $board_info['groups'])) == 0 && !$user_info['is_admin'])
999
-			$board_info['error'] = 'access';
1000
-		if (!empty($modSettings['deny_boards_access']) && count(array_intersect($user_info['groups'], $board_info['deny_groups'])) != 0 && !$user_info['is_admin'])
1001
-			$board_info['error'] = 'access';
1037
+		if (count(array_intersect($user_info['groups'], $board_info['groups'])) == 0 && !$user_info['is_admin']) {
1038
+					$board_info['error'] = 'access';
1039
+		}
1040
+		if (!empty($modSettings['deny_boards_access']) && count(array_intersect($user_info['groups'], $board_info['deny_groups'])) != 0 && !$user_info['is_admin']) {
1041
+					$board_info['error'] = 'access';
1042
+		}
1002 1043
 
1003 1044
 		// Build up the linktree.
1004 1045
 		$context['linktree'] = array_merge(
@@ -1021,8 +1062,9 @@  discard block
 block discarded – undo
1021 1062
 	$context['current_board'] = $board;
1022 1063
 
1023 1064
 	// No posting in redirection boards!
1024
-	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'post' && !empty($board_info['redirect']))
1025
-		$board_info['error'] == 'post_in_redirect';
1065
+	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'post' && !empty($board_info['redirect'])) {
1066
+			$board_info['error'] == 'post_in_redirect';
1067
+	}
1026 1068
 
1027 1069
 	// Hacker... you can't see this topic, I'll tell you that. (but moderators can!)
1028 1070
 	if (!empty($board_info['error']) && (!empty($modSettings['deny_boards_access']) || $board_info['error'] != 'access' || !$user_info['is_mod']))
@@ -1048,24 +1090,23 @@  discard block
 block discarded – undo
1048 1090
 			ob_end_clean();
1049 1091
 			send_http_status(403);
1050 1092
 			die;
1051
-		}
1052
-		elseif ($board_info['error'] == 'post_in_redirect')
1093
+		} elseif ($board_info['error'] == 'post_in_redirect')
1053 1094
 		{
1054 1095
 			// Slightly different error message here...
1055 1096
 			fatal_lang_error('cannot_post_redirect', false);
1056
-		}
1057
-		elseif ($user_info['is_guest'])
1097
+		} elseif ($user_info['is_guest'])
1058 1098
 		{
1059 1099
 			loadLanguage('Errors');
1060 1100
 			is_not_guest($txt['topic_gone']);
1101
+		} else {
1102
+					fatal_lang_error('topic_gone', false);
1061 1103
 		}
1062
-		else
1063
-			fatal_lang_error('topic_gone', false);
1064 1104
 	}
1065 1105
 
1066
-	if ($user_info['is_mod'])
1067
-		$user_info['groups'][] = 3;
1068
-}
1106
+	if ($user_info['is_mod']) {
1107
+			$user_info['groups'][] = 3;
1108
+	}
1109
+	}
1069 1110
 
1070 1111
 /**
1071 1112
  * Load this user's permissions.
@@ -1086,8 +1127,9 @@  discard block
 block discarded – undo
1086 1127
 		asort($cache_groups);
1087 1128
 		$cache_groups = implode(',', $cache_groups);
1088 1129
 		// If it's a spider then cache it different.
1089
-		if ($user_info['possibly_robot'])
1090
-			$cache_groups .= '-spider';
1130
+		if ($user_info['possibly_robot']) {
1131
+					$cache_groups .= '-spider';
1132
+		}
1091 1133
 
1092 1134
 		if ($modSettings['cache_enable'] >= 2 && !empty($board) && ($temp = cache_get_data('permissions:' . $cache_groups . ':' . $board, 240)) != null && time() - 240 > $modSettings['settings_updated'])
1093 1135
 		{
@@ -1095,9 +1137,9 @@  discard block
 block discarded – undo
1095 1137
 			banPermissions();
1096 1138
 
1097 1139
 			return;
1140
+		} elseif (($temp = cache_get_data('permissions:' . $cache_groups, 240)) != null && time() - 240 > $modSettings['settings_updated']) {
1141
+					list ($user_info['permissions'], $removals) = $temp;
1098 1142
 		}
1099
-		elseif (($temp = cache_get_data('permissions:' . $cache_groups, 240)) != null && time() - 240 > $modSettings['settings_updated'])
1100
-			list ($user_info['permissions'], $removals) = $temp;
1101 1143
 	}
1102 1144
 
1103 1145
 	// If it is detected as a robot, and we are restricting permissions as a special group - then implement this.
@@ -1119,23 +1161,26 @@  discard block
 block discarded – undo
1119 1161
 		$removals = array();
1120 1162
 		while ($row = $smcFunc['db_fetch_assoc']($request))
1121 1163
 		{
1122
-			if (empty($row['add_deny']))
1123
-				$removals[] = $row['permission'];
1124
-			else
1125
-				$user_info['permissions'][] = $row['permission'];
1164
+			if (empty($row['add_deny'])) {
1165
+							$removals[] = $row['permission'];
1166
+			} else {
1167
+							$user_info['permissions'][] = $row['permission'];
1168
+			}
1126 1169
 		}
1127 1170
 		$smcFunc['db_free_result']($request);
1128 1171
 
1129
-		if (isset($cache_groups))
1130
-			cache_put_data('permissions:' . $cache_groups, array($user_info['permissions'], $removals), 240);
1172
+		if (isset($cache_groups)) {
1173
+					cache_put_data('permissions:' . $cache_groups, array($user_info['permissions'], $removals), 240);
1174
+		}
1131 1175
 	}
1132 1176
 
1133 1177
 	// Get the board permissions.
1134 1178
 	if (!empty($board))
1135 1179
 	{
1136 1180
 		// Make sure the board (if any) has been loaded by loadBoard().
1137
-		if (!isset($board_info['profile']))
1138
-			fatal_lang_error('no_board');
1181
+		if (!isset($board_info['profile'])) {
1182
+					fatal_lang_error('no_board');
1183
+		}
1139 1184
 
1140 1185
 		$request = $smcFunc['db_query']('', '
1141 1186
 			SELECT permission, add_deny
@@ -1151,20 +1196,23 @@  discard block
 block discarded – undo
1151 1196
 		);
1152 1197
 		while ($row = $smcFunc['db_fetch_assoc']($request))
1153 1198
 		{
1154
-			if (empty($row['add_deny']))
1155
-				$removals[] = $row['permission'];
1156
-			else
1157
-				$user_info['permissions'][] = $row['permission'];
1199
+			if (empty($row['add_deny'])) {
1200
+							$removals[] = $row['permission'];
1201
+			} else {
1202
+							$user_info['permissions'][] = $row['permission'];
1203
+			}
1158 1204
 		}
1159 1205
 		$smcFunc['db_free_result']($request);
1160 1206
 	}
1161 1207
 
1162 1208
 	// Remove all the permissions they shouldn't have ;).
1163
-	if (!empty($modSettings['permission_enable_deny']))
1164
-		$user_info['permissions'] = array_diff($user_info['permissions'], $removals);
1209
+	if (!empty($modSettings['permission_enable_deny'])) {
1210
+			$user_info['permissions'] = array_diff($user_info['permissions'], $removals);
1211
+	}
1165 1212
 
1166
-	if (isset($cache_groups) && !empty($board) && $modSettings['cache_enable'] >= 2)
1167
-		cache_put_data('permissions:' . $cache_groups . ':' . $board, array($user_info['permissions'], null), 240);
1213
+	if (isset($cache_groups) && !empty($board) && $modSettings['cache_enable'] >= 2) {
1214
+			cache_put_data('permissions:' . $cache_groups . ':' . $board, array($user_info['permissions'], null), 240);
1215
+	}
1168 1216
 
1169 1217
 	// Banned?  Watch, don't touch..
1170 1218
 	banPermissions();
@@ -1176,17 +1224,18 @@  discard block
 block discarded – undo
1176 1224
 		{
1177 1225
 			require_once($sourcedir . '/Subs-Auth.php');
1178 1226
 			rebuildModCache();
1227
+		} else {
1228
+					$user_info['mod_cache'] = $_SESSION['mc'];
1179 1229
 		}
1180
-		else
1181
-			$user_info['mod_cache'] = $_SESSION['mc'];
1182 1230
 
1183 1231
 		// This is a useful phantom permission added to the current user, and only the current user while they are logged in.
1184 1232
 		// For example this drastically simplifies certain changes to the profile area.
1185 1233
 		$user_info['permissions'][] = 'is_not_guest';
1186 1234
 		// And now some backwards compatibility stuff for mods and whatnot that aren't expecting the new permissions.
1187 1235
 		$user_info['permissions'][] = 'profile_view_own';
1188
-		if (in_array('profile_view', $user_info['permissions']))
1189
-			$user_info['permissions'][] = 'profile_view_any';
1236
+		if (in_array('profile_view', $user_info['permissions'])) {
1237
+					$user_info['permissions'][] = 'profile_view_any';
1238
+		}
1190 1239
 	}
1191 1240
 }
1192 1241
 
@@ -1204,8 +1253,9 @@  discard block
 block discarded – undo
1204 1253
 	global $image_proxy_enabled, $user_info;
1205 1254
 
1206 1255
 	// Can't just look for no users :P.
1207
-	if (empty($users))
1208
-		return array();
1256
+	if (empty($users)) {
1257
+			return array();
1258
+	}
1209 1259
 
1210 1260
 	// Pass the set value
1211 1261
 	$context['loadMemberContext_set'] = $set;
@@ -1220,8 +1270,9 @@  discard block
 block discarded – undo
1220 1270
 		for ($i = 0, $n = count($users); $i < $n; $i++)
1221 1271
 		{
1222 1272
 			$data = cache_get_data('member_data-' . $set . '-' . $users[$i], 240);
1223
-			if ($data == null)
1224
-				continue;
1273
+			if ($data == null) {
1274
+							continue;
1275
+			}
1225 1276
 
1226 1277
 			$loaded_ids[] = $data['id_member'];
1227 1278
 			$user_profile[$data['id_member']] = $data;
@@ -1288,16 +1339,19 @@  discard block
 block discarded – undo
1288 1339
 			$row['avatar_original'] = !empty($row['avatar']) ? $row['avatar'] : '';
1289 1340
 
1290 1341
 			// Take care of proxying avatar if required, do this here for maximum reach
1291
-			if ($image_proxy_enabled && !empty($row['avatar']) && stripos($row['avatar'], 'http://') !== false && empty($user_info['possibly_robot']))
1292
-				$row['avatar'] = get_proxied_url($row['avatar']);
1342
+			if ($image_proxy_enabled && !empty($row['avatar']) && stripos($row['avatar'], 'http://') !== false && empty($user_info['possibly_robot'])) {
1343
+							$row['avatar'] = get_proxied_url($row['avatar']);
1344
+			}
1293 1345
 
1294 1346
 			// Keep track of the member's normal member group
1295 1347
 			$row['primary_group'] = !empty($row['member_group']) ? $row['member_group'] : '';
1296 1348
 
1297
-			if (isset($row['member_ip']))
1298
-				$row['member_ip'] = inet_dtop($row['member_ip']);
1299
-			if (isset($row['member_ip2']))
1300
-				$row['member_ip2'] = inet_dtop($row['member_ip2']);
1349
+			if (isset($row['member_ip'])) {
1350
+							$row['member_ip'] = inet_dtop($row['member_ip']);
1351
+			}
1352
+			if (isset($row['member_ip2'])) {
1353
+							$row['member_ip2'] = inet_dtop($row['member_ip2']);
1354
+			}
1301 1355
 			$row['id_member'] = (int) $row['id_member'];
1302 1356
 			$new_loaded_ids[] = $row['id_member'];
1303 1357
 			$loaded_ids[] = $row['id_member'];
@@ -1317,8 +1371,9 @@  discard block
 block discarded – undo
1317 1371
 				'loaded_ids' => $new_loaded_ids,
1318 1372
 			)
1319 1373
 		);
1320
-		while ($row = $smcFunc['db_fetch_assoc']($request))
1321
-			$user_profile[$row['id_member']]['options'][$row['variable']] = $row['value'];
1374
+		while ($row = $smcFunc['db_fetch_assoc']($request)) {
1375
+					$user_profile[$row['id_member']]['options'][$row['variable']] = $row['value'];
1376
+		}
1322 1377
 		$smcFunc['db_free_result']($request);
1323 1378
 	}
1324 1379
 
@@ -1329,10 +1384,11 @@  discard block
 block discarded – undo
1329 1384
 	{
1330 1385
 		foreach ($loaded_ids as $a_member)
1331 1386
 		{
1332
-			if (!empty($user_profile[$a_member]['additional_groups']))
1333
-				$groups = array_merge(array($user_profile[$a_member]['id_group']), explode(',', $user_profile[$a_member]['additional_groups']));
1334
-			else
1335
-				$groups = array($user_profile[$a_member]['id_group']);
1387
+			if (!empty($user_profile[$a_member]['additional_groups'])) {
1388
+							$groups = array_merge(array($user_profile[$a_member]['id_group']), explode(',', $user_profile[$a_member]['additional_groups']));
1389
+			} else {
1390
+							$groups = array($user_profile[$a_member]['id_group']);
1391
+			}
1336 1392
 
1337 1393
 			$temp = array_intersect($groups, array_keys($board_info['moderator_groups']));
1338 1394
 
@@ -1345,8 +1401,9 @@  discard block
 block discarded – undo
1345 1401
 
1346 1402
 	if (!empty($new_loaded_ids) && !empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 3)
1347 1403
 	{
1348
-		for ($i = 0, $n = count($new_loaded_ids); $i < $n; $i++)
1349
-			cache_put_data('member_data-' . $set . '-' . $new_loaded_ids[$i], $user_profile[$new_loaded_ids[$i]], 240);
1404
+		for ($i = 0, $n = count($new_loaded_ids); $i < $n; $i++) {
1405
+					cache_put_data('member_data-' . $set . '-' . $new_loaded_ids[$i], $user_profile[$new_loaded_ids[$i]], 240);
1406
+		}
1350 1407
 	}
1351 1408
 
1352 1409
 	// Are we loading any moderators?  If so, fix their group data...
@@ -1372,14 +1429,17 @@  discard block
 block discarded – undo
1372 1429
 		foreach ($temp_mods as $id)
1373 1430
 		{
1374 1431
 			// By popular demand, don't show admins or global moderators as moderators.
1375
-			if ($user_profile[$id]['id_group'] != 1 && $user_profile[$id]['id_group'] != 2)
1376
-				$user_profile[$id]['member_group'] = $row['member_group'];
1432
+			if ($user_profile[$id]['id_group'] != 1 && $user_profile[$id]['id_group'] != 2) {
1433
+							$user_profile[$id]['member_group'] = $row['member_group'];
1434
+			}
1377 1435
 
1378 1436
 			// If the Moderator group has no color or icons, but their group does... don't overwrite.
1379
-			if (!empty($row['icons']))
1380
-				$user_profile[$id]['icons'] = $row['icons'];
1381
-			if (!empty($row['member_group_color']))
1382
-				$user_profile[$id]['member_group_color'] = $row['member_group_color'];
1437
+			if (!empty($row['icons'])) {
1438
+							$user_profile[$id]['icons'] = $row['icons'];
1439
+			}
1440
+			if (!empty($row['member_group_color'])) {
1441
+							$user_profile[$id]['member_group_color'] = $row['member_group_color'];
1442
+			}
1383 1443
 		}
1384 1444
 	}
1385 1445
 
@@ -1401,12 +1461,14 @@  discard block
 block discarded – undo
1401 1461
 	static $loadedLanguages = array();
1402 1462
 
1403 1463
 	// If this person's data is already loaded, skip it.
1404
-	if (isset($dataLoaded[$user]))
1405
-		return true;
1464
+	if (isset($dataLoaded[$user])) {
1465
+			return true;
1466
+	}
1406 1467
 
1407 1468
 	// We can't load guests or members not loaded by loadMemberData()!
1408
-	if ($user == 0)
1409
-		return false;
1469
+	if ($user == 0) {
1470
+			return false;
1471
+	}
1410 1472
 	if (!isset($user_profile[$user]))
1411 1473
 	{
1412 1474
 		trigger_error('loadMemberContext(): member id ' . $user . ' not previously loaded by loadMemberData()', E_USER_WARNING);
@@ -1432,12 +1494,16 @@  discard block
 block discarded – undo
1432 1494
 	$buddy_list = !empty($profile['buddy_list']) ? explode(',', $profile['buddy_list']) : array();
1433 1495
 
1434 1496
 	//We need a little fallback for the membergroup icons. If it doesn't exist in the current theme, fallback to default theme
1435
-	if (isset($profile['icons'][1]) && file_exists($settings['actual_theme_dir'] . '/images/membericons/' . $profile['icons'][1])) //icon is set and exists
1497
+	if (isset($profile['icons'][1]) && file_exists($settings['actual_theme_dir'] . '/images/membericons/' . $profile['icons'][1])) {
1498
+		//icon is set and exists
1436 1499
 		$group_icon_url = $settings['images_url'] . '/membericons/' . $profile['icons'][1];
1437
-	elseif (isset($profile['icons'][1])) //icon is set and doesn't exist, fallback to default
1500
+	} elseif (isset($profile['icons'][1])) {
1501
+		//icon is set and doesn't exist, fallback to default
1438 1502
 		$group_icon_url = $settings['default_images_url'] . '/membericons/' . $profile['icons'][1];
1439
-	else //not set, bye bye
1503
+	} else {
1504
+		//not set, bye bye
1440 1505
 		$group_icon_url = '';
1506
+	}
1441 1507
 
1442 1508
 	// These minimal values are always loaded
1443 1509
 	$memberContext[$user] = array(
@@ -1456,8 +1522,9 @@  discard block
 block discarded – undo
1456 1522
 	if ($context['loadMemberContext_set'] != 'minimal')
1457 1523
 	{
1458 1524
 		// Go the extra mile and load the user's native language name.
1459
-		if (empty($loadedLanguages))
1460
-			$loadedLanguages = getLanguages();
1525
+		if (empty($loadedLanguages)) {
1526
+					$loadedLanguages = getLanguages();
1527
+		}
1461 1528
 
1462 1529
 		$memberContext[$user] += array(
1463 1530
 			'username_color' => '<span ' . (!empty($profile['member_group_color']) ? 'style="color:' . $profile['member_group_color'] . ';"' : '') . '>' . $profile['member_name'] . '</span>',
@@ -1512,31 +1579,33 @@  discard block
 block discarded – undo
1512 1579
 	{
1513 1580
 		if (!empty($modSettings['gravatarOverride']) || (!empty($modSettings['gravatarEnabled']) && stristr($profile['avatar'], 'gravatar://')))
1514 1581
 		{
1515
-			if (!empty($modSettings['gravatarAllowExtraEmail']) && stristr($profile['avatar'], 'gravatar://') && strlen($profile['avatar']) > 11)
1516
-				$image = get_gravatar_url($smcFunc['substr']($profile['avatar'], 11));
1517
-			else
1518
-				$image = get_gravatar_url($profile['email_address']);
1519
-		}
1520
-		else
1582
+			if (!empty($modSettings['gravatarAllowExtraEmail']) && stristr($profile['avatar'], 'gravatar://') && strlen($profile['avatar']) > 11) {
1583
+							$image = get_gravatar_url($smcFunc['substr']($profile['avatar'], 11));
1584
+			} else {
1585
+							$image = get_gravatar_url($profile['email_address']);
1586
+			}
1587
+		} else
1521 1588
 		{
1522 1589
 			// So it's stored in the member table?
1523 1590
 			if (!empty($profile['avatar']))
1524 1591
 			{
1525 1592
 				$image = (stristr($profile['avatar'], 'http://') || stristr($profile['avatar'], 'https://')) ? $profile['avatar'] : $modSettings['avatar_url'] . '/' . $profile['avatar'];
1593
+			} elseif (!empty($profile['filename'])) {
1594
+							$image = $modSettings['custom_avatar_url'] . '/' . $profile['filename'];
1526 1595
 			}
1527
-			elseif (!empty($profile['filename']))
1528
-				$image = $modSettings['custom_avatar_url'] . '/' . $profile['filename'];
1529 1596
 			// Right... no avatar...use the default one
1530
-			else
1531
-				$image = $modSettings['avatar_url'] . '/default.png';
1597
+			else {
1598
+							$image = $modSettings['avatar_url'] . '/default.png';
1599
+			}
1532 1600
 		}
1533
-		if (!empty($image))
1534
-			$memberContext[$user]['avatar'] = array(
1601
+		if (!empty($image)) {
1602
+					$memberContext[$user]['avatar'] = array(
1535 1603
 				'name' => $profile['avatar'],
1536 1604
 				'image' => '<img class="avatar" src="' . $image . '" alt="avatar_' . $profile['member_name'] . '">',
1537 1605
 				'href' => $image,
1538 1606
 				'url' => $image,
1539 1607
 			);
1608
+		}
1540 1609
 	}
1541 1610
 
1542 1611
 	// Are we also loading the members custom fields into context?
@@ -1544,13 +1613,15 @@  discard block
 block discarded – undo
1544 1613
 	{
1545 1614
 		$memberContext[$user]['custom_fields'] = array();
1546 1615
 
1547
-		if (!isset($context['display_fields']))
1548
-			$context['display_fields'] = $smcFunc['json_decode']($modSettings['displayFields'], true);
1616
+		if (!isset($context['display_fields'])) {
1617
+					$context['display_fields'] = $smcFunc['json_decode']($modSettings['displayFields'], true);
1618
+		}
1549 1619
 
1550 1620
 		foreach ($context['display_fields'] as $custom)
1551 1621
 		{
1552
-			if (!isset($custom['col_name']) || trim($custom['col_name']) == '' || empty($profile['options'][$custom['col_name']]))
1553
-				continue;
1622
+			if (!isset($custom['col_name']) || trim($custom['col_name']) == '' || empty($profile['options'][$custom['col_name']])) {
1623
+							continue;
1624
+			}
1554 1625
 
1555 1626
 			$value = $profile['options'][$custom['col_name']];
1556 1627
 
@@ -1558,31 +1629,36 @@  discard block
 block discarded – undo
1558 1629
 			$currentKey = 0;
1559 1630
 
1560 1631
 			// Create a key => value array for multiple options fields
1561
-			if (!empty($custom['options']))
1562
-				foreach ($custom['options'] as $k => $v)
1632
+			if (!empty($custom['options'])) {
1633
+							foreach ($custom['options'] as $k => $v)
1563 1634
 				{
1564 1635
 					$fieldOptions[] = $v;
1565
-					if (empty($currentKey))
1566
-						$currentKey = $v == $value ? $k : 0;
1636
+			}
1637
+					if (empty($currentKey)) {
1638
+											$currentKey = $v == $value ? $k : 0;
1639
+					}
1567 1640
 				}
1568 1641
 
1569 1642
 			// BBC?
1570
-			if ($custom['bbc'])
1571
-				$value = parse_bbc($value);
1643
+			if ($custom['bbc']) {
1644
+							$value = parse_bbc($value);
1645
+			}
1572 1646
 
1573 1647
 			// ... or checkbox?
1574
-			elseif (isset($custom['type']) && $custom['type'] == 'check')
1575
-				$value = $value ? $txt['yes'] : $txt['no'];
1648
+			elseif (isset($custom['type']) && $custom['type'] == 'check') {
1649
+							$value = $value ? $txt['yes'] : $txt['no'];
1650
+			}
1576 1651
 
1577 1652
 			// Enclosing the user input within some other text?
1578
-			if (!empty($custom['enclose']))
1579
-				$value = strtr($custom['enclose'], array(
1653
+			if (!empty($custom['enclose'])) {
1654
+							$value = strtr($custom['enclose'], array(
1580 1655
 					'{SCRIPTURL}' => $scripturl,
1581 1656
 					'{IMAGES_URL}' => $settings['images_url'],
1582 1657
 					'{DEFAULT_IMAGES_URL}' => $settings['default_images_url'],
1583 1658
 					'{INPUT}' => $value,
1584 1659
 					'{KEY}' => $currentKey,
1585 1660
 				));
1661
+			}
1586 1662
 
1587 1663
 			$memberContext[$user]['custom_fields'][] = array(
1588 1664
 				'title' => !empty($custom['title']) ? $custom['title'] : $custom['col_name'],
@@ -1609,8 +1685,9 @@  discard block
 block discarded – undo
1609 1685
 	global $smcFunc, $txt, $scripturl, $settings;
1610 1686
 
1611 1687
 	// Do not waste my time...
1612
-	if (empty($users) || empty($params))
1613
-		return false;
1688
+	if (empty($users) || empty($params)) {
1689
+			return false;
1690
+	}
1614 1691
 
1615 1692
 	// Make sure it's an array.
1616 1693
 	$users = !is_array($users) ? array($users) : array_unique($users);
@@ -1637,41 +1714,48 @@  discard block
 block discarded – undo
1637 1714
 		$currentKey = 0;
1638 1715
 
1639 1716
 		// Create a key => value array for multiple options fields
1640
-		if (!empty($row['field_options']))
1641
-			foreach (explode(',', $row['field_options']) as $k => $v)
1717
+		if (!empty($row['field_options'])) {
1718
+					foreach (explode(',', $row['field_options']) as $k => $v)
1642 1719
 			{
1643 1720
 				$fieldOptions[] = $v;
1644
-				if (empty($currentKey))
1645
-					$currentKey = $v == $row['value'] ? $k : 0;
1721
+		}
1722
+				if (empty($currentKey)) {
1723
+									$currentKey = $v == $row['value'] ? $k : 0;
1724
+				}
1646 1725
 			}
1647 1726
 
1648 1727
 		// BBC?
1649
-		if (!empty($row['bbc']))
1650
-			$row['value'] = parse_bbc($row['value']);
1728
+		if (!empty($row['bbc'])) {
1729
+					$row['value'] = parse_bbc($row['value']);
1730
+		}
1651 1731
 
1652 1732
 		// ... or checkbox?
1653
-		elseif (isset($row['type']) && $row['type'] == 'check')
1654
-			$row['value'] = !empty($row['value']) ? $txt['yes'] : $txt['no'];
1733
+		elseif (isset($row['type']) && $row['type'] == 'check') {
1734
+					$row['value'] = !empty($row['value']) ? $txt['yes'] : $txt['no'];
1735
+		}
1655 1736
 
1656 1737
 		// Enclosing the user input within some other text?
1657
-		if (!empty($row['enclose']))
1658
-			$row['value'] = strtr($row['enclose'], array(
1738
+		if (!empty($row['enclose'])) {
1739
+					$row['value'] = strtr($row['enclose'], array(
1659 1740
 				'{SCRIPTURL}' => $scripturl,
1660 1741
 				'{IMAGES_URL}' => $settings['images_url'],
1661 1742
 				'{DEFAULT_IMAGES_URL}' => $settings['default_images_url'],
1662 1743
 				'{INPUT}' => un_htmlspecialchars($row['value']),
1663 1744
 				'{KEY}' => $currentKey,
1664 1745
 			));
1746
+		}
1665 1747
 
1666 1748
 		// Send a simple array if there is just 1 param
1667
-		if (count($params) == 1)
1668
-			$return[$row['id_member']] = $row;
1749
+		if (count($params) == 1) {
1750
+					$return[$row['id_member']] = $row;
1751
+		}
1669 1752
 
1670 1753
 		// More than 1? knock yourself out...
1671 1754
 		else
1672 1755
 		{
1673
-			if (!isset($return[$row['id_member']]))
1674
-				$return[$row['id_member']] = array();
1756
+			if (!isset($return[$row['id_member']])) {
1757
+							$return[$row['id_member']] = array();
1758
+			}
1675 1759
 
1676 1760
 			$return[$row['id_member']][$row['variable']] = $row;
1677 1761
 		}
@@ -1705,8 +1789,9 @@  discard block
 block discarded – undo
1705 1789
 	global $context;
1706 1790
 
1707 1791
 	// Don't know any browser!
1708
-	if (empty($context['browser']))
1709
-		detectBrowser();
1792
+	if (empty($context['browser'])) {
1793
+			detectBrowser();
1794
+	}
1710 1795
 
1711 1796
 	return !empty($context['browser'][$browser]) || !empty($context['browser']['is_' . $browser]) ? true : false;
1712 1797
 }
@@ -1724,8 +1809,9 @@  discard block
 block discarded – undo
1724 1809
 	global $context, $settings, $options, $sourcedir, $ssi_theme, $smcFunc, $language, $board, $image_proxy_enabled;
1725 1810
 
1726 1811
 	// The theme was specified by parameter.
1727
-	if (!empty($id_theme))
1728
-		$id_theme = (int) $id_theme;
1812
+	if (!empty($id_theme)) {
1813
+			$id_theme = (int) $id_theme;
1814
+	}
1729 1815
 	// The theme was specified by REQUEST.
1730 1816
 	elseif (!empty($_REQUEST['theme']) && (!empty($modSettings['theme_allow']) || allowedTo('admin_forum')))
1731 1817
 	{
@@ -1733,32 +1819,38 @@  discard block
 block discarded – undo
1733 1819
 		$_SESSION['id_theme'] = $id_theme;
1734 1820
 	}
1735 1821
 	// The theme was specified by REQUEST... previously.
1736
-	elseif (!empty($_SESSION['id_theme']) && (!empty($modSettings['theme_allow']) || allowedTo('admin_forum')))
1737
-		$id_theme = (int) $_SESSION['id_theme'];
1822
+	elseif (!empty($_SESSION['id_theme']) && (!empty($modSettings['theme_allow']) || allowedTo('admin_forum'))) {
1823
+			$id_theme = (int) $_SESSION['id_theme'];
1824
+	}
1738 1825
 	// The theme is just the user's choice. (might use ?board=1;theme=0 to force board theme.)
1739
-	elseif (!empty($user_info['theme']) && !isset($_REQUEST['theme']))
1740
-		$id_theme = $user_info['theme'];
1826
+	elseif (!empty($user_info['theme']) && !isset($_REQUEST['theme'])) {
1827
+			$id_theme = $user_info['theme'];
1828
+	}
1741 1829
 	// The theme was specified by the board.
1742
-	elseif (!empty($board_info['theme']))
1743
-		$id_theme = $board_info['theme'];
1830
+	elseif (!empty($board_info['theme'])) {
1831
+			$id_theme = $board_info['theme'];
1832
+	}
1744 1833
 	// The theme is the forum's default.
1745
-	else
1746
-		$id_theme = $modSettings['theme_guests'];
1834
+	else {
1835
+			$id_theme = $modSettings['theme_guests'];
1836
+	}
1747 1837
 
1748 1838
 	// Verify the id_theme... no foul play.
1749 1839
 	// Always allow the board specific theme, if they are overriding.
1750
-	if (!empty($board_info['theme']) && $board_info['override_theme'])
1751
-		$id_theme = $board_info['theme'];
1840
+	if (!empty($board_info['theme']) && $board_info['override_theme']) {
1841
+			$id_theme = $board_info['theme'];
1842
+	}
1752 1843
 	// If they have specified a particular theme to use with SSI allow it to be used.
1753
-	elseif (!empty($ssi_theme) && $id_theme == $ssi_theme)
1754
-		$id_theme = (int) $id_theme;
1755
-	elseif (!empty($modSettings['enableThemes']) && !allowedTo('admin_forum'))
1844
+	elseif (!empty($ssi_theme) && $id_theme == $ssi_theme) {
1845
+			$id_theme = (int) $id_theme;
1846
+	} elseif (!empty($modSettings['enableThemes']) && !allowedTo('admin_forum'))
1756 1847
 	{
1757 1848
 		$themes = explode(',', $modSettings['enableThemes']);
1758
-		if (!in_array($id_theme, $themes))
1759
-			$id_theme = $modSettings['theme_guests'];
1760
-		else
1761
-			$id_theme = (int) $id_theme;
1849
+		if (!in_array($id_theme, $themes)) {
1850
+					$id_theme = $modSettings['theme_guests'];
1851
+		} else {
1852
+					$id_theme = (int) $id_theme;
1853
+		}
1762 1854
 	}
1763 1855
 		
1764 1856
 	// We already load the basic stuff?
@@ -1767,18 +1859,19 @@  discard block
 block discarded – undo
1767 1859
 		$member = empty($user_info['id']) ? -1 : $user_info['id'];
1768 1860
 
1769 1861
 		// Disable image proxy if we don't have SSL enabled
1770
-		if (empty($modSettings['force_ssl']))
1771
-			$image_proxy_enabled = false;
1862
+		if (empty($modSettings['force_ssl'])) {
1863
+					$image_proxy_enabled = false;
1864
+		}
1772 1865
 
1773 1866
 		if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2 && ($temp = cache_get_data('theme_settings-' . $id_theme . ':' . $member, 60)) != null && time() - 60 > $modSettings['settings_updated'])
1774 1867
 		{
1775 1868
 			$themeData = $temp;
1776 1869
 			$flag = true;
1870
+		} elseif (($temp = cache_get_data('theme_settings-' . $id_theme, 90)) != null && time() - 60 > $modSettings['settings_updated']) {
1871
+					$themeData = $temp + array($member => array());
1872
+		} else {
1873
+					$themeData = array(-1 => array(), 0 => array(), $member => array());
1777 1874
 		}
1778
-		elseif (($temp = cache_get_data('theme_settings-' . $id_theme, 90)) != null && time() - 60 > $modSettings['settings_updated'])
1779
-			$themeData = $temp + array($member => array());
1780
-		else
1781
-			$themeData = array(-1 => array(), 0 => array(), $member => array());
1782 1875
 
1783 1876
 		if (empty($flag))
1784 1877
 		{
@@ -1798,31 +1891,37 @@  discard block
 block discarded – undo
1798 1891
 			while ($row = $smcFunc['db_fetch_assoc']($result))
1799 1892
 			{
1800 1893
 				// There are just things we shouldn't be able to change as members.
1801
-				if ($row['id_member'] != 0 && in_array($row['variable'], array('actual_theme_url', 'actual_images_url', 'base_theme_dir', 'base_theme_url', 'default_images_url', 'default_theme_dir', 'default_theme_url', 'default_template', 'images_url', 'number_recent_posts', 'smiley_sets_default', 'theme_dir', 'theme_id', 'theme_layers', 'theme_templates', 'theme_url')))
1802
-					continue;
1894
+				if ($row['id_member'] != 0 && in_array($row['variable'], array('actual_theme_url', 'actual_images_url', 'base_theme_dir', 'base_theme_url', 'default_images_url', 'default_theme_dir', 'default_theme_url', 'default_template', 'images_url', 'number_recent_posts', 'smiley_sets_default', 'theme_dir', 'theme_id', 'theme_layers', 'theme_templates', 'theme_url'))) {
1895
+									continue;
1896
+				}
1803 1897
 
1804 1898
 				// If this is the theme_dir of the default theme, store it.
1805
-				if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1' && empty($row['id_member']))
1806
-					$themeData[0]['default_' . $row['variable']] = $row['value'];
1899
+				if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1' && empty($row['id_member'])) {
1900
+									$themeData[0]['default_' . $row['variable']] = $row['value'];
1901
+				}
1807 1902
 
1808 1903
 				// If this isn't set yet, is a theme option, or is not the default theme..
1809
-				if (!isset($themeData[$row['id_member']][$row['variable']]) || $row['id_theme'] != '1')
1810
-					$themeData[$row['id_member']][$row['variable']] = substr($row['variable'], 0, 5) == 'show_' ? $row['value'] == '1' : $row['value'];
1904
+				if (!isset($themeData[$row['id_member']][$row['variable']]) || $row['id_theme'] != '1') {
1905
+									$themeData[$row['id_member']][$row['variable']] = substr($row['variable'], 0, 5) == 'show_' ? $row['value'] == '1' : $row['value'];
1906
+				}
1811 1907
 			}
1812 1908
 			$smcFunc['db_free_result']($result);
1813 1909
 
1814
-			if (!empty($themeData[-1]))
1815
-				foreach ($themeData[-1] as $k => $v)
1910
+			if (!empty($themeData[-1])) {
1911
+							foreach ($themeData[-1] as $k => $v)
1816 1912
 				{
1817 1913
 					if (!isset($themeData[$member][$k]))
1818 1914
 						$themeData[$member][$k] = $v;
1915
+			}
1819 1916
 				}
1820 1917
 
1821
-			if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
1822
-				cache_put_data('theme_settings-' . $id_theme . ':' . $member, $themeData, 60);
1918
+			if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) {
1919
+							cache_put_data('theme_settings-' . $id_theme . ':' . $member, $themeData, 60);
1920
+			}
1823 1921
 			// Only if we didn't already load that part of the cache...
1824
-			elseif (!isset($temp))
1825
-				cache_put_data('theme_settings-' . $id_theme, array(-1 => $themeData[-1], 0 => $themeData[0]), 90);
1922
+			elseif (!isset($temp)) {
1923
+							cache_put_data('theme_settings-' . $id_theme, array(-1 => $themeData[-1], 0 => $themeData[0]), 90);
1924
+			}
1826 1925
 		}
1827 1926
 
1828 1927
 		$settings = $themeData[0];
@@ -1839,17 +1938,20 @@  discard block
 block discarded – undo
1839 1938
 		$settings['template_dirs'][] = $settings['theme_dir'];
1840 1939
 
1841 1940
 		// Based on theme (if there is one).
1842
-		if (!empty($settings['base_theme_dir']))
1843
-			$settings['template_dirs'][] = $settings['base_theme_dir'];
1941
+		if (!empty($settings['base_theme_dir'])) {
1942
+					$settings['template_dirs'][] = $settings['base_theme_dir'];
1943
+		}
1844 1944
 
1845 1945
 		// Lastly the default theme.
1846
-		if ($settings['theme_dir'] != $settings['default_theme_dir'])
1847
-			$settings['template_dirs'][] = $settings['default_theme_dir'];
1946
+		if ($settings['theme_dir'] != $settings['default_theme_dir']) {
1947
+					$settings['template_dirs'][] = $settings['default_theme_dir'];
1948
+		}
1848 1949
 	}
1849 1950
 
1850 1951
 
1851
-	if (!$initialize)
1852
-		return;
1952
+	if (!$initialize) {
1953
+			return;
1954
+	}
1853 1955
 
1854 1956
 	// Check to see if we're forcing SSL
1855 1957
 	if (!empty($modSettings['force_ssl']) && empty($maintenance) &&
@@ -1870,8 +1972,9 @@  discard block
 block discarded – undo
1870 1972
 		$detected_url = httpsOn() ? 'https://' : 'http://';
1871 1973
 		$detected_url .= empty($_SERVER['HTTP_HOST']) ? $_SERVER['SERVER_NAME'] . (empty($_SERVER['SERVER_PORT']) || $_SERVER['SERVER_PORT'] == '80' ? '' : ':' . $_SERVER['SERVER_PORT']) : $_SERVER['HTTP_HOST'];
1872 1974
 		$temp = preg_replace('~/' . basename($scripturl) . '(/.+)?$~', '', strtr(dirname($_SERVER['PHP_SELF']), '\\', '/'));
1873
-		if ($temp != '/')
1874
-			$detected_url .= $temp;
1975
+		if ($temp != '/') {
1976
+					$detected_url .= $temp;
1977
+		}
1875 1978
 	}
1876 1979
 	if (isset($detected_url) && $detected_url != $boardurl)
1877 1980
 	{
@@ -1883,8 +1986,9 @@  discard block
 block discarded – undo
1883 1986
 			foreach ($aliases as $alias)
1884 1987
 			{
1885 1988
 				// Rip off all the boring parts, spaces, etc.
1886
-				if ($detected_url == trim($alias) || strtr($detected_url, array('http://' => '', 'https://' => '')) == trim($alias))
1887
-					$do_fix = true;
1989
+				if ($detected_url == trim($alias) || strtr($detected_url, array('http://' => '', 'https://' => '')) == trim($alias)) {
1990
+									$do_fix = true;
1991
+				}
1888 1992
 			}
1889 1993
 		}
1890 1994
 
@@ -1892,21 +1996,23 @@  discard block
 block discarded – undo
1892 1996
 		if (empty($do_fix) && strtr($detected_url, array('://' => '://www.')) == $boardurl && (empty($_GET) || count($_GET) == 1) && SMF != 'SSI')
1893 1997
 		{
1894 1998
 			// Okay, this seems weird, but we don't want an endless loop - this will make $_GET not empty ;).
1895
-			if (empty($_GET))
1896
-				redirectexit('wwwRedirect');
1897
-			else
1999
+			if (empty($_GET)) {
2000
+							redirectexit('wwwRedirect');
2001
+			} else
1898 2002
 			{
1899 2003
 				$k = key($_GET);
1900 2004
 				$v = current($_GET);
1901 2005
 
1902
-				if ($k != 'wwwRedirect')
1903
-					redirectexit('wwwRedirect;' . $k . '=' . $v);
2006
+				if ($k != 'wwwRedirect') {
2007
+									redirectexit('wwwRedirect;' . $k . '=' . $v);
2008
+				}
1904 2009
 			}
1905 2010
 		}
1906 2011
 
1907 2012
 		// #3 is just a check for SSL...
1908
-		if (strtr($detected_url, array('https://' => 'http://')) == $boardurl)
1909
-			$do_fix = true;
2013
+		if (strtr($detected_url, array('https://' => 'http://')) == $boardurl) {
2014
+					$do_fix = true;
2015
+		}
1910 2016
 
1911 2017
 		// Okay, #4 - perhaps it's an IP address?  We're gonna want to use that one, then. (assuming it's the IP or something...)
1912 2018
 		if (!empty($do_fix) || preg_match('~^http[s]?://(?:[\d\.:]+|\[[\d:]+\](?::\d+)?)(?:$|/)~', $detected_url) == 1)
@@ -1941,8 +2047,9 @@  discard block
 block discarded – undo
1941 2047
 					$board_info['moderators'][$k]['link'] = strtr($dummy['link'], array('"' . $oldurl => '"' . $boardurl));
1942 2048
 				}
1943 2049
 			}
1944
-			foreach ($context['linktree'] as $k => $dummy)
1945
-				$context['linktree'][$k]['url'] = strtr($dummy['url'], array($oldurl => $boardurl));
2050
+			foreach ($context['linktree'] as $k => $dummy) {
2051
+							$context['linktree'][$k]['url'] = strtr($dummy['url'], array($oldurl => $boardurl));
2052
+			}
1946 2053
 		}
1947 2054
 	}
1948 2055
 	// Set up the contextual user array.
@@ -1961,16 +2068,16 @@  discard block
 block discarded – undo
1961 2068
 			'email' => $user_info['email'],
1962 2069
 			'ignoreusers' => $user_info['ignoreusers'],
1963 2070
 		);
1964
-		if (!$context['user']['is_guest'])
1965
-			$context['user']['name'] = $user_info['name'];
1966
-		elseif ($context['user']['is_guest'] && !empty($txt['guest_title']))
1967
-			$context['user']['name'] = $txt['guest_title'];
2071
+		if (!$context['user']['is_guest']) {
2072
+					$context['user']['name'] = $user_info['name'];
2073
+		} elseif ($context['user']['is_guest'] && !empty($txt['guest_title'])) {
2074
+					$context['user']['name'] = $txt['guest_title'];
2075
+		}
1968 2076
 
1969 2077
 		// Determine the current smiley set.
1970 2078
 		$user_info['smiley_set'] = (!in_array($user_info['smiley_set'], explode(',', $modSettings['smiley_sets_known'])) && $user_info['smiley_set'] != 'none') || empty($modSettings['smiley_sets_enable']) ? (!empty($settings['smiley_sets_default']) ? $settings['smiley_sets_default'] : $modSettings['smiley_sets_default']) : $user_info['smiley_set'];
1971 2079
 		$context['user']['smiley_set'] = $user_info['smiley_set'];
1972
-	}
1973
-	else
2080
+	} else
1974 2081
 	{
1975 2082
 		// What to do when there is no $user_info (e.g., an error very early in the login process)
1976 2083
 		$context['user'] = array(
@@ -2004,18 +2111,24 @@  discard block
 block discarded – undo
2004 2111
 	}
2005 2112
 
2006 2113
 	// Some basic information...
2007
-	if (!isset($context['html_headers']))
2008
-		$context['html_headers'] = '';
2009
-	if (!isset($context['javascript_files']))
2010
-		$context['javascript_files'] = array();
2011
-	if (!isset($context['css_files']))
2012
-		$context['css_files'] = array();
2013
-	if (!isset($context['css_header']))
2014
-		$context['css_header'] = array();
2015
-	if (!isset($context['javascript_inline']))
2016
-		$context['javascript_inline'] = array('standard' => array(), 'defer' => array());
2017
-	if (!isset($context['javascript_vars']))
2018
-		$context['javascript_vars'] = array();
2114
+	if (!isset($context['html_headers'])) {
2115
+			$context['html_headers'] = '';
2116
+	}
2117
+	if (!isset($context['javascript_files'])) {
2118
+			$context['javascript_files'] = array();
2119
+	}
2120
+	if (!isset($context['css_files'])) {
2121
+			$context['css_files'] = array();
2122
+	}
2123
+	if (!isset($context['css_header'])) {
2124
+			$context['css_header'] = array();
2125
+	}
2126
+	if (!isset($context['javascript_inline'])) {
2127
+			$context['javascript_inline'] = array('standard' => array(), 'defer' => array());
2128
+	}
2129
+	if (!isset($context['javascript_vars'])) {
2130
+			$context['javascript_vars'] = array();
2131
+	}
2019 2132
 
2020 2133
 	$context['login_url'] =  $scripturl . '?action=login2';
2021 2134
 	$context['menu_separator'] = !empty($settings['use_image_buttons']) ? ' ' : ' | ';
@@ -2027,16 +2140,18 @@  discard block
 block discarded – undo
2027 2140
 	$context['current_action'] = isset($_REQUEST['action']) ? $smcFunc['htmlspecialchars']($_REQUEST['action']) : null;
2028 2141
 	$context['current_subaction'] = isset($_REQUEST['sa']) ? $_REQUEST['sa'] : null;
2029 2142
 	$context['can_register'] = empty($modSettings['registration_method']) || $modSettings['registration_method'] != 3;
2030
-	if (isset($modSettings['load_average']))
2031
-		$context['load_average'] = $modSettings['load_average'];
2143
+	if (isset($modSettings['load_average'])) {
2144
+			$context['load_average'] = $modSettings['load_average'];
2145
+	}
2032 2146
 
2033 2147
 	// Detect the browser. This is separated out because it's also used in attachment downloads
2034 2148
 	detectBrowser();
2035 2149
 
2036 2150
 	// Set the top level linktree up.
2037 2151
 	// Note that if we're dealing with certain very early errors (e.g., login) the linktree might not be set yet...
2038
-	if (empty($context['linktree']))
2039
-		$context['linktree'] = array();
2152
+	if (empty($context['linktree'])) {
2153
+			$context['linktree'] = array();
2154
+	}
2040 2155
 	array_unshift($context['linktree'], array(
2041 2156
 		'url' => $scripturl,
2042 2157
 		'name' => $context['forum_name_html_safe']
@@ -2045,8 +2160,9 @@  discard block
 block discarded – undo
2045 2160
 	// This allows sticking some HTML on the page output - useful for controls.
2046 2161
 	$context['insert_after_template'] = '';
2047 2162
 
2048
-	if (!isset($txt))
2049
-		$txt = array();
2163
+	if (!isset($txt)) {
2164
+			$txt = array();
2165
+	}
2050 2166
 
2051 2167
 	$simpleActions = array(
2052 2168
 		'findmember',
@@ -2092,9 +2208,10 @@  discard block
 block discarded – undo
2092 2208
 
2093 2209
 	// See if theres any extra param to check.
2094 2210
 	$requiresXML = false;
2095
-	foreach ($extraParams as $key => $extra)
2096
-		if (isset($_REQUEST[$extra]))
2211
+	foreach ($extraParams as $key => $extra) {
2212
+			if (isset($_REQUEST[$extra]))
2097 2213
 			$requiresXML = true;
2214
+	}
2098 2215
 
2099 2216
 	// Output is fully XML, so no need for the index template.
2100 2217
 	if (isset($_REQUEST['xml']) && (in_array($context['current_action'], $xmlActions) || $requiresXML))
@@ -2109,37 +2226,39 @@  discard block
 block discarded – undo
2109 2226
 	{
2110 2227
 		loadLanguage('index+Modifications');
2111 2228
 		$context['template_layers'] = array();
2112
-	}
2113
-
2114
-	else
2229
+	} else
2115 2230
 	{
2116 2231
 		// Custom templates to load, or just default?
2117
-		if (isset($settings['theme_templates']))
2118
-			$templates = explode(',', $settings['theme_templates']);
2119
-		else
2120
-			$templates = array('index');
2232
+		if (isset($settings['theme_templates'])) {
2233
+					$templates = explode(',', $settings['theme_templates']);
2234
+		} else {
2235
+					$templates = array('index');
2236
+		}
2121 2237
 
2122 2238
 		// Load each template...
2123
-		foreach ($templates as $template)
2124
-			loadTemplate($template);
2239
+		foreach ($templates as $template) {
2240
+					loadTemplate($template);
2241
+		}
2125 2242
 
2126 2243
 		// ...and attempt to load their associated language files.
2127 2244
 		$required_files = implode('+', array_merge($templates, array('Modifications')));
2128 2245
 		loadLanguage($required_files, '', false);
2129 2246
 
2130 2247
 		// Custom template layers?
2131
-		if (isset($settings['theme_layers']))
2132
-			$context['template_layers'] = explode(',', $settings['theme_layers']);
2133
-		else
2134
-			$context['template_layers'] = array('html', 'body');
2248
+		if (isset($settings['theme_layers'])) {
2249
+					$context['template_layers'] = explode(',', $settings['theme_layers']);
2250
+		} else {
2251
+					$context['template_layers'] = array('html', 'body');
2252
+		}
2135 2253
 	}
2136 2254
 
2137 2255
 	// Initialize the theme.
2138 2256
 	loadSubTemplate('init', 'ignore');
2139 2257
 
2140 2258
 	// Allow overriding the board wide time/number formats.
2141
-	if (empty($user_settings['time_format']) && !empty($txt['time_format']))
2142
-		$user_info['time_format'] = $txt['time_format'];
2259
+	if (empty($user_settings['time_format']) && !empty($txt['time_format'])) {
2260
+			$user_info['time_format'] = $txt['time_format'];
2261
+	}
2143 2262
 
2144 2263
 	// Set the character set from the template.
2145 2264
 	$context['character_set'] = empty($modSettings['global_character_set']) ? $txt['lang_character_set'] : $modSettings['global_character_set'];
@@ -2147,12 +2266,14 @@  discard block
 block discarded – undo
2147 2266
 	$context['right_to_left'] = !empty($txt['lang_rtl']);
2148 2267
 
2149 2268
 	// Guests may still need a name.
2150
-	if ($context['user']['is_guest'] && empty($context['user']['name']))
2151
-		$context['user']['name'] = $txt['guest_title'];
2269
+	if ($context['user']['is_guest'] && empty($context['user']['name'])) {
2270
+			$context['user']['name'] = $txt['guest_title'];
2271
+	}
2152 2272
 
2153 2273
 	// Any theme-related strings that need to be loaded?
2154
-	if (!empty($settings['require_theme_strings']))
2155
-		loadLanguage('ThemeStrings', '', false);
2274
+	if (!empty($settings['require_theme_strings'])) {
2275
+			loadLanguage('ThemeStrings', '', false);
2276
+	}
2156 2277
 
2157 2278
 	// Make a special URL for the language.
2158 2279
 	$settings['lang_images_url'] = $settings['images_url'] . '/' . (!empty($txt['image_lang']) ? $txt['image_lang'] : $user_info['language']);
@@ -2163,8 +2284,9 @@  discard block
 block discarded – undo
2163 2284
 	// Here is my luvly Responsive CSS
2164 2285
 	loadCSSFile('responsive.css', array('force_current' => false, 'validate' => true, 'minimize' => true, 'order_pos' => 9000), 'smf_responsive');
2165 2286
 
2166
-	if ($context['right_to_left'])
2167
-		loadCSSFile('rtl.css', array('order_pos' => 200), 'smf_rtl');
2287
+	if ($context['right_to_left']) {
2288
+			loadCSSFile('rtl.css', array('order_pos' => 200), 'smf_rtl');
2289
+	}
2168 2290
 
2169 2291
 	// We allow theme variants, because we're cool.
2170 2292
 	$context['theme_variant'] = '';
@@ -2172,14 +2294,17 @@  discard block
 block discarded – undo
2172 2294
 	if (!empty($settings['theme_variants']))
2173 2295
 	{
2174 2296
 		// Overriding - for previews and that ilk.
2175
-		if (!empty($_REQUEST['variant']))
2176
-			$_SESSION['id_variant'] = $_REQUEST['variant'];
2297
+		if (!empty($_REQUEST['variant'])) {
2298
+					$_SESSION['id_variant'] = $_REQUEST['variant'];
2299
+		}
2177 2300
 		// User selection?
2178
-		if (empty($settings['disable_user_variant']) || allowedTo('admin_forum'))
2179
-			$context['theme_variant'] = !empty($_SESSION['id_variant']) ? $_SESSION['id_variant'] : (!empty($options['theme_variant']) ? $options['theme_variant'] : '');
2301
+		if (empty($settings['disable_user_variant']) || allowedTo('admin_forum')) {
2302
+					$context['theme_variant'] = !empty($_SESSION['id_variant']) ? $_SESSION['id_variant'] : (!empty($options['theme_variant']) ? $options['theme_variant'] : '');
2303
+		}
2180 2304
 		// If not a user variant, select the default.
2181
-		if ($context['theme_variant'] == '' || !in_array($context['theme_variant'], $settings['theme_variants']))
2182
-			$context['theme_variant'] = !empty($settings['default_variant']) && in_array($settings['default_variant'], $settings['theme_variants']) ? $settings['default_variant'] : $settings['theme_variants'][0];
2305
+		if ($context['theme_variant'] == '' || !in_array($context['theme_variant'], $settings['theme_variants'])) {
2306
+					$context['theme_variant'] = !empty($settings['default_variant']) && in_array($settings['default_variant'], $settings['theme_variants']) ? $settings['default_variant'] : $settings['theme_variants'][0];
2307
+		}
2183 2308
 
2184 2309
 		// Do this to keep things easier in the templates.
2185 2310
 		$context['theme_variant'] = '_' . $context['theme_variant'];
@@ -2188,20 +2313,23 @@  discard block
 block discarded – undo
2188 2313
 		if (!empty($context['theme_variant']))
2189 2314
 		{
2190 2315
 			loadCSSFile('index' . $context['theme_variant'] . '.css', array('order_pos' => 300), 'smf_index' . $context['theme_variant']);
2191
-			if ($context['right_to_left'])
2192
-				loadCSSFile('rtl' . $context['theme_variant'] . '.css', array('order_pos' => 400), 'smf_rtl' . $context['theme_variant']);
2316
+			if ($context['right_to_left']) {
2317
+							loadCSSFile('rtl' . $context['theme_variant'] . '.css', array('order_pos' => 400), 'smf_rtl' . $context['theme_variant']);
2318
+			}
2193 2319
 		}
2194 2320
 	}
2195 2321
 
2196 2322
 	// Let's be compatible with old themes!
2197
-	if (!function_exists('template_html_above') && in_array('html', $context['template_layers']))
2198
-		$context['template_layers'] = array('main');
2323
+	if (!function_exists('template_html_above') && in_array('html', $context['template_layers'])) {
2324
+			$context['template_layers'] = array('main');
2325
+	}
2199 2326
 
2200 2327
 	$context['tabindex'] = 1;
2201 2328
 
2202 2329
 	// Compatibility.
2203
-	if (!isset($settings['theme_version']))
2204
-		$modSettings['memberCount'] = $modSettings['totalMembers'];
2330
+	if (!isset($settings['theme_version'])) {
2331
+			$modSettings['memberCount'] = $modSettings['totalMembers'];
2332
+	}
2205 2333
 
2206 2334
 	// Default JS variables for use in every theme
2207 2335
 	$context['javascript_vars'] = array(
@@ -2222,18 +2350,18 @@  discard block
 block discarded – undo
2222 2350
 	);
2223 2351
 
2224 2352
 	// Add the JQuery library to the list of files to load.
2225
-	if (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'cdn')
2226
-		loadJavaScriptFile('https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array('external' => true), 'smf_jquery');
2227
-
2228
-	elseif (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'local')
2229
-		loadJavaScriptFile('jquery-3.2.1.min.js', array('seed' => false), 'smf_jquery');
2230
-
2231
-	elseif (isset($modSettings['jquery_source'], $modSettings['jquery_custom']) && $modSettings['jquery_source'] == 'custom')
2232
-		loadJavaScriptFile($modSettings['jquery_custom'], array('external' => true), 'smf_jquery');
2353
+	if (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'cdn') {
2354
+			loadJavaScriptFile('https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array('external' => true), 'smf_jquery');
2355
+	} elseif (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'local') {
2356
+			loadJavaScriptFile('jquery-3.2.1.min.js', array('seed' => false), 'smf_jquery');
2357
+	} elseif (isset($modSettings['jquery_source'], $modSettings['jquery_custom']) && $modSettings['jquery_source'] == 'custom') {
2358
+			loadJavaScriptFile($modSettings['jquery_custom'], array('external' => true), 'smf_jquery');
2359
+	}
2233 2360
 
2234 2361
 	// Auto loading? template_javascript() will take care of the local half of this.
2235
-	else
2236
-		loadJavaScriptFile('https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array('external' => true), 'smf_jquery');
2362
+	else {
2363
+			loadJavaScriptFile('https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array('external' => true), 'smf_jquery');
2364
+	}
2237 2365
 
2238 2366
 	// Queue our JQuery plugins!
2239 2367
 	loadJavaScriptFile('smf_jquery_plugins.js', array('minimize' => true), 'smf_jquery_plugins');
@@ -2256,12 +2384,12 @@  discard block
 block discarded – undo
2256 2384
 			require_once($sourcedir . '/ScheduledTasks.php');
2257 2385
 
2258 2386
 			// What to do, what to do?!
2259
-			if (empty($modSettings['next_task_time']) || $modSettings['next_task_time'] < time())
2260
-				AutoTask();
2261
-			else
2262
-				ReduceMailQueue();
2263
-		}
2264
-		else
2387
+			if (empty($modSettings['next_task_time']) || $modSettings['next_task_time'] < time()) {
2388
+							AutoTask();
2389
+			} else {
2390
+							ReduceMailQueue();
2391
+			}
2392
+		} else
2265 2393
 		{
2266 2394
 			$type = empty($modSettings['next_task_time']) || $modSettings['next_task_time'] < time() ? 'task' : 'mailq';
2267 2395
 			$ts = $type == 'mailq' ? $modSettings['mail_next_send'] : $modSettings['next_task_time'];
@@ -2312,8 +2440,9 @@  discard block
 block discarded – undo
2312 2440
 		foreach ($theme_includes as $include)
2313 2441
 		{
2314 2442
 			$include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir']));
2315
-			if (file_exists($include))
2316
-				require_once($include);
2443
+			if (file_exists($include)) {
2444
+							require_once($include);
2445
+			}
2317 2446
 		}
2318 2447
 	}
2319 2448
 
@@ -2343,16 +2472,19 @@  discard block
 block discarded – undo
2343 2472
 	// Do any style sheets first, cause we're easy with those.
2344 2473
 	if (!empty($style_sheets))
2345 2474
 	{
2346
-		if (!is_array($style_sheets))
2347
-			$style_sheets = array($style_sheets);
2475
+		if (!is_array($style_sheets)) {
2476
+					$style_sheets = array($style_sheets);
2477
+		}
2348 2478
 
2349
-		foreach ($style_sheets as $sheet)
2350
-			loadCSSFile($sheet . '.css', array(), $sheet);
2479
+		foreach ($style_sheets as $sheet) {
2480
+					loadCSSFile($sheet . '.css', array(), $sheet);
2481
+		}
2351 2482
 	}
2352 2483
 
2353 2484
 	// No template to load?
2354
-	if ($template_name === false)
2355
-		return true;
2485
+	if ($template_name === false) {
2486
+			return true;
2487
+	}
2356 2488
 
2357 2489
 	$loaded = false;
2358 2490
 	foreach ($settings['template_dirs'] as $template_dir)
@@ -2367,12 +2499,14 @@  discard block
 block discarded – undo
2367 2499
 
2368 2500
 	if ($loaded)
2369 2501
 	{
2370
-		if ($db_show_debug === true)
2371
-			$context['debug']['templates'][] = $template_name . ' (' . basename($template_dir) . ')';
2502
+		if ($db_show_debug === true) {
2503
+					$context['debug']['templates'][] = $template_name . ' (' . basename($template_dir) . ')';
2504
+		}
2372 2505
 
2373 2506
 		// If they have specified an initialization function for this template, go ahead and call it now.
2374
-		if (function_exists('template_' . $template_name . '_init'))
2375
-			call_user_func('template_' . $template_name . '_init');
2507
+		if (function_exists('template_' . $template_name . '_init')) {
2508
+					call_user_func('template_' . $template_name . '_init');
2509
+		}
2376 2510
 	}
2377 2511
 	// Hmmm... doesn't exist?!  I don't suppose the directory is wrong, is it?
2378 2512
 	elseif (!file_exists($settings['default_theme_dir']) && file_exists($boarddir . '/Themes/default'))
@@ -2392,13 +2526,14 @@  discard block
 block discarded – undo
2392 2526
 		loadTemplate($template_name);
2393 2527
 	}
2394 2528
 	// Cause an error otherwise.
2395
-	elseif ($template_name != 'Errors' && $template_name != 'index' && $fatal)
2396
-		fatal_lang_error('theme_template_error', 'template', array((string) $template_name));
2397
-	elseif ($fatal)
2398
-		die(log_error(sprintf(isset($txt['theme_template_error']) ? $txt['theme_template_error'] : 'Unable to load Themes/default/%s.template.php!', (string) $template_name), 'template'));
2399
-	else
2400
-		return false;
2401
-}
2529
+	elseif ($template_name != 'Errors' && $template_name != 'index' && $fatal) {
2530
+			fatal_lang_error('theme_template_error', 'template', array((string) $template_name));
2531
+	} elseif ($fatal) {
2532
+			die(log_error(sprintf(isset($txt['theme_template_error']) ? $txt['theme_template_error'] : 'Unable to load Themes/default/%s.template.php!', (string) $template_name), 'template'));
2533
+	} else {
2534
+			return false;
2535
+	}
2536
+	}
2402 2537
 
2403 2538
 /**
2404 2539
  * Load a sub-template.
@@ -2416,17 +2551,19 @@  discard block
 block discarded – undo
2416 2551
 {
2417 2552
 	global $context, $txt, $db_show_debug;
2418 2553
 
2419
-	if ($db_show_debug === true)
2420
-		$context['debug']['sub_templates'][] = $sub_template_name;
2554
+	if ($db_show_debug === true) {
2555
+			$context['debug']['sub_templates'][] = $sub_template_name;
2556
+	}
2421 2557
 
2422 2558
 	// Figure out what the template function is named.
2423 2559
 	$theme_function = 'template_' . $sub_template_name;
2424
-	if (function_exists($theme_function))
2425
-		$theme_function();
2426
-	elseif ($fatal === false)
2427
-		fatal_lang_error('theme_template_error', 'template', array((string) $sub_template_name));
2428
-	elseif ($fatal !== 'ignore')
2429
-		die(log_error(sprintf(isset($txt['theme_template_error']) ? $txt['theme_template_error'] : 'Unable to load the %s sub template!', (string) $sub_template_name), 'template'));
2560
+	if (function_exists($theme_function)) {
2561
+			$theme_function();
2562
+	} elseif ($fatal === false) {
2563
+			fatal_lang_error('theme_template_error', 'template', array((string) $sub_template_name));
2564
+	} elseif ($fatal !== 'ignore') {
2565
+			die(log_error(sprintf(isset($txt['theme_template_error']) ? $txt['theme_template_error'] : 'Unable to load the %s sub template!', (string) $sub_template_name), 'template'));
2566
+	}
2430 2567
 
2431 2568
 	// Are we showing debugging for templates?  Just make sure not to do it before the doctype...
2432 2569
 	if (allowedTo('admin_forum') && isset($_REQUEST['debug']) && !in_array($sub_template_name, array('init', 'main_below')) && ob_get_length() > 0 && !isset($_REQUEST['xml']))
@@ -2456,8 +2593,9 @@  discard block
 block discarded – undo
2456 2593
 {
2457 2594
 	global $settings, $context, $modSettings;
2458 2595
 
2459
-	if (empty($context['css_files_order']))
2460
-		$context['css_files_order'] = array();
2596
+	if (empty($context['css_files_order'])) {
2597
+			$context['css_files_order'] = array();
2598
+	}
2461 2599
 
2462 2600
 	$params['seed'] = (!array_key_exists('seed', $params) || (array_key_exists('seed', $params) && $params['seed'] === true)) ? (array_key_exists('browser_cache', $modSettings) ? $modSettings['browser_cache'] : '') : (is_string($params['seed']) ? ($params['seed'] = $params['seed'][0] === '?' ? $params['seed'] : '?' . $params['seed']) : '');
2463 2601
 	$params['force_current'] = isset($params['force_current']) ? $params['force_current'] : false;
@@ -2468,8 +2606,9 @@  discard block
 block discarded – undo
2468 2606
 	$params['order_pos'] = isset($params['order_pos']) ? (int) $params['order_pos'] : 3000;
2469 2607
 
2470 2608
 	// If this is an external file, automatically set this to false.
2471
-	if (!empty($params['external']))
2472
-		$params['minimize'] = false;
2609
+	if (!empty($params['external'])) {
2610
+			$params['minimize'] = false;
2611
+	}
2473 2612
 
2474 2613
 	// Account for shorthand like admin.css?alp21 filenames
2475 2614
 	$has_seed = strpos($fileName, '.css?');
@@ -2486,16 +2625,12 @@  discard block
 block discarded – undo
2486 2625
 			{
2487 2626
 				$fileUrl = $settings['default_theme_url'] . '/css/' . $fileName . ($has_seed ? '' : $params['seed']);
2488 2627
 				$filePath = $settings['default_theme_dir'] . '/css/' . $fileName . ($has_seed ? '' : $params['seed']);
2489
-			}
2490
-
2491
-			else
2628
+			} else
2492 2629
 			{
2493 2630
 				$fileUrl = false;
2494 2631
 				$filePath = false;
2495 2632
 			}
2496
-		}
2497
-
2498
-		else
2633
+		} else
2499 2634
 		{
2500 2635
 			$fileUrl = $settings[$themeRef . '_url'] . '/css/' . $fileName . ($has_seed ? '' : $params['seed']);
2501 2636
 			$filePath = $settings[$themeRef . '_dir'] . '/css/' . $fileName . ($has_seed ? '' : $params['seed']);
@@ -2513,16 +2648,18 @@  discard block
 block discarded – undo
2513 2648
 	if (!empty($fileName))
2514 2649
 	{
2515 2650
 		// find a free number/position
2516
-		while (isset($context['css_files_order'][$params['order_pos']]))
2517
-			$params['order_pos']++;
2651
+		while (isset($context['css_files_order'][$params['order_pos']])) {
2652
+					$params['order_pos']++;
2653
+		}
2518 2654
 		$context['css_files_order'][$params['order_pos']] = $id;
2519 2655
 
2520 2656
 		$context['css_files'][$id] = array('fileUrl' => $fileUrl, 'filePath' => $filePath, 'fileName' => $fileName, 'options' => $params);
2521 2657
 	}
2522 2658
 
2523
-	if (!empty($context['right_to_left']) && !empty($params['rtl']))
2524
-		loadCSSFile($params['rtl'], array_diff_key($params, array('rtl' => 0)));
2525
-}
2659
+	if (!empty($context['right_to_left']) && !empty($params['rtl'])) {
2660
+			loadCSSFile($params['rtl'], array_diff_key($params, array('rtl' => 0)));
2661
+	}
2662
+	}
2526 2663
 
2527 2664
 /**
2528 2665
  * Add a block of inline css code to be executed later
@@ -2539,8 +2676,9 @@  discard block
 block discarded – undo
2539 2676
 	global $context;
2540 2677
 
2541 2678
 	// Gotta add something...
2542
-	if (empty($css))
2543
-		return false;
2679
+	if (empty($css)) {
2680
+			return false;
2681
+	}
2544 2682
 
2545 2683
 	$context['css_header'][] = $css;
2546 2684
 }
@@ -2576,8 +2714,9 @@  discard block
 block discarded – undo
2576 2714
 	$params['validate'] = isset($params['validate']) ? $params['validate'] : true;
2577 2715
 
2578 2716
 	// If this is an external file, automatically set this to false.
2579
-	if (!empty($params['external']))
2580
-		$params['minimize'] = false;
2717
+	if (!empty($params['external'])) {
2718
+			$params['minimize'] = false;
2719
+	}
2581 2720
 
2582 2721
 	// Account for shorthand like admin.js?alp21 filenames
2583 2722
 	$has_seed = strpos($fileName, '.js?');
@@ -2594,16 +2733,12 @@  discard block
 block discarded – undo
2594 2733
 			{
2595 2734
 				$fileUrl = $settings['default_theme_url'] . '/scripts/' . $fileName . ($has_seed ? '' : $params['seed']);
2596 2735
 				$filePath = $settings['default_theme_dir'] . '/scripts/' . $fileName . ($has_seed ? '' : $params['seed']);
2597
-			}
2598
-
2599
-			else
2736
+			} else
2600 2737
 			{
2601 2738
 				$fileUrl = false;
2602 2739
 				$filePath = false;
2603 2740
 			}
2604
-		}
2605
-
2606
-		else
2741
+		} else
2607 2742
 		{
2608 2743
 			$fileUrl = $settings[$themeRef . '_url'] . '/scripts/' . $fileName . ($has_seed ? '' : $params['seed']);
2609 2744
 			$filePath = $settings[$themeRef . '_dir'] . '/scripts/' . $fileName . ($has_seed ? '' : $params['seed']);
@@ -2618,9 +2753,10 @@  discard block
 block discarded – undo
2618 2753
 	}
2619 2754
 
2620 2755
 	// Add it to the array for use in the template
2621
-	if (!empty($fileName))
2622
-		$context['javascript_files'][$id] = array('fileUrl' => $fileUrl, 'filePath' => $filePath, 'fileName' => $fileName, 'options' => $params);
2623
-}
2756
+	if (!empty($fileName)) {
2757
+			$context['javascript_files'][$id] = array('fileUrl' => $fileUrl, 'filePath' => $filePath, 'fileName' => $fileName, 'options' => $params);
2758
+	}
2759
+	}
2624 2760
 
2625 2761
 /**
2626 2762
  * Add a Javascript variable for output later (for feeding text strings and similar to JS)
@@ -2634,9 +2770,10 @@  discard block
 block discarded – undo
2634 2770
 {
2635 2771
 	global $context;
2636 2772
 
2637
-	if (!empty($key) && (!empty($value) || $value === '0'))
2638
-		$context['javascript_vars'][$key] = !empty($escape) ? JavaScriptEscape($value) : $value;
2639
-}
2773
+	if (!empty($key) && (!empty($value) || $value === '0')) {
2774
+			$context['javascript_vars'][$key] = !empty($escape) ? JavaScriptEscape($value) : $value;
2775
+	}
2776
+	}
2640 2777
 
2641 2778
 /**
2642 2779
  * Add a block of inline Javascript code to be executed later
@@ -2653,8 +2790,9 @@  discard block
 block discarded – undo
2653 2790
 {
2654 2791
 	global $context;
2655 2792
 
2656
-	if (empty($javascript))
2657
-		return false;
2793
+	if (empty($javascript)) {
2794
+			return false;
2795
+	}
2658 2796
 
2659 2797
 	$context['javascript_inline'][($defer === true ? 'defer' : 'standard')][] = $javascript;
2660 2798
 }
@@ -2675,15 +2813,18 @@  discard block
 block discarded – undo
2675 2813
 	static $already_loaded = array();
2676 2814
 
2677 2815
 	// Default to the user's language.
2678
-	if ($lang == '')
2679
-		$lang = isset($user_info['language']) ? $user_info['language'] : $language;
2816
+	if ($lang == '') {
2817
+			$lang = isset($user_info['language']) ? $user_info['language'] : $language;
2818
+	}
2680 2819
 
2681 2820
 	// Do we want the English version of language file as fallback?
2682
-	if (empty($modSettings['disable_language_fallback']) && $lang != 'english')
2683
-		loadLanguage($template_name, 'english', false);
2821
+	if (empty($modSettings['disable_language_fallback']) && $lang != 'english') {
2822
+			loadLanguage($template_name, 'english', false);
2823
+	}
2684 2824
 
2685
-	if (!$force_reload && isset($already_loaded[$template_name]) && $already_loaded[$template_name] == $lang)
2686
-		return $lang;
2825
+	if (!$force_reload && isset($already_loaded[$template_name]) && $already_loaded[$template_name] == $lang) {
2826
+			return $lang;
2827
+	}
2687 2828
 
2688 2829
 	// Make sure we have $settings - if not we're in trouble and need to find it!
2689 2830
 	if (empty($settings['default_theme_dir']))
@@ -2694,8 +2835,9 @@  discard block
 block discarded – undo
2694 2835
 
2695 2836
 	// What theme are we in?
2696 2837
 	$theme_name = basename($settings['theme_url']);
2697
-	if (empty($theme_name))
2698
-		$theme_name = 'unknown';
2838
+	if (empty($theme_name)) {
2839
+			$theme_name = 'unknown';
2840
+	}
2699 2841
 
2700 2842
 	// For each file open it up and write it out!
2701 2843
 	foreach (explode('+', $template_name) as $template)
@@ -2737,8 +2879,9 @@  discard block
 block discarded – undo
2737 2879
 				$found = true;
2738 2880
 
2739 2881
 				// setlocale is required for basename() & pathinfo() to work properly on the selected language
2740
-				if (!empty($txt['lang_locale']) && !empty($modSettings['global_character_set']))
2741
-					setlocale(LC_CTYPE, $txt['lang_locale'] . '.' . $modSettings['global_character_set']);
2882
+				if (!empty($txt['lang_locale']) && !empty($modSettings['global_character_set'])) {
2883
+									setlocale(LC_CTYPE, $txt['lang_locale'] . '.' . $modSettings['global_character_set']);
2884
+				}
2742 2885
 
2743 2886
 				break;
2744 2887
 			}
@@ -2778,8 +2921,9 @@  discard block
 block discarded – undo
2778 2921
 	}
2779 2922
 
2780 2923
 	// Keep track of what we're up to soldier.
2781
-	if ($db_show_debug === true)
2782
-		$context['debug']['language_files'][] = $template_name . '.' . $lang . ' (' . $theme_name . ')';
2924
+	if ($db_show_debug === true) {
2925
+			$context['debug']['language_files'][] = $template_name . '.' . $lang . ' (' . $theme_name . ')';
2926
+	}
2783 2927
 
2784 2928
 	// Remember what we have loaded, and in which language.
2785 2929
 	$already_loaded[$template_name] = $lang;
@@ -2825,8 +2969,9 @@  discard block
 block discarded – undo
2825 2969
 				)
2826 2970
 			);
2827 2971
 			// In the EXTREMELY unlikely event this happens, give an error message.
2828
-			if ($smcFunc['db_num_rows']($result) == 0)
2829
-				fatal_lang_error('parent_not_found', 'critical');
2972
+			if ($smcFunc['db_num_rows']($result) == 0) {
2973
+							fatal_lang_error('parent_not_found', 'critical');
2974
+			}
2830 2975
 			while ($row = $smcFunc['db_fetch_assoc']($result))
2831 2976
 			{
2832 2977
 				if (!isset($boards[$row['id_board']]))
@@ -2843,8 +2988,8 @@  discard block
 block discarded – undo
2843 2988
 					);
2844 2989
 				}
2845 2990
 				// If a moderator exists for this board, add that moderator for all children too.
2846
-				if (!empty($row['id_moderator']))
2847
-					foreach ($boards as $id => $dummy)
2991
+				if (!empty($row['id_moderator'])) {
2992
+									foreach ($boards as $id => $dummy)
2848 2993
 					{
2849 2994
 						$boards[$id]['moderators'][$row['id_moderator']] = array(
2850 2995
 							'id' => $row['id_moderator'],
@@ -2852,11 +2997,12 @@  discard block
 block discarded – undo
2852 2997
 							'href' => $scripturl . '?action=profile;u=' . $row['id_moderator'],
2853 2998
 							'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_moderator'] . '">' . $row['real_name'] . '</a>'
2854 2999
 						);
3000
+				}
2855 3001
 					}
2856 3002
 
2857 3003
 				// If a moderator group exists for this board, add that moderator group for all children too
2858
-				if (!empty($row['id_moderator_group']))
2859
-					foreach ($boards as $id => $dummy)
3004
+				if (!empty($row['id_moderator_group'])) {
3005
+									foreach ($boards as $id => $dummy)
2860 3006
 					{
2861 3007
 						$boards[$id]['moderator_groups'][$row['id_moderator_group']] = array(
2862 3008
 							'id' => $row['id_moderator_group'],
@@ -2864,6 +3010,7 @@  discard block
 block discarded – undo
2864 3010
 							'href' => $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'],
2865 3011
 							'link' => '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'] . '">' . $row['group_name'] . '</a>'
2866 3012
 						);
3013
+				}
2867 3014
 					}
2868 3015
 			}
2869 3016
 			$smcFunc['db_free_result']($result);
@@ -2890,23 +3037,27 @@  discard block
 block discarded – undo
2890 3037
 	if (!$use_cache || ($context['languages'] = cache_get_data('known_languages', !empty($modSettings['cache_enable']) && $modSettings['cache_enable'] < 1 ? 86400 : 3600)) == null)
2891 3038
 	{
2892 3039
 		// If we don't have our ucwords function defined yet, let's load the settings data.
2893
-		if (empty($smcFunc['ucwords']))
2894
-			reloadSettings();
3040
+		if (empty($smcFunc['ucwords'])) {
3041
+					reloadSettings();
3042
+		}
2895 3043
 
2896 3044
 		// If we don't have our theme information yet, let's get it.
2897
-		if (empty($settings['default_theme_dir']))
2898
-			loadTheme(0, false);
3045
+		if (empty($settings['default_theme_dir'])) {
3046
+					loadTheme(0, false);
3047
+		}
2899 3048
 
2900 3049
 		// Default language directories to try.
2901 3050
 		$language_directories = array(
2902 3051
 			$settings['default_theme_dir'] . '/languages',
2903 3052
 		);
2904
-		if (!empty($settings['actual_theme_dir']) && $settings['actual_theme_dir'] != $settings['default_theme_dir'])
2905
-			$language_directories[] = $settings['actual_theme_dir'] . '/languages';
3053
+		if (!empty($settings['actual_theme_dir']) && $settings['actual_theme_dir'] != $settings['default_theme_dir']) {
3054
+					$language_directories[] = $settings['actual_theme_dir'] . '/languages';
3055
+		}
2906 3056
 
2907 3057
 		// We possibly have a base theme directory.
2908
-		if (!empty($settings['base_theme_dir']))
2909
-			$language_directories[] = $settings['base_theme_dir'] . '/languages';
3058
+		if (!empty($settings['base_theme_dir'])) {
3059
+					$language_directories[] = $settings['base_theme_dir'] . '/languages';
3060
+		}
2910 3061
 
2911 3062
 		// Remove any duplicates.
2912 3063
 		$language_directories = array_unique($language_directories);
@@ -2920,20 +3071,21 @@  discard block
 block discarded – undo
2920 3071
 		foreach ($language_directories as $language_dir)
2921 3072
 		{
2922 3073
 			// Can't look in here... doesn't exist!
2923
-			if (!file_exists($language_dir))
2924
-				continue;
3074
+			if (!file_exists($language_dir)) {
3075
+							continue;
3076
+			}
2925 3077
 
2926 3078
 			$dir = dir($language_dir);
2927 3079
 			while ($entry = $dir->read())
2928 3080
 			{
2929 3081
 				// Look for the index language file... For good measure skip any "index.language-utf8.php" files
2930
-				if (!preg_match('~^index\.(.+[^-utf8])\.php$~', $entry, $matches))
2931
-					continue;
2932
-
2933
-				if (!empty($langList) && !empty($langList[$matches[1]]))
2934
-					$langName = $langList[$matches[1]];
3082
+				if (!preg_match('~^index\.(.+[^-utf8])\.php$~', $entry, $matches)) {
3083
+									continue;
3084
+				}
2935 3085
 
2936
-				else
3086
+				if (!empty($langList) && !empty($langList[$matches[1]])) {
3087
+									$langName = $langList[$matches[1]];
3088
+				} else
2937 3089
 				{
2938 3090
 					$langName = $smcFunc['ucwords'](strtr($matches[1], array('_' => ' ')));
2939 3091
 
@@ -2974,12 +3126,14 @@  discard block
 block discarded – undo
2974 3126
 		}
2975 3127
 
2976 3128
 		// Do we need to store the lang list?
2977
-		if (empty($langList))
2978
-			updateSettings(array('langList' => $smcFunc['json_encode']($catchLang)));
3129
+		if (empty($langList)) {
3130
+					updateSettings(array('langList' => $smcFunc['json_encode']($catchLang)));
3131
+		}
2979 3132
 
2980 3133
 		// Let's cash in on this deal.
2981
-		if (!empty($modSettings['cache_enable']))
2982
-			cache_put_data('known_languages', $context['languages'], !empty($modSettings['cache_enable']) && $modSettings['cache_enable'] < 1 ? 86400 : 3600);
3134
+		if (!empty($modSettings['cache_enable'])) {
3135
+					cache_put_data('known_languages', $context['languages'], !empty($modSettings['cache_enable']) && $modSettings['cache_enable'] < 1 ? 86400 : 3600);
3136
+		}
2983 3137
 	}
2984 3138
 
2985 3139
 	return $context['languages'];
@@ -3002,8 +3156,9 @@  discard block
 block discarded – undo
3002 3156
 	global $modSettings, $options, $txt;
3003 3157
 	static $censor_vulgar = null, $censor_proper;
3004 3158
 
3005
-	if ((!empty($options['show_no_censored']) && !empty($modSettings['allow_no_censored']) && !$force) || empty($modSettings['censor_vulgar']) || trim($text) === '')
3006
-		return $text;
3159
+	if ((!empty($options['show_no_censored']) && !empty($modSettings['allow_no_censored']) && !$force) || empty($modSettings['censor_vulgar']) || trim($text) === '') {
3160
+			return $text;
3161
+	}
3007 3162
 
3008 3163
 	// If they haven't yet been loaded, load them.
3009 3164
 	if ($censor_vulgar == null)
@@ -3034,9 +3189,9 @@  discard block
 block discarded – undo
3034 3189
 	{
3035 3190
 		$func = !empty($modSettings['censorIgnoreCase']) ? 'str_ireplace' : 'str_replace';
3036 3191
 		$text = $func($censor_vulgar, $censor_proper, $text);
3192
+	} else {
3193
+			$text = preg_replace($censor_vulgar, $censor_proper, $text);
3037 3194
 	}
3038
-	else
3039
-		$text = preg_replace($censor_vulgar, $censor_proper, $text);
3040 3195
 
3041 3196
 	return $text;
3042 3197
 }
@@ -3062,30 +3217,35 @@  discard block
 block discarded – undo
3062 3217
 	@ini_set('track_errors', '1');
3063 3218
 
3064 3219
 	// Don't include the file more than once, if $once is true.
3065
-	if ($once && in_array($filename, $templates))
3066
-		return;
3220
+	if ($once && in_array($filename, $templates)) {
3221
+			return;
3222
+	}
3067 3223
 	// Add this file to the include list, whether $once is true or not.
3068
-	else
3069
-		$templates[] = $filename;
3224
+	else {
3225
+			$templates[] = $filename;
3226
+	}
3070 3227
 
3071 3228
 
3072 3229
 	$file_found = file_exists($filename);
3073 3230
 
3074
-	if ($once && $file_found)
3075
-		require_once($filename);
3076
-	elseif ($file_found)
3077
-		require($filename);
3231
+	if ($once && $file_found) {
3232
+			require_once($filename);
3233
+	} elseif ($file_found) {
3234
+			require($filename);
3235
+	}
3078 3236
 
3079 3237
 	if ($file_found !== true)
3080 3238
 	{
3081 3239
 		ob_end_clean();
3082
-		if (!empty($modSettings['enableCompressedOutput']))
3083
-			@ob_start('ob_gzhandler');
3084
-		else
3085
-			ob_start();
3240
+		if (!empty($modSettings['enableCompressedOutput'])) {
3241
+					@ob_start('ob_gzhandler');
3242
+		} else {
3243
+					ob_start();
3244
+		}
3086 3245
 
3087
-		if (isset($_GET['debug']))
3088
-			header('content-type: application/xhtml+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
3246
+		if (isset($_GET['debug'])) {
3247
+					header('content-type: application/xhtml+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
3248
+		}
3089 3249
 
3090 3250
 		// Don't cache error pages!!
3091 3251
 		header('expires: Mon, 26 Jul 1997 05:00:00 GMT');
@@ -3104,12 +3264,13 @@  discard block
 block discarded – undo
3104 3264
 		echo '<!DOCTYPE html>
3105 3265
 <html', !empty($context['right_to_left']) ? ' dir="rtl"' : '', '>
3106 3266
 	<head>';
3107
-		if (isset($context['character_set']))
3108
-			echo '
3267
+		if (isset($context['character_set'])) {
3268
+					echo '
3109 3269
 		<meta charset="', $context['character_set'], '">';
3270
+		}
3110 3271
 
3111
-		if (!empty($maintenance) && !allowedTo('admin_forum'))
3112
-			echo '
3272
+		if (!empty($maintenance) && !allowedTo('admin_forum')) {
3273
+					echo '
3113 3274
 		<title>', $mtitle, '</title>
3114 3275
 	</head>
3115 3276
 	<body>
@@ -3117,8 +3278,8 @@  discard block
 block discarded – undo
3117 3278
 		', $mmessage, '
3118 3279
 	</body>
3119 3280
 </html>';
3120
-		elseif (!allowedTo('admin_forum'))
3121
-			echo '
3281
+		} elseif (!allowedTo('admin_forum')) {
3282
+					echo '
3122 3283
 		<title>', $txt['template_parse_error'], '</title>
3123 3284
 	</head>
3124 3285
 	<body>
@@ -3126,14 +3287,16 @@  discard block
 block discarded – undo
3126 3287
 		', $txt['template_parse_error_message'], '
3127 3288
 	</body>
3128 3289
 </html>';
3129
-		else
3290
+		} else
3130 3291
 		{
3131 3292
 			$error = fetch_web_data($boardurl . strtr($filename, array($boarddir => '', strtr($boarddir, '\\', '/') => '')));
3132 3293
 			$error_array = error_get_last();
3133
-			if (empty($error) && ini_get('track_errors') && !empty($error_array))
3134
-				$error = $error_array['message'];
3135
-			if (empty($error))
3136
-				$error = $txt['template_parse_errmsg'];
3294
+			if (empty($error) && ini_get('track_errors') && !empty($error_array)) {
3295
+							$error = $error_array['message'];
3296
+			}
3297
+			if (empty($error)) {
3298
+							$error = $txt['template_parse_errmsg'];
3299
+			}
3137 3300
 
3138 3301
 			$error = strtr($error, array('<b>' => '<strong>', '</b>' => '</strong>'));
3139 3302
 
@@ -3144,11 +3307,12 @@  discard block
 block discarded – undo
3144 3307
 		<h3>', $txt['template_parse_error'], '</h3>
3145 3308
 		', sprintf($txt['template_parse_error_details'], strtr($filename, array($boarddir => '', strtr($boarddir, '\\', '/') => '')));
3146 3309
 
3147
-			if (!empty($error))
3148
-				echo '
3310
+			if (!empty($error)) {
3311
+							echo '
3149 3312
 		<hr>
3150 3313
 
3151 3314
 		<div style="margin: 0 20px;"><pre>', strtr(strtr($error, array('<strong>' . $boarddir => '<strong>...', '<strong>' . strtr($boarddir, '\\', '/') => '<strong>...')), '\\', '/'), '</pre></div>';
3315
+			}
3152 3316
 
3153 3317
 			// I know, I know... this is VERY COMPLICATED.  Still, it's good.
3154 3318
 			if (preg_match('~ <strong>(\d+)</strong><br( /)?' . '>$~i', $error, $match) != 0)
@@ -3158,10 +3322,11 @@  discard block
 block discarded – undo
3158 3322
 				$data2 = preg_split('~\<br( /)?\>~', $data2);
3159 3323
 
3160 3324
 				// Fix the PHP code stuff...
3161
-				if (!isBrowser('gecko'))
3162
-					$data2 = str_replace("\t", '<span style="white-space: pre;">' . "\t" . '</span>', $data2);
3163
-				else
3164
-					$data2 = str_replace('<pre style="display: inline;">' . "\t" . '</pre>', "\t", $data2);
3325
+				if (!isBrowser('gecko')) {
3326
+									$data2 = str_replace("\t", '<span style="white-space: pre;">' . "\t" . '</span>', $data2);
3327
+				} else {
3328
+									$data2 = str_replace('<pre style="display: inline;">' . "\t" . '</pre>', "\t", $data2);
3329
+				}
3165 3330
 
3166 3331
 				// Now we get to work around a bug in PHP where it doesn't escape <br>s!
3167 3332
 				$j = -1;
@@ -3169,8 +3334,9 @@  discard block
 block discarded – undo
3169 3334
 				{
3170 3335
 					$j++;
3171 3336
 
3172
-					if (substr_count($line, '<br>') == 0)
3173
-						continue;
3337
+					if (substr_count($line, '<br>') == 0) {
3338
+											continue;
3339
+					}
3174 3340
 
3175 3341
 					$n = substr_count($line, '<br>');
3176 3342
 					for ($i = 0; $i < $n; $i++)
@@ -3189,38 +3355,42 @@  discard block
 block discarded – undo
3189 3355
 				// Figure out what the color coding was before...
3190 3356
 				$line = max($match[1] - 9, 1);
3191 3357
 				$last_line = '';
3192
-				for ($line2 = $line - 1; $line2 > 1; $line2--)
3193
-					if (strpos($data2[$line2], '<') !== false)
3358
+				for ($line2 = $line - 1; $line2 > 1; $line2--) {
3359
+									if (strpos($data2[$line2], '<') !== false)
3194 3360
 					{
3195 3361
 						if (preg_match('~(<[^/>]+>)[^<]*$~', $data2[$line2], $color_match) != 0)
3196 3362
 							$last_line = $color_match[1];
3363
+				}
3197 3364
 						break;
3198 3365
 					}
3199 3366
 
3200 3367
 				// Show the relevant lines...
3201 3368
 				for ($n = min($match[1] + 4, count($data2) + 1); $line <= $n; $line++)
3202 3369
 				{
3203
-					if ($line == $match[1])
3204
-						echo '</pre><div style="background-color: #ffb0b5;"><pre style="margin: 0;">';
3370
+					if ($line == $match[1]) {
3371
+											echo '</pre><div style="background-color: #ffb0b5;"><pre style="margin: 0;">';
3372
+					}
3205 3373
 
3206 3374
 					echo '<span style="color: black;">', sprintf('%' . strlen($n) . 's', $line), ':</span> ';
3207
-					if (isset($data2[$line]) && $data2[$line] != '')
3208
-						echo substr($data2[$line], 0, 2) == '</' ? preg_replace('~^</[^>]+>~', '', $data2[$line]) : $last_line . $data2[$line];
3375
+					if (isset($data2[$line]) && $data2[$line] != '') {
3376
+											echo substr($data2[$line], 0, 2) == '</' ? preg_replace('~^</[^>]+>~', '', $data2[$line]) : $last_line . $data2[$line];
3377
+					}
3209 3378
 
3210 3379
 					if (isset($data2[$line]) && preg_match('~(<[^/>]+>)[^<]*$~', $data2[$line], $color_match) != 0)
3211 3380
 					{
3212 3381
 						$last_line = $color_match[1];
3213 3382
 						echo '</', substr($last_line, 1, 4), '>';
3383
+					} elseif ($last_line != '' && strpos($data2[$line], '<') !== false) {
3384
+											$last_line = '';
3385
+					} elseif ($last_line != '' && $data2[$line] != '') {
3386
+											echo '</', substr($last_line, 1, 4), '>';
3214 3387
 					}
3215
-					elseif ($last_line != '' && strpos($data2[$line], '<') !== false)
3216
-						$last_line = '';
3217
-					elseif ($last_line != '' && $data2[$line] != '')
3218
-						echo '</', substr($last_line, 1, 4), '>';
3219 3388
 
3220
-					if ($line == $match[1])
3221
-						echo '</pre></div><pre style="margin: 0;">';
3222
-					else
3223
-						echo "\n";
3389
+					if ($line == $match[1]) {
3390
+											echo '</pre></div><pre style="margin: 0;">';
3391
+					} else {
3392
+											echo "\n";
3393
+					}
3224 3394
 				}
3225 3395
 
3226 3396
 				echo '</pre></div>';
@@ -3244,8 +3414,9 @@  discard block
 block discarded – undo
3244 3414
 	global $db_type, $db_name, $ssi_db_user, $ssi_db_passwd, $sourcedir, $db_prefix, $db_port, $db_mb4;
3245 3415
 
3246 3416
 	// Figure out what type of database we are using.
3247
-	if (empty($db_type) || !file_exists($sourcedir . '/Subs-Db-' . $db_type . '.php'))
3248
-		$db_type = 'mysql';
3417
+	if (empty($db_type) || !file_exists($sourcedir . '/Subs-Db-' . $db_type . '.php')) {
3418
+			$db_type = 'mysql';
3419
+	}
3249 3420
 
3250 3421
 	// Load the file for the database.
3251 3422
 	require_once($sourcedir . '/Subs-Db-' . $db_type . '.php');
@@ -3253,11 +3424,13 @@  discard block
 block discarded – undo
3253 3424
 	$db_options = array();
3254 3425
 
3255 3426
 	// Add in the port if needed
3256
-	if (!empty($db_port))
3257
-		$db_options['port'] = $db_port;
3427
+	if (!empty($db_port)) {
3428
+			$db_options['port'] = $db_port;
3429
+	}
3258 3430
 
3259
-	if (!empty($db_mb4))
3260
-		$db_options['db_mb4'] = $db_mb4;
3431
+	if (!empty($db_mb4)) {
3432
+			$db_options['db_mb4'] = $db_mb4;
3433
+	}
3261 3434
 
3262 3435
 	// If we are in SSI try them first, but don't worry if it doesn't work, we have the normal username and password we can use.
3263 3436
 	if (SMF == 'SSI' && !empty($ssi_db_user) && !empty($ssi_db_passwd))
@@ -3276,13 +3449,15 @@  discard block
 block discarded – undo
3276 3449
 	}
3277 3450
 
3278 3451
 	// Safe guard here, if there isn't a valid connection lets put a stop to it.
3279
-	if (!$db_connection)
3280
-		display_db_error();
3452
+	if (!$db_connection) {
3453
+			display_db_error();
3454
+	}
3281 3455
 
3282 3456
 	// If in SSI mode fix up the prefix.
3283
-	if (SMF == 'SSI')
3284
-		db_fix_prefix($db_prefix, $db_name);
3285
-}
3457
+	if (SMF == 'SSI') {
3458
+			db_fix_prefix($db_prefix, $db_name);
3459
+	}
3460
+	}
3286 3461
 
3287 3462
 /**
3288 3463
  * Try to load up a supported caching method. This is saved in $cacheAPI if we are not overriding it.
@@ -3296,10 +3471,11 @@  discard block
 block discarded – undo
3296 3471
 	global $sourcedir, $cacheAPI, $cache_accelerator;
3297 3472
 
3298 3473
 	// Not overriding this and we have a cacheAPI, send it back.
3299
-	if (empty($overrideCache) && is_object($cacheAPI))
3300
-		return $cacheAPI;
3301
-	elseif (is_null($cacheAPI))
3302
-		$cacheAPI = false;
3474
+	if (empty($overrideCache) && is_object($cacheAPI)) {
3475
+			return $cacheAPI;
3476
+	} elseif (is_null($cacheAPI)) {
3477
+			$cacheAPI = false;
3478
+	}
3303 3479
 
3304 3480
 	// Make sure our class is in session.
3305 3481
 	require_once($sourcedir . '/Class-CacheAPI.php');
@@ -3320,8 +3496,9 @@  discard block
 block discarded – undo
3320 3496
 		if (!$testAPI->isSupported())
3321 3497
 		{
3322 3498
 			// Can we save ourselves?
3323
-			if (!empty($fallbackSMF) && is_null($overrideCache) && $tryAccelerator != 'smf')
3324
-				return loadCacheAccelerator(null, false);
3499
+			if (!empty($fallbackSMF) && is_null($overrideCache) && $tryAccelerator != 'smf') {
3500
+							return loadCacheAccelerator(null, false);
3501
+			}
3325 3502
 			return false;
3326 3503
 		}
3327 3504
 
@@ -3333,9 +3510,9 @@  discard block
 block discarded – undo
3333 3510
 		{
3334 3511
 			$cacheAPI = $testAPI;
3335 3512
 			return $cacheAPI;
3513
+		} else {
3514
+					return $testAPI;
3336 3515
 		}
3337
-		else
3338
-			return $testAPI;
3339 3516
 	}
3340 3517
 }
3341 3518
 
@@ -3355,8 +3532,9 @@  discard block
 block discarded – undo
3355 3532
 
3356 3533
 	// @todo Why are we doing this if caching is disabled?
3357 3534
 
3358
-	if (function_exists('call_integration_hook'))
3359
-		call_integration_hook('pre_cache_quick_get', array(&$key, &$file, &$function, &$params, &$level));
3535
+	if (function_exists('call_integration_hook')) {
3536
+			call_integration_hook('pre_cache_quick_get', array(&$key, &$file, &$function, &$params, &$level));
3537
+	}
3360 3538
 
3361 3539
 	/* Refresh the cache if either:
3362 3540
 		1. Caching is disabled.
@@ -3370,16 +3548,19 @@  discard block
 block discarded – undo
3370 3548
 		require_once($sourcedir . '/' . $file);
3371 3549
 		$cache_block = call_user_func_array($function, $params);
3372 3550
 
3373
-		if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= $level)
3374
-			cache_put_data($key, $cache_block, $cache_block['expires'] - time());
3551
+		if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= $level) {
3552
+					cache_put_data($key, $cache_block, $cache_block['expires'] - time());
3553
+		}
3375 3554
 	}
3376 3555
 
3377 3556
 	// Some cached data may need a freshening up after retrieval.
3378
-	if (!empty($cache_block['post_retri_eval']))
3379
-		eval($cache_block['post_retri_eval']);
3557
+	if (!empty($cache_block['post_retri_eval'])) {
3558
+			eval($cache_block['post_retri_eval']);
3559
+	}
3380 3560
 
3381
-	if (function_exists('call_integration_hook'))
3382
-		call_integration_hook('post_cache_quick_get', array(&$cache_block));
3561
+	if (function_exists('call_integration_hook')) {
3562
+			call_integration_hook('post_cache_quick_get', array(&$cache_block));
3563
+	}
3383 3564
 
3384 3565
 	return $cache_block['data'];
3385 3566
 }
@@ -3406,8 +3587,9 @@  discard block
 block discarded – undo
3406 3587
 	global $smcFunc, $cache_enable, $cacheAPI;
3407 3588
 	global $cache_hits, $cache_count, $db_show_debug;
3408 3589
 
3409
-	if (empty($cache_enable) || empty($cacheAPI))
3410
-		return;
3590
+	if (empty($cache_enable) || empty($cacheAPI)) {
3591
+			return;
3592
+	}
3411 3593
 
3412 3594
 	$cache_count = isset($cache_count) ? $cache_count + 1 : 1;
3413 3595
 	if (isset($db_show_debug) && $db_show_debug === true)
@@ -3420,12 +3602,14 @@  discard block
 block discarded – undo
3420 3602
 	$value = $value === null ? null : (isset($smcFunc['json_encode']) ? $smcFunc['json_encode']($value) : json_encode($value));
3421 3603
 	$cacheAPI->putData($key, $value, $ttl);
3422 3604
 
3423
-	if (function_exists('call_integration_hook'))
3424
-		call_integration_hook('cache_put_data', array(&$key, &$value, &$ttl));
3605
+	if (function_exists('call_integration_hook')) {
3606
+			call_integration_hook('cache_put_data', array(&$key, &$value, &$ttl));
3607
+	}
3425 3608
 
3426
-	if (isset($db_show_debug) && $db_show_debug === true)
3427
-		$cache_hits[$cache_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st));
3428
-}
3609
+	if (isset($db_show_debug) && $db_show_debug === true) {
3610
+			$cache_hits[$cache_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st));
3611
+	}
3612
+	}
3429 3613
 
3430 3614
 /**
3431 3615
  * Gets the value from the cache specified by key, so long as it is not older than ttl seconds.
@@ -3441,8 +3625,9 @@  discard block
 block discarded – undo
3441 3625
 	global $smcFunc, $cache_enable, $cacheAPI;
3442 3626
 	global $cache_hits, $cache_count, $cache_misses, $cache_count_misses, $db_show_debug;
3443 3627
 
3444
-	if (empty($cache_enable) || empty($cacheAPI))
3445
-		return;
3628
+	if (empty($cache_enable) || empty($cacheAPI)) {
3629
+			return;
3630
+	}
3446 3631
 
3447 3632
 	$cache_count = isset($cache_count) ? $cache_count + 1 : 1;
3448 3633
 	if (isset($db_show_debug) && $db_show_debug === true)
@@ -3462,16 +3647,18 @@  discard block
 block discarded – undo
3462 3647
 
3463 3648
 		if (empty($value))
3464 3649
 		{
3465
-			if (!is_array($cache_misses))
3466
-				$cache_misses = array();
3650
+			if (!is_array($cache_misses)) {
3651
+							$cache_misses = array();
3652
+			}
3467 3653
 
3468 3654
 			$cache_count_misses = isset($cache_count_misses) ? $cache_count_misses + 1 : 1;
3469 3655
 			$cache_misses[$cache_count_misses] = array('k' => $original_key, 'd' => 'get');
3470 3656
 		}
3471 3657
 	}
3472 3658
 
3473
-	if (function_exists('call_integration_hook') && isset($value))
3474
-		call_integration_hook('cache_get_data', array(&$key, &$ttl, &$value));
3659
+	if (function_exists('call_integration_hook') && isset($value)) {
3660
+			call_integration_hook('cache_get_data', array(&$key, &$ttl, &$value));
3661
+	}
3475 3662
 
3476 3663
 	return empty($value) ? null : (isset($smcFunc['json_decode']) ? $smcFunc['json_decode']($value, true) : smf_json_decode($value, true));
3477 3664
 }
@@ -3493,8 +3680,9 @@  discard block
 block discarded – undo
3493 3680
 	global $cacheAPI;
3494 3681
 
3495 3682
 	// If we can't get to the API, can't do this.
3496
-	if (empty($cacheAPI))
3497
-		return;
3683
+	if (empty($cacheAPI)) {
3684
+			return;
3685
+	}
3498 3686
 
3499 3687
 	// Ask the API to do the heavy lifting. cleanCache also calls invalidateCache to be sure.
3500 3688
 	$cacheAPI->cleanCache($type);
@@ -3519,8 +3707,9 @@  discard block
 block discarded – undo
3519 3707
 	global $modSettings, $smcFunc, $image_proxy_enabled, $user_info;
3520 3708
 
3521 3709
 	// Come on!
3522
-	if (empty($data))
3523
-		return array();
3710
+	if (empty($data)) {
3711
+			return array();
3712
+	}
3524 3713
 
3525 3714
 	// Set a nice default var.
3526 3715
 	$image = '';
@@ -3528,11 +3717,11 @@  discard block
 block discarded – undo
3528 3717
 	// Gravatar has been set as mandatory!
3529 3718
 	if (!empty($modSettings['gravatarOverride']))
3530 3719
 	{
3531
-		if (!empty($modSettings['gravatarAllowExtraEmail']) && !empty($data['avatar']) && stristr($data['avatar'], 'gravatar://'))
3532
-			$image = get_gravatar_url($smcFunc['substr']($data['avatar'], 11));
3533
-
3534
-		else if (!empty($data['email']))
3535
-			$image = get_gravatar_url($data['email']);
3720
+		if (!empty($modSettings['gravatarAllowExtraEmail']) && !empty($data['avatar']) && stristr($data['avatar'], 'gravatar://')) {
3721
+					$image = get_gravatar_url($smcFunc['substr']($data['avatar'], 11));
3722
+		} else if (!empty($data['email'])) {
3723
+					$image = get_gravatar_url($data['email']);
3724
+		}
3536 3725
 	}
3537 3726
 
3538 3727
 	// Look if the user has a gravatar field or has set an external url as avatar.
@@ -3544,54 +3733,60 @@  discard block
 block discarded – undo
3544 3733
 			// Gravatar.
3545 3734
 			if (stristr($data['avatar'], 'gravatar://'))
3546 3735
 			{
3547
-				if ($data['avatar'] == 'gravatar://')
3548
-					$image = get_gravatar_url($data['email']);
3549
-
3550
-				elseif (!empty($modSettings['gravatarAllowExtraEmail']))
3551
-					$image = get_gravatar_url($smcFunc['substr']($data['avatar'], 11));
3736
+				if ($data['avatar'] == 'gravatar://') {
3737
+									$image = get_gravatar_url($data['email']);
3738
+				} elseif (!empty($modSettings['gravatarAllowExtraEmail'])) {
3739
+									$image = get_gravatar_url($smcFunc['substr']($data['avatar'], 11));
3740
+				}
3552 3741
 			}
3553 3742
 
3554 3743
 			// External url.
3555 3744
 			else
3556 3745
 			{
3557 3746
 				// Using ssl?
3558
-				if (!empty($modSettings['force_ssl']) && $image_proxy_enabled && stripos($data['avatar'], 'http://') !== false && empty($user_info['possibly_robot']))
3559
-					$image = get_proxied_url($data['avatar']);
3747
+				if (!empty($modSettings['force_ssl']) && $image_proxy_enabled && stripos($data['avatar'], 'http://') !== false && empty($user_info['possibly_robot'])) {
3748
+									$image = get_proxied_url($data['avatar']);
3749
+				}
3560 3750
 
3561 3751
 				// Just a plain external url.
3562
-				else
3563
-					$image = (stristr($data['avatar'], 'http://') || stristr($data['avatar'], 'https://')) ? $data['avatar'] : $modSettings['avatar_url'] . '/' . $data['avatar'];
3752
+				else {
3753
+									$image = (stristr($data['avatar'], 'http://') || stristr($data['avatar'], 'https://')) ? $data['avatar'] : $modSettings['avatar_url'] . '/' . $data['avatar'];
3754
+				}
3564 3755
 			}
3565 3756
 		}
3566 3757
 
3567 3758
 		// Perhaps this user has an attachment as avatar...
3568
-		else if (!empty($data['filename']))
3569
-			$image = $modSettings['custom_avatar_url'] . '/' . $data['filename'];
3759
+		else if (!empty($data['filename'])) {
3760
+					$image = $modSettings['custom_avatar_url'] . '/' . $data['filename'];
3761
+		}
3570 3762
 
3571 3763
 		// Right... no avatar... use our default image.
3572
-		else
3573
-			$image = $modSettings['avatar_url'] . '/default.png';
3764
+		else {
3765
+					$image = $modSettings['avatar_url'] . '/default.png';
3766
+		}
3574 3767
 	}
3575 3768
 
3576 3769
 	call_integration_hook('integrate_set_avatar_data', array(&$image, &$data));
3577 3770
 
3578 3771
 	// At this point in time $image has to be filled unless you chose to force gravatar and the user doesn't have the needed data to retrieve it... thus a check for !empty() is still needed.
3579
-	if (!empty($image))
3580
-		return array(
3772
+	if (!empty($image)) {
3773
+			return array(
3581 3774
 			'name' => !empty($data['avatar']) ? $data['avatar'] : '',
3582 3775
 			'image' => '<img class="avatar" src="' . $image . '" />',
3583 3776
 			'href' => $image,
3584 3777
 			'url' => $image,
3585 3778
 		);
3779
+	}
3586 3780
 
3587 3781
 	// Fallback to make life easier for everyone...
3588
-	else
3589
-		return array(
3782
+	else {
3783
+			return array(
3590 3784
 			'name' => '',
3591 3785
 			'image' => '',
3592 3786
 			'href' => '',
3593 3787
 			'url' => '',
3594 3788
 		);
3595
-}
3789
+	}
3790
+	}
3596 3791
 
3597 3792
 ?>
3598 3793
\ No newline at end of file
Please login to merge, or discard this patch.
Sources/Subs-Db-postgresql.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
 /**
501 501
  * Returns the amount of affected rows for a query.
502 502
  *
503
- * @param mixed $result
503
+ * @param resource|null $result
504 504
  *
505 505
  * @return int
506 506
  *
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
  *
870 870
  * @param string $db_name The database name
871 871
  * @param resource $db_connection The database connection
872
- * @return true Always returns true
872
+ * @return boolean Always returns true
873 873
  */
874 874
 function smf_db_select_db($db_name, $db_connection)
875 875
 {
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -199,22 +199,22 @@  discard block
 block discarded – undo
199 199
 
200 200
 		case 'date':
201 201
 			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1)
202
-				return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]).'::date';
202
+				return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]) . '::date';
203 203
 			else
204 204
 				smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
205 205
 		break;
206 206
 
207 207
 		case 'time':
208 208
 			if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1)
209
-				return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]).'::time';
209
+				return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]) . '::time';
210 210
 			else
211 211
 				smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
212 212
 		break;
213 213
 
214 214
 		case 'datetime':
215 215
 			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d) ([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $datetime_matches) === 1)
216
-				return 'to_timestamp('.
217
-					sprintf('\'%04d-%02d-%02d %02d:%02d:%02d\'', $datetime_matches[1], $datetime_matches[2], $datetime_matches[3], $datetime_matches[4], $datetime_matches[5] ,$datetime_matches[6]).
216
+				return 'to_timestamp(' .
217
+					sprintf('\'%04d-%02d-%02d %02d:%02d:%02d\'', $datetime_matches[1], $datetime_matches[2], $datetime_matches[3], $datetime_matches[4], $datetime_matches[5], $datetime_matches[6]) .
218 218
 					',\'YYYY-MM-DD HH24:MI:SS\')';
219 219
 			else
220 220
 				smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 		$old_pos = 0;
425 425
 		$pos = -1;
426 426
 		// Remove the string escape for better runtime
427
-		$db_string_1 = str_replace('\'\'','',$db_string);
427
+		$db_string_1 = str_replace('\'\'', '', $db_string);
428 428
 		while (true)
429 429
 		{
430 430
 			$pos = strpos($db_string_1, '\'', $pos + 1);
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
 	if (!empty($keys) && (count($keys) > 0) && $returnmode > 0)
803 803
 	{
804 804
 		// we only take the first key
805
-		$returning = ' RETURNING '.$keys[0];
805
+		$returning = ' RETURNING ' . $keys[0];
806 806
 		$with_returning = true;
807 807
 	}
808 808
 
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
 			INSERT INTO ' . $table . '("' . implode('", "', $indexed_columns) . '")
834 834
 			VALUES
835 835
 				' . implode(',
836
-				', $insertRows).$replace.$returning,
836
+				', $insertRows) . $replace . $returning,
837 837
 			array(
838 838
 				'security_override' => true,
839 839
 				'db_error_skip' => $method == 'ignore' || $table === $db_prefix . 'log_errors',
@@ -846,7 +846,7 @@  discard block
 block discarded – undo
846 846
 			if ($returnmode === 2)
847 847
 				$return_var = array();
848 848
 
849
-			while(($row = $smcFunc['db_fetch_row']($request)) && $with_returning)
849
+			while (($row = $smcFunc['db_fetch_row']($request)) && $with_returning)
850 850
 			{
851 851
 				if (is_numeric($row[0])) // try to emulate mysql limitation
852 852
 				{
@@ -1009,7 +1009,7 @@  discard block
 block discarded – undo
1009 1009
  */
1010 1010
 function smf_db_custom_order($field, $array_values, $desc = false)
1011 1011
 {
1012
-	$return = 'CASE '. $field . ' ';
1012
+	$return = 'CASE ' . $field . ' ';
1013 1013
 	$count = count($array_values);
1014 1014
 	$then = ($desc ? ' THEN -' : ' THEN ');
1015 1015
 
Please login to merge, or discard this patch.
Braces   +238 added lines, -175 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
  * Maps the implementations in this file (smf_db_function_name)
@@ -34,8 +35,8 @@  discard block
 block discarded – undo
34 35
 	global $smcFunc;
35 36
 
36 37
 	// Map some database specific functions, only do this once.
37
-	if (!isset($smcFunc['db_fetch_assoc']))
38
-		$smcFunc += array(
38
+	if (!isset($smcFunc['db_fetch_assoc'])) {
39
+			$smcFunc += array(
39 40
 			'db_query'					=> 'smf_db_query',
40 41
 			'db_quote'					=> 'smf_db_quote',
41 42
 			'db_insert'					=> 'smf_db_insert',
@@ -66,15 +67,18 @@  discard block
 block discarded – undo
66 67
 			'db_native_replace'			=> 'smf_db_native_replace',
67 68
 			'db_cte_support'			=> 'smf_db_cte_support',
68 69
 		);
70
+	}
69 71
 
70 72
 	// We are not going to make it very far without these.
71
-	if (!function_exists('pg_pconnect'))
72
-		display_db_error();
73
+	if (!function_exists('pg_pconnect')) {
74
+			display_db_error();
75
+	}
73 76
 
74
-	if (!empty($db_options['persist']))
75
-		$connection = @pg_pconnect((empty($db_server) ? '' : 'host=' . $db_server . ' ') . 'dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\''));
76
-	else
77
-		$connection = @pg_connect((empty($db_server) ? '' : 'host=' . $db_server . ' ') . 'dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\''));
77
+	if (!empty($db_options['persist'])) {
78
+			$connection = @pg_pconnect((empty($db_server) ? '' : 'host=' . $db_server . ' ') . 'dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\''));
79
+	} else {
80
+			$connection = @pg_connect((empty($db_server) ? '' : 'host=' . $db_server . ' ') . 'dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\''));
81
+	}
78 82
 
79 83
 	// Something's wrong, show an error if its fatal (which we assume it is)
80 84
 	if (!$connection)
@@ -82,15 +86,15 @@  discard block
 block discarded – undo
82 86
 		if (!empty($db_options['non_fatal']))
83 87
 		{
84 88
 			return null;
85
-		}
86
-		else
89
+		} else
87 90
 		{
88 91
 			display_db_error();
89 92
 		}
90 93
 	}
91 94
 
92
-	if (!empty($db_options['db_mb4']))
93
-		$smcFunc['db_mb4'] = (bool) $db_options['db_mb4'];
95
+	if (!empty($db_options['db_mb4'])) {
96
+			$smcFunc['db_mb4'] = (bool) $db_options['db_mb4'];
97
+	}
94 98
 
95 99
 	return $connection;
96 100
 }
@@ -137,31 +141,38 @@  discard block
 block discarded – undo
137 141
 
138 142
 	list ($values, $connection) = $db_callback;
139 143
 
140
-	if ($matches[1] === 'db_prefix')
141
-		return $db_prefix;
144
+	if ($matches[1] === 'db_prefix') {
145
+			return $db_prefix;
146
+	}
142 147
 
143
-	if (isset($user_info[$matches[1]]) && strpos($matches[1], 'query_') !== false)
144
-		return $user_info[$matches[1]];
148
+	if (isset($user_info[$matches[1]]) && strpos($matches[1], 'query_') !== false) {
149
+			return $user_info[$matches[1]];
150
+	}
145 151
 
146
-	if ($matches[1] === 'empty')
147
-		return '\'\'';
152
+	if ($matches[1] === 'empty') {
153
+			return '\'\'';
154
+	}
148 155
 
149
-	if (!isset($matches[2]))
150
-		smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__);
156
+	if (!isset($matches[2])) {
157
+			smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__);
158
+	}
151 159
 
152
-	if ($matches[1] === 'literal')
153
-		return '\'' . pg_escape_string($matches[2]) . '\'';
160
+	if ($matches[1] === 'literal') {
161
+			return '\'' . pg_escape_string($matches[2]) . '\'';
162
+	}
154 163
 
155
-	if (!isset($values[$matches[2]]))
156
-		smf_db_error_backtrace('The database value you\'re trying to insert does not exist: ' . (isset($smcFunc['htmlspecialchars']) ? $smcFunc['htmlspecialchars']($matches[2]) : htmlspecialchars($matches[2])), '', E_USER_ERROR, __FILE__, __LINE__);
164
+	if (!isset($values[$matches[2]])) {
165
+			smf_db_error_backtrace('The database value you\'re trying to insert does not exist: ' . (isset($smcFunc['htmlspecialchars']) ? $smcFunc['htmlspecialchars']($matches[2]) : htmlspecialchars($matches[2])), '', E_USER_ERROR, __FILE__, __LINE__);
166
+	}
157 167
 
158 168
 	$replacement = $values[$matches[2]];
159 169
 
160 170
 	switch ($matches[1])
161 171
 	{
162 172
 		case 'int':
163
-			if (!is_numeric($replacement) || (string) $replacement !== (string) (int) $replacement)
164
-				smf_db_error_backtrace('Wrong value type sent to the database. Integer expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
173
+			if (!is_numeric($replacement) || (string) $replacement !== (string) (int) $replacement) {
174
+							smf_db_error_backtrace('Wrong value type sent to the database. Integer expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
175
+			}
165 176
 			return (string) (int) $replacement;
166 177
 		break;
167 178
 
@@ -173,65 +184,73 @@  discard block
 block discarded – undo
173 184
 		case 'array_int':
174 185
 			if (is_array($replacement))
175 186
 			{
176
-				if (empty($replacement))
177
-					smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
187
+				if (empty($replacement)) {
188
+									smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
189
+				}
178 190
 
179 191
 				foreach ($replacement as $key => $value)
180 192
 				{
181
-					if (!is_numeric($value) || (string) $value !== (string) (int) $value)
182
-						smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
193
+					if (!is_numeric($value) || (string) $value !== (string) (int) $value) {
194
+											smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
195
+					}
183 196
 
184 197
 					$replacement[$key] = (string) (int) $value;
185 198
 				}
186 199
 
187 200
 				return implode(', ', $replacement);
201
+			} else {
202
+							smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
188 203
 			}
189
-			else
190
-				smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
191 204
 
192 205
 		break;
193 206
 
194 207
 		case 'array_string':
195 208
 			if (is_array($replacement))
196 209
 			{
197
-				if (empty($replacement))
198
-					smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
210
+				if (empty($replacement)) {
211
+									smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
212
+				}
199 213
 
200
-				foreach ($replacement as $key => $value)
201
-					$replacement[$key] = sprintf('\'%1$s\'', pg_escape_string($value));
214
+				foreach ($replacement as $key => $value) {
215
+									$replacement[$key] = sprintf('\'%1$s\'', pg_escape_string($value));
216
+				}
202 217
 
203 218
 				return implode(', ', $replacement);
219
+			} else {
220
+							smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
204 221
 			}
205
-			else
206
-				smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
207 222
 		break;
208 223
 
209 224
 		case 'date':
210
-			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1)
211
-				return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]).'::date';
212
-			else
213
-				smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
225
+			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1) {
226
+							return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]).'::date';
227
+			} else {
228
+							smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
229
+			}
214 230
 		break;
215 231
 
216 232
 		case 'time':
217
-			if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1)
218
-				return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]).'::time';
219
-			else
220
-				smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
233
+			if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1) {
234
+							return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]).'::time';
235
+			} else {
236
+							smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
237
+			}
221 238
 		break;
222 239
 
223 240
 		case 'datetime':
224
-			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d) ([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $datetime_matches) === 1)
225
-				return 'to_timestamp('.
241
+			if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d) ([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $datetime_matches) === 1) {
242
+							return 'to_timestamp('.
226 243
 					sprintf('\'%04d-%02d-%02d %02d:%02d:%02d\'', $datetime_matches[1], $datetime_matches[2], $datetime_matches[3], $datetime_matches[4], $datetime_matches[5] ,$datetime_matches[6]).
227 244
 					',\'YYYY-MM-DD HH24:MI:SS\')';
228
-			else
229
-				smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
245
+			} else {
246
+							smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
247
+			}
230 248
 		break;
231 249
 
232 250
 		case 'float':
233
-			if (!is_numeric($replacement))
234
-				smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
251
+			if (!is_numeric($replacement)) {
252
+							smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
253
+			}
235 254
 			return (string) (float) $replacement;
236 255
 		break;
237 256
 
@@ -244,31 +263,36 @@  discard block
 block discarded – undo
244 263
 		break;
245 264
 
246 265
 		case 'inet':
247
-			if ($replacement == 'null' || $replacement == '')
248
-				return 'null';
249
-			if (inet_pton($replacement) === false)
250
-				smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
266
+			if ($replacement == 'null' || $replacement == '') {
267
+							return 'null';
268
+			}
269
+			if (inet_pton($replacement) === false) {
270
+							smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
271
+			}
251 272
 			return sprintf('\'%1$s\'::inet', pg_escape_string($replacement));
252 273
 
253 274
 		case 'array_inet':
254 275
 			if (is_array($replacement))
255 276
 			{
256
-				if (empty($replacement))
257
-					smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
277
+				if (empty($replacement)) {
278
+									smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
279
+				}
258 280
 
259 281
 				foreach ($replacement as $key => $value)
260 282
 				{
261
-					if ($replacement == 'null' || $replacement == '')
262
-						$replacement[$key] = 'null';
263
-					if (!isValidIP($value))
264
-						smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
283
+					if ($replacement == 'null' || $replacement == '') {
284
+											$replacement[$key] = 'null';
285
+					}
286
+					if (!isValidIP($value)) {
287
+											smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
288
+					}
265 289
 					$replacement[$key] = sprintf('\'%1$s\'::inet', pg_escape_string($value));
266 290
 				}
267 291
 
268 292
 				return implode(', ', $replacement);
293
+			} else {
294
+							smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
269 295
 			}
270
-			else
271
-				smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
272 296
 		break;
273 297
 
274 298
 		default:
@@ -356,14 +380,16 @@  discard block
 block discarded – undo
356 380
 		),
357 381
 	);
358 382
 
359
-	if (isset($replacements[$identifier]))
360
-		$db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string);
383
+	if (isset($replacements[$identifier])) {
384
+			$db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string);
385
+	}
361 386
 
362 387
 	// Limits need to be a little different.
363 388
 	$db_string = preg_replace('~\sLIMIT\s(\d+|{int:.+}),\s*(\d+|{int:.+})\s*$~i', 'LIMIT $2 OFFSET $1', $db_string);
364 389
 
365
-	if (trim($db_string) == '')
366
-		return false;
390
+	if (trim($db_string) == '') {
391
+			return false;
392
+	}
367 393
 
368 394
 	// Comments that are allowed in a query are preg_removed.
369 395
 	static $allowed_comments_from = array(
@@ -383,8 +409,9 @@  discard block
 block discarded – undo
383 409
 	$db_count = !isset($db_count) ? 1 : $db_count + 1;
384 410
 	$db_replace_result = 0;
385 411
 
386
-	if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override']))
387
-		smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__);
412
+	if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override'])) {
413
+			smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__);
414
+	}
388 415
 
389 416
 	if (empty($db_values['security_override']) && (!empty($db_values) || strpos($db_string, '{db_prefix}') !== false))
390 417
 	{
@@ -409,17 +436,18 @@  discard block
 block discarded – undo
409 436
 		while (true)
410 437
 		{
411 438
 			$pos = strpos($db_string_1, '\'', $pos + 1);
412
-			if ($pos === false)
413
-				break;
439
+			if ($pos === false) {
440
+							break;
441
+			}
414 442
 			$clean .= substr($db_string_1, $old_pos, $pos - $old_pos);
415 443
 
416 444
 			while (true)
417 445
 			{
418 446
 				$pos1 = strpos($db_string_1, '\'', $pos + 1);
419 447
 				$pos2 = strpos($db_string_1, '\\', $pos + 1);
420
-				if ($pos1 === false)
421
-					break;
422
-				elseif ($pos2 === false || $pos2 > $pos1)
448
+				if ($pos1 === false) {
449
+									break;
450
+				} elseif ($pos2 === false || $pos2 > $pos1)
423 451
 				{
424 452
 					$pos = $pos1;
425 453
 					break;
@@ -435,16 +463,19 @@  discard block
 block discarded – undo
435 463
 		$clean = trim(strtolower(preg_replace($allowed_comments_from, $allowed_comments_to, $clean)));
436 464
 
437 465
 		// Comments?  We don't use comments in our queries, we leave 'em outside!
438
-		if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false)
439
-			$fail = true;
466
+		if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false) {
467
+					$fail = true;
468
+		}
440 469
 		// Trying to change passwords, slow us down, or something?
441
-		elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0)
442
-			$fail = true;
443
-		elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0)
444
-			$fail = true;
470
+		elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0) {
471
+					$fail = true;
472
+		} elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0) {
473
+					$fail = true;
474
+		}
445 475
 
446
-		if (!empty($fail) && function_exists('log_error'))
447
-			smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__);
476
+		if (!empty($fail) && function_exists('log_error')) {
477
+					smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__);
478
+		}
448 479
 	}
449 480
 
450 481
 	// Set optimize stuff
@@ -471,8 +502,9 @@  discard block
 block discarded – undo
471 502
 		list ($file, $line) = smf_db_error_backtrace('', '', 'return', __FILE__, __LINE__);
472 503
 
473 504
 		// Initialize $db_cache if not already initialized.
474
-		if (!isset($db_cache))
475
-			$db_cache = array();
505
+		if (!isset($db_cache)) {
506
+					$db_cache = array();
507
+		}
476 508
 
477 509
 		if (!empty($_SESSION['debug_redirect']))
478 510
 		{
@@ -490,12 +522,14 @@  discard block
 block discarded – undo
490 522
 
491 523
 	$db_last_result = @pg_query($connection, $db_string);
492 524
 
493
-	if ($db_last_result === false && empty($db_values['db_error_skip']))
494
-		$db_last_result = smf_db_error($db_string, $connection);
525
+	if ($db_last_result === false && empty($db_values['db_error_skip'])) {
526
+			$db_last_result = smf_db_error($db_string, $connection);
527
+	}
495 528
 
496 529
 	// Debugging.
497
-	if (isset($db_show_debug) && $db_show_debug === true)
498
-		$db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st));
530
+	if (isset($db_show_debug) && $db_show_debug === true) {
531
+			$db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st));
532
+	}
499 533
 
500 534
 	return $db_last_result;
501 535
 }
@@ -512,10 +546,11 @@  discard block
 block discarded – undo
512 546
 {
513 547
 	global $db_last_result, $db_replace_result;
514 548
 
515
-	if ($db_replace_result)
516
-		return $db_replace_result;
517
-	elseif ($result === null && !$db_last_result)
518
-		return 0;
549
+	if ($db_replace_result) {
550
+			return $db_replace_result;
551
+	} elseif ($result === null && !$db_last_result) {
552
+			return 0;
553
+	}
519 554
 
520 555
 	return pg_affected_rows($result === null ? $db_last_result : $result);
521 556
 }
@@ -539,8 +574,9 @@  discard block
 block discarded – undo
539 574
 		array(
540 575
 		)
541 576
 	);
542
-	if (!$request)
543
-		return false;
577
+	if (!$request) {
578
+			return false;
579
+	}
544 580
 	list ($lastID) = $smcFunc['db_fetch_row']($request);
545 581
 	$smcFunc['db_free_result']($request);
546 582
 
@@ -561,12 +597,13 @@  discard block
 block discarded – undo
561 597
 	// Decide which connection to use
562 598
 	$connection = $connection === null ? $db_connection : $connection;
563 599
 
564
-	if ($type == 'begin')
565
-		return @pg_query($connection, 'BEGIN');
566
-	elseif ($type == 'rollback')
567
-		return @pg_query($connection, 'ROLLBACK');
568
-	elseif ($type == 'commit')
569
-		return @pg_query($connection, 'COMMIT');
600
+	if ($type == 'begin') {
601
+			return @pg_query($connection, 'BEGIN');
602
+	} elseif ($type == 'rollback') {
603
+			return @pg_query($connection, 'ROLLBACK');
604
+	} elseif ($type == 'commit') {
605
+			return @pg_query($connection, 'COMMIT');
606
+	}
570 607
 
571 608
 	return false;
572 609
 }
@@ -594,19 +631,22 @@  discard block
 block discarded – undo
594 631
 	$query_error = @pg_last_error($connection);
595 632
 
596 633
 	// Log the error.
597
-	if (function_exists('log_error'))
598
-		log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n" . $db_string : ''), 'database', $file, $line);
634
+	if (function_exists('log_error')) {
635
+			log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n" . $db_string : ''), 'database', $file, $line);
636
+	}
599 637
 
600 638
 	// Nothing's defined yet... just die with it.
601
-	if (empty($context) || empty($txt))
602
-		die($query_error);
639
+	if (empty($context) || empty($txt)) {
640
+			die($query_error);
641
+	}
603 642
 
604 643
 	// Show an error message, if possible.
605 644
 	$context['error_title'] = $txt['database_error'];
606
-	if (allowedTo('admin_forum'))
607
-		$context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line;
608
-	else
609
-		$context['error_message'] = $txt['try_again'];
645
+	if (allowedTo('admin_forum')) {
646
+			$context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line;
647
+	} else {
648
+			$context['error_message'] = $txt['try_again'];
649
+	}
610 650
 
611 651
 	if (allowedTo('admin_forum') && isset($db_show_debug) && $db_show_debug === true)
612 652
 	{
@@ -628,12 +668,14 @@  discard block
 block discarded – undo
628 668
 {
629 669
 	global $db_row_count;
630 670
 
631
-	if ($counter !== false)
632
-		return pg_fetch_row($request, $counter);
671
+	if ($counter !== false) {
672
+			return pg_fetch_row($request, $counter);
673
+	}
633 674
 
634 675
 	// Reset the row counter...
635
-	if (!isset($db_row_count[(int) $request]))
636
-		$db_row_count[(int) $request] = 0;
676
+	if (!isset($db_row_count[(int) $request])) {
677
+			$db_row_count[(int) $request] = 0;
678
+	}
637 679
 
638 680
 	// Return the right row.
639 681
 	return @pg_fetch_row($request, $db_row_count[(int) $request]++);
@@ -650,12 +692,14 @@  discard block
 block discarded – undo
650 692
 {
651 693
 	global $db_row_count;
652 694
 
653
-	if ($counter !== false)
654
-		return pg_fetch_assoc($request, $counter);
695
+	if ($counter !== false) {
696
+			return pg_fetch_assoc($request, $counter);
697
+	}
655 698
 
656 699
 	// Reset the row counter...
657
-	if (!isset($db_row_count[(int) $request]))
658
-		$db_row_count[(int) $request] = 0;
700
+	if (!isset($db_row_count[(int) $request])) {
701
+			$db_row_count[(int) $request] = 0;
702
+	}
659 703
 
660 704
 	// Return the right row.
661 705
 	return @pg_fetch_assoc($request, $db_row_count[(int) $request]++);
@@ -708,11 +752,13 @@  discard block
 block discarded – undo
708 752
 
709 753
 	$replace = '';
710 754
 
711
-	if (empty($data))
712
-		return;
755
+	if (empty($data)) {
756
+			return;
757
+	}
713 758
 
714
-	if (!is_array($data[array_rand($data)]))
715
-		$data = array($data);
759
+	if (!is_array($data[array_rand($data)])) {
760
+			$data = array($data);
761
+	}
716 762
 
717 763
 	// Replace the prefix holder with the actual prefix.
718 764
 	$table = str_replace('{db_prefix}', $db_prefix, $table);
@@ -738,32 +784,35 @@  discard block
 block discarded – undo
738 784
 					$key_str .= ($count_pk > 0 ? ',' : '');
739 785
 					$key_str .= $columnName;
740 786
 					$count_pk++;
741
-				}
742
-				else if ($method == 'replace') //normal field
787
+				} else if ($method == 'replace') {
788
+					//normal field
743 789
 				{
744 790
 					$col_str .= ($count > 0 ? ',' : '');
791
+				}
745 792
 					$col_str .= $columnName . ' = EXCLUDED.' . $columnName;
746 793
 					$count++;
747 794
 				}
748 795
 			}
749
-			if ($method == 'replace')
750
-				$replace = ' ON CONFLICT (' . $key_str . ') DO UPDATE SET ' . $col_str;
751
-			else
752
-				$replace = ' ON CONFLICT (' . $key_str . ') DO NOTHING';
753
-		}
754
-		else if ($method == 'replace')
796
+			if ($method == 'replace') {
797
+							$replace = ' ON CONFLICT (' . $key_str . ') DO UPDATE SET ' . $col_str;
798
+			} else {
799
+							$replace = ' ON CONFLICT (' . $key_str . ') DO NOTHING';
800
+			}
801
+		} else if ($method == 'replace')
755 802
 		{
756 803
 			foreach ($columns as $columnName => $type)
757 804
 			{
758 805
 				// Are we restricting the length?
759
-				if (strpos($type, 'string-') !== false)
760
-					$actualType = sprintf($columnName . ' = SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $count);
761
-				else
762
-					$actualType = sprintf($columnName . ' = {%1$s:%2$s}, ', $type, $count);
806
+				if (strpos($type, 'string-') !== false) {
807
+									$actualType = sprintf($columnName . ' = SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $count);
808
+				} else {
809
+									$actualType = sprintf($columnName . ' = {%1$s:%2$s}, ', $type, $count);
810
+				}
763 811
 
764 812
 				// A key? That's what we were looking for.
765
-				if (in_array($columnName, $keys))
766
-					$where .= (empty($where) ? '' : ' AND ') . substr($actualType, 0, -2);
813
+				if (in_array($columnName, $keys)) {
814
+									$where .= (empty($where) ? '' : ' AND ') . substr($actualType, 0, -2);
815
+				}
767 816
 				$count++;
768 817
 			}
769 818
 
@@ -799,10 +848,11 @@  discard block
 block discarded – undo
799 848
 		foreach ($columns as $columnName => $type)
800 849
 		{
801 850
 			// Are we restricting the length?
802
-			if (strpos($type, 'string-') !== false)
803
-				$insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName);
804
-			else
805
-				$insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName);
851
+			if (strpos($type, 'string-') !== false) {
852
+							$insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName);
853
+			} else {
854
+							$insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName);
855
+			}
806 856
 		}
807 857
 		$insertData = substr($insertData, 0, -2) . ')';
808 858
 
@@ -811,8 +861,9 @@  discard block
 block discarded – undo
811 861
 
812 862
 		// Here's where the variables are injected to the query.
813 863
 		$insertRows = array();
814
-		foreach ($data as $dataRow)
815
-			$insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection);
864
+		foreach ($data as $dataRow) {
865
+					$insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection);
866
+		}
816 867
 
817 868
 		// Do the insert.
818 869
 		$request = $smcFunc['db_query']('', '
@@ -829,19 +880,21 @@  discard block
 block discarded – undo
829 880
 
830 881
 		if ($with_returning && $request !== false)
831 882
 		{
832
-			if ($returnmode === 2)
833
-				$return_var = array();
883
+			if ($returnmode === 2) {
884
+							$return_var = array();
885
+			}
834 886
 
835 887
 			while(($row = $smcFunc['db_fetch_row']($request)) && $with_returning)
836 888
 			{
837
-				if (is_numeric($row[0])) // try to emulate mysql limitation
889
+				if (is_numeric($row[0])) {
890
+					// try to emulate mysql limitation
838 891
 				{
839 892
 					if ($returnmode === 1)
840 893
 						$return_var = $row[0];
841
-					elseif ($returnmode === 2)
842
-						$return_var[] = $row[0];
843
-				}
844
-				else
894
+				} elseif ($returnmode === 2) {
895
+											$return_var[] = $row[0];
896
+					}
897
+				} else
845 898
 				{
846 899
 					$with_returning = false;
847 900
 					trigger_error('trying to returning ID Field which is not a Int field', E_USER_ERROR);
@@ -850,9 +903,10 @@  discard block
 block discarded – undo
850 903
 		}
851 904
 	}
852 905
 
853
-	if ($with_returning && !empty($return_var))
854
-		return $return_var;
855
-}
906
+	if ($with_returning && !empty($return_var)) {
907
+			return $return_var;
908
+	}
909
+	}
856 910
 
857 911
 /**
858 912
  * Dummy function really. Doesn't do anything on PostgreSQL.
@@ -889,8 +943,9 @@  discard block
 block discarded – undo
889 943
  */
890 944
 function smf_db_error_backtrace($error_message, $log_message = '', $error_type = false, $file = null, $line = null)
891 945
 {
892
-	if (empty($log_message))
893
-		$log_message = $error_message;
946
+	if (empty($log_message)) {
947
+			$log_message = $error_message;
948
+	}
894 949
 
895 950
 	foreach (debug_backtrace() as $step)
896 951
 	{
@@ -909,12 +964,14 @@  discard block
 block discarded – undo
909 964
 	}
910 965
 
911 966
 	// A special case - we want the file and line numbers for debugging.
912
-	if ($error_type == 'return')
913
-		return array($file, $line);
967
+	if ($error_type == 'return') {
968
+			return array($file, $line);
969
+	}
914 970
 
915 971
 	// Is always a critical error.
916
-	if (function_exists('log_error'))
917
-		log_error($log_message, 'critical', $file, $line);
972
+	if (function_exists('log_error')) {
973
+			log_error($log_message, 'critical', $file, $line);
974
+	}
918 975
 
919 976
 	if (function_exists('fatal_error'))
920 977
 	{
@@ -922,12 +979,12 @@  discard block
 block discarded – undo
922 979
 
923 980
 		// Cannot continue...
924 981
 		exit;
982
+	} elseif ($error_type) {
983
+			trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type);
984
+	} else {
985
+			trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''));
986
+	}
925 987
 	}
926
-	elseif ($error_type)
927
-		trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type);
928
-	else
929
-		trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''));
930
-}
931 988
 
932 989
 /**
933 990
  * Escape the LIKE wildcards so that they match the character and not the wildcard.
@@ -944,10 +1001,11 @@  discard block
 block discarded – undo
944 1001
 		'\\' => '\\\\',
945 1002
 	);
946 1003
 
947
-	if ($translate_human_wildcards)
948
-		$replacements += array(
1004
+	if ($translate_human_wildcards) {
1005
+			$replacements += array(
949 1006
 			'*' => '%',
950 1007
 		);
1008
+	}
951 1009
 
952 1010
 	return strtr($string, $replacements);
953 1011
 }
@@ -976,14 +1034,16 @@  discard block
 block discarded – undo
976 1034
 	static $pg_error_data_prep;
977 1035
 
978 1036
 	// without database we can't do anything
979
-	if (empty($db_connection))
980
-		return;
1037
+	if (empty($db_connection)) {
1038
+			return;
1039
+	}
981 1040
 
982
-	if (empty($pg_error_data_prep))
983
-			$pg_error_data_prep = pg_prepare($db_connection, 'smf_log_errors',
1041
+	if (empty($pg_error_data_prep)) {
1042
+				$pg_error_data_prep = pg_prepare($db_connection, 'smf_log_errors',
984 1043
 				'INSERT INTO ' . $db_prefix . 'log_errors(id_member, log_time, ip, url, message, session, error_type, file, line, backtrace)
985 1044
 													VALUES(		$1,		$2,		$3, $4, 	$5,		$6,			$7,		$8,	$9, $10)'
986 1045
 			);
1046
+	}
987 1047
 
988 1048
 	pg_execute($db_connection, 'smf_log_errors', $error_array);
989 1049
 }
@@ -1003,8 +1063,9 @@  discard block
 block discarded – undo
1003 1063
 	$count = count($array_values);
1004 1064
 	$then = ($desc ? ' THEN -' : ' THEN ');
1005 1065
 
1006
-	for ($i = 0; $i < $count; $i++)
1007
-		$return .= 'WHEN ' . (int) $array_values[$i] . $then . $i . ' ';
1066
+	for ($i = 0; $i < $count; $i++) {
1067
+			$return .= 'WHEN ' . (int) $array_values[$i] . $then . $i . ' ';
1068
+	}
1008 1069
 
1009 1070
 	$return .= 'END';
1010 1071
 	return $return;
@@ -1027,11 +1088,13 @@  discard block
 block discarded – undo
1027 1088
 		//pg 9.5 got replace support
1028 1089
 		$pg_version = $smcFunc['db_get_version']();
1029 1090
 		// if we got a Beta Version
1030
-		if (stripos($pg_version, 'beta') !== false)
1031
-			$pg_version = substr($pg_version, 0, stripos($pg_version, 'beta')) . '.0';
1091
+		if (stripos($pg_version, 'beta') !== false) {
1092
+					$pg_version = substr($pg_version, 0, stripos($pg_version, 'beta')) . '.0';
1093
+		}
1032 1094
 		// or RC
1033
-		if (stripos($pg_version, 'rc') !== false)
1034
-			$pg_version = substr($pg_version, 0, stripos($pg_version, 'rc')) . '.0';
1095
+		if (stripos($pg_version, 'rc') !== false) {
1096
+					$pg_version = substr($pg_version, 0, stripos($pg_version, 'rc')) . '.0';
1097
+		}
1035 1098
 
1036 1099
 		$replace_support = (version_compare($pg_version, '9.5.0', '>=') ? true : false);
1037 1100
 	}
Please login to merge, or discard this patch.