@@ -19,7 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * Truncate the GET array to a specified length |
21 | 21 | * @param array $arr The array to truncate |
22 | - * @param max_length $max_length The upperbound on the length |
|
22 | + * @param integer $max_length The upperbound on the length |
|
23 | 23 | * |
24 | 24 | * @return array The truncated array |
25 | 25 | */ |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return array The truncated array |
25 | 25 | */ |
26 | -function truncateArray($arr, $max_length=1900) |
|
26 | +function truncateArray($arr, $max_length = 1900) |
|
27 | 27 | { |
28 | 28 | $curr_length = array_sum(array_map("strlen", $arr)); |
29 | 29 | if ($curr_length <= $max_length) |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | else |
32 | 32 | { |
33 | 33 | // Truncate each element's value to a reasonable length |
34 | - $param_max = floor($max_length/count($arr)); |
|
34 | + $param_max = floor($max_length / count($arr)); |
|
35 | 35 | foreach ($arr as $key => &$value) |
36 | 36 | $value = substr($value, 0, $param_max - strlen($key) - 5); |
37 | 37 | return $arr; |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | if (filemtime($boarddir . '/db_last_error.php') === $last_db_error_change) |
198 | 198 | { |
199 | 199 | // Write the change |
200 | - $write_db_change = '<' . '?' . "php\n" . '$db_last_error = ' . time() . ';' . "\n" . '?' . '>'; |
|
200 | + $write_db_change = '<' . '?' . "php\n" . '$db_last_error = ' . time() . ';' . "\n" . '?' . '>'; |
|
201 | 201 | $written_bytes = file_put_contents($boarddir . '/db_last_error.php', $write_db_change, LOCK_EX); |
202 | 202 | |
203 | 203 | // survey says ... |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | ', $txt['debug_language_files'], count($context['debug']['language_files']), ': <em>', implode('</em>, <em>', $context['debug']['language_files']), '</em>.<br> |
271 | 271 | ', $txt['debug_stylesheets'], count($context['debug']['sheets']), ': <em>', implode('</em>, <em>', $context['debug']['sheets']), '</em>.<br> |
272 | 272 | ', $txt['debug_hooks'], empty($context['debug']['hooks']) ? 0 : count($context['debug']['hooks']) . ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_hooks\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_hooks" style="display: none;"><em>' . implode('</em>, <em>', $context['debug']['hooks']), '</em></span>)', '<br> |
273 | - ',(isset($context['debug']['instances']) ? ($txt['debug_instances'] . (empty($context['debug']['instances']) ? 0 : count($context['debug']['instances'])) . ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_instances\').style.display = \'inline\'; this.style.display = \'none\'; return false;">'. $txt['debug_show'] .'</a><span id="debug_instances" style="display: none;"><em>'. implode('</em>, <em>', array_keys($context['debug']['instances'])) .'</em></span>)'. '<br>') : ''),' |
|
273 | + ',(isset($context['debug']['instances']) ? ($txt['debug_instances'] . (empty($context['debug']['instances']) ? 0 : count($context['debug']['instances'])) . ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_instances\').style.display = \'inline\'; this.style.display = \'none\'; return false;">' . $txt['debug_show'] . '</a><span id="debug_instances" style="display: none;"><em>' . implode('</em>, <em>', array_keys($context['debug']['instances'])) . '</em></span>)' . '<br>') : ''), ' |
|
274 | 274 | ', $txt['debug_files_included'], count($files), ' - ', round($total_size / 1024), $txt['debug_kb'], ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_include_info\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_include_info" style="display: none;"><em>', implode('</em>, <em>', $files), '</em></span>)<br>'; |
275 | 275 | |
276 | 276 | if (function_exists('memory_get_peak_usage')) |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
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 | * Truncate the GET array to a specified length |
@@ -26,14 +27,15 @@ discard block |
||
26 | 27 | function truncateArray($arr, $max_length=1900) |
27 | 28 | { |
28 | 29 | $curr_length = array_sum(array_map("strlen", $arr)); |
29 | - if ($curr_length <= $max_length) |
|
30 | - return $arr; |
|
31 | - else |
|
30 | + if ($curr_length <= $max_length) { |
|
31 | + return $arr; |
|
32 | + } else |
|
32 | 33 | { |
33 | 34 | // Truncate each element's value to a reasonable length |
34 | 35 | $param_max = floor($max_length/count($arr)); |
35 | - foreach ($arr as $key => &$value) |
|
36 | - $value = substr($value, 0, $param_max - strlen($key) - 5); |
|
36 | + foreach ($arr as $key => &$value) { |
|
37 | + $value = substr($value, 0, $param_max - strlen($key) - 5); |
|
38 | + } |
|
37 | 39 | return $arr; |
38 | 40 | } |
39 | 41 | } |
@@ -55,8 +57,9 @@ discard block |
||
55 | 57 | // Don't update for every page - this isn't wholly accurate but who cares. |
56 | 58 | if ($topic) |
57 | 59 | { |
58 | - if (isset($_SESSION['last_topic_id']) && $_SESSION['last_topic_id'] == $topic) |
|
59 | - $force = false; |
|
60 | + if (isset($_SESSION['last_topic_id']) && $_SESSION['last_topic_id'] == $topic) { |
|
61 | + $force = false; |
|
62 | + } |
|
60 | 63 | $_SESSION['last_topic_id'] = $topic; |
61 | 64 | } |
62 | 65 | } |
@@ -69,22 +72,24 @@ discard block |
||
69 | 72 | } |
70 | 73 | |
71 | 74 | // Don't mark them as online more than every so often. |
72 | - if (!empty($_SESSION['log_time']) && $_SESSION['log_time'] >= (time() - 8) && !$force) |
|
73 | - return; |
|
75 | + if (!empty($_SESSION['log_time']) && $_SESSION['log_time'] >= (time() - 8) && !$force) { |
|
76 | + return; |
|
77 | + } |
|
74 | 78 | |
75 | 79 | if (!empty($modSettings['who_enabled'])) |
76 | 80 | { |
77 | 81 | $serialized = truncateArray($_GET) + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']); |
78 | 82 | |
79 | 83 | // In the case of a dlattach action, session_var may not be set. |
80 | - if (!isset($context['session_var'])) |
|
81 | - $context['session_var'] = $_SESSION['session_var']; |
|
84 | + if (!isset($context['session_var'])) { |
|
85 | + $context['session_var'] = $_SESSION['session_var']; |
|
86 | + } |
|
82 | 87 | |
83 | 88 | unset($serialized['sesc'], $serialized[$context['session_var']]); |
84 | 89 | $serialized = json_encode($serialized); |
90 | + } else { |
|
91 | + $serialized = ''; |
|
85 | 92 | } |
86 | - else |
|
87 | - $serialized = ''; |
|
88 | 93 | |
89 | 94 | // Guests use 0, members use their session ID. |
90 | 95 | $session_id = $user_info['is_guest'] ? 'ip' . $user_info['ip'] : session_id(); |
@@ -124,17 +129,18 @@ discard block |
||
124 | 129 | ); |
125 | 130 | |
126 | 131 | // Guess it got deleted. |
127 | - if ($smcFunc['db_affected_rows']() == 0) |
|
132 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
133 | + $_SESSION['log_time'] = 0; |
|
134 | + } |
|
135 | + } else { |
|
128 | 136 | $_SESSION['log_time'] = 0; |
129 | 137 | } |
130 | - else |
|
131 | - $_SESSION['log_time'] = 0; |
|
132 | 138 | |
133 | 139 | // Otherwise, we have to delete and insert. |
134 | 140 | if (empty($_SESSION['log_time'])) |
135 | 141 | { |
136 | - if ($do_delete || !empty($user_info['id'])) |
|
137 | - $smcFunc['db_query']('', ' |
|
142 | + if ($do_delete || !empty($user_info['id'])) { |
|
143 | + $smcFunc['db_query']('', ' |
|
138 | 144 | DELETE FROM {db_prefix}log_online |
139 | 145 | WHERE ' . ($do_delete ? 'log_time < {int:log_time}' : '') . ($do_delete && !empty($user_info['id']) ? ' OR ' : '') . (empty($user_info['id']) ? '' : 'id_member = {int:current_member}'), |
140 | 146 | array( |
@@ -142,6 +148,7 @@ discard block |
||
142 | 148 | 'log_time' => time() - $modSettings['lastActive'] * 60, |
143 | 149 | ) |
144 | 150 | ); |
151 | + } |
|
145 | 152 | |
146 | 153 | $smcFunc['db_insert']($do_delete ? 'ignore' : 'replace', |
147 | 154 | '{db_prefix}log_online', |
@@ -155,21 +162,24 @@ discard block |
||
155 | 162 | $_SESSION['log_time'] = time(); |
156 | 163 | |
157 | 164 | // Well, they are online now. |
158 | - if (empty($_SESSION['timeOnlineUpdated'])) |
|
159 | - $_SESSION['timeOnlineUpdated'] = time(); |
|
165 | + if (empty($_SESSION['timeOnlineUpdated'])) { |
|
166 | + $_SESSION['timeOnlineUpdated'] = time(); |
|
167 | + } |
|
160 | 168 | |
161 | 169 | // Set their login time, if not already done within the last minute. |
162 | 170 | if (SMF != 'SSI' && !empty($user_info['last_login']) && $user_info['last_login'] < time() - 60 && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('.xml', 'login2', 'logintfa')))) |
163 | 171 | { |
164 | 172 | // Don't count longer than 15 minutes. |
165 | - if (time() - $_SESSION['timeOnlineUpdated'] > 60 * 15) |
|
166 | - $_SESSION['timeOnlineUpdated'] = time(); |
|
173 | + if (time() - $_SESSION['timeOnlineUpdated'] > 60 * 15) { |
|
174 | + $_SESSION['timeOnlineUpdated'] = time(); |
|
175 | + } |
|
167 | 176 | |
168 | 177 | $user_settings['total_time_logged_in'] += time() - $_SESSION['timeOnlineUpdated']; |
169 | 178 | updateMemberData($user_info['id'], array('last_login' => time(), 'member_ip' => $user_info['ip'], 'member_ip2' => $_SERVER['BAN_CHECK_IP'], 'total_time_logged_in' => $user_settings['total_time_logged_in'])); |
170 | 179 | |
171 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) |
|
172 | - cache_put_data('user_settings-' . $user_info['id'], $user_settings, 60); |
|
180 | + if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) { |
|
181 | + cache_put_data('user_settings-' . $user_info['id'], $user_settings, 60); |
|
182 | + } |
|
173 | 183 | |
174 | 184 | $user_info['total_time_logged_in'] += time() - $_SESSION['timeOnlineUpdated']; |
175 | 185 | $_SESSION['timeOnlineUpdated'] = time(); |
@@ -206,8 +216,7 @@ discard block |
||
206 | 216 | // Oops. maybe we have no more disk space left, or some other troubles, troubles... |
207 | 217 | // Copy the file back and run for your life! |
208 | 218 | @copy($boarddir . '/db_last_error_bak.php', $boarddir . '/db_last_error.php'); |
209 | - } |
|
210 | - else |
|
219 | + } else |
|
211 | 220 | { |
212 | 221 | @touch($boarddir . '/' . 'Settings.php'); |
213 | 222 | return true; |
@@ -227,22 +236,27 @@ discard block |
||
227 | 236 | global $db_cache, $db_count, $cache_misses, $cache_count_misses, $db_show_debug, $cache_count, $cache_hits, $smcFunc, $txt; |
228 | 237 | |
229 | 238 | // Add to Settings.php if you want to show the debugging information. |
230 | - if (!isset($db_show_debug) || $db_show_debug !== true || (isset($_GET['action']) && $_GET['action'] == 'viewquery')) |
|
231 | - return; |
|
239 | + if (!isset($db_show_debug) || $db_show_debug !== true || (isset($_GET['action']) && $_GET['action'] == 'viewquery')) { |
|
240 | + return; |
|
241 | + } |
|
232 | 242 | |
233 | - if (empty($_SESSION['view_queries'])) |
|
234 | - $_SESSION['view_queries'] = 0; |
|
235 | - if (empty($context['debug']['language_files'])) |
|
236 | - $context['debug']['language_files'] = array(); |
|
237 | - if (empty($context['debug']['sheets'])) |
|
238 | - $context['debug']['sheets'] = array(); |
|
243 | + if (empty($_SESSION['view_queries'])) { |
|
244 | + $_SESSION['view_queries'] = 0; |
|
245 | + } |
|
246 | + if (empty($context['debug']['language_files'])) { |
|
247 | + $context['debug']['language_files'] = array(); |
|
248 | + } |
|
249 | + if (empty($context['debug']['sheets'])) { |
|
250 | + $context['debug']['sheets'] = array(); |
|
251 | + } |
|
239 | 252 | |
240 | 253 | $files = get_included_files(); |
241 | 254 | $total_size = 0; |
242 | 255 | for ($i = 0, $n = count($files); $i < $n; $i++) |
243 | 256 | { |
244 | - if (file_exists($files[$i])) |
|
245 | - $total_size += filesize($files[$i]); |
|
257 | + if (file_exists($files[$i])) { |
|
258 | + $total_size += filesize($files[$i]); |
|
259 | + } |
|
246 | 260 | $files[$i] = strtr($files[$i], array($boarddir => '.', $sourcedir => '(Sources)', $cachedir => '(Cache)', $settings['actual_theme_dir'] => '(Current Theme)')); |
247 | 261 | } |
248 | 262 | |
@@ -251,8 +265,9 @@ discard block |
||
251 | 265 | { |
252 | 266 | foreach ($db_cache as $q => $qq) |
253 | 267 | { |
254 | - if (!empty($qq['w'])) |
|
255 | - $warnings += count($qq['w']); |
|
268 | + if (!empty($qq['w'])) { |
|
269 | + $warnings += count($qq['w']); |
|
270 | + } |
|
256 | 271 | } |
257 | 272 | |
258 | 273 | $_SESSION['debug'] = &$db_cache; |
@@ -273,12 +288,14 @@ discard block |
||
273 | 288 | ',(isset($context['debug']['instances']) ? ($txt['debug_instances'] . (empty($context['debug']['instances']) ? 0 : count($context['debug']['instances'])) . ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_instances\').style.display = \'inline\'; this.style.display = \'none\'; return false;">'. $txt['debug_show'] .'</a><span id="debug_instances" style="display: none;"><em>'. implode('</em>, <em>', array_keys($context['debug']['instances'])) .'</em></span>)'. '<br>') : ''),' |
274 | 289 | ', $txt['debug_files_included'], count($files), ' - ', round($total_size / 1024), $txt['debug_kb'], ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_include_info\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_include_info" style="display: none;"><em>', implode('</em>, <em>', $files), '</em></span>)<br>'; |
275 | 290 | |
276 | - if (function_exists('memory_get_peak_usage')) |
|
277 | - echo $txt['debug_memory_use'], ceil(memory_get_peak_usage() / 1024), $txt['debug_kb'], '<br>'; |
|
291 | + if (function_exists('memory_get_peak_usage')) { |
|
292 | + echo $txt['debug_memory_use'], ceil(memory_get_peak_usage() / 1024), $txt['debug_kb'], '<br>'; |
|
293 | + } |
|
278 | 294 | |
279 | 295 | // What tokens are active? |
280 | - if (isset($_SESSION['token'])) |
|
281 | - echo $txt['debug_tokens'] . '<em>' . implode(',</em> <em>', array_keys($_SESSION['token'])), '</em>.<br>'; |
|
296 | + if (isset($_SESSION['token'])) { |
|
297 | + echo $txt['debug_tokens'] . '<em>' . implode(',</em> <em>', array_keys($_SESSION['token'])), '</em>.<br>'; |
|
298 | + } |
|
282 | 299 | |
283 | 300 | if (!empty($modSettings['cache_enable']) && !empty($cache_hits)) |
284 | 301 | { |
@@ -292,10 +309,12 @@ discard block |
||
292 | 309 | $total_t += $cache_hit['t']; |
293 | 310 | $total_s += $cache_hit['s']; |
294 | 311 | } |
295 | - if (!isset($cache_misses)) |
|
296 | - $cache_misses = array(); |
|
297 | - foreach ($cache_misses as $missed) |
|
298 | - $missed_entries[] = $missed['d'] . ' ' . $missed['k']; |
|
312 | + if (!isset($cache_misses)) { |
|
313 | + $cache_misses = array(); |
|
314 | + } |
|
315 | + foreach ($cache_misses as $missed) { |
|
316 | + $missed_entries[] = $missed['d'] . ' ' . $missed['k']; |
|
317 | + } |
|
299 | 318 | |
300 | 319 | echo ' |
301 | 320 | ', $txt['debug_cache_hits'], $cache_count, ': ', sprintf($txt['debug_cache_seconds_bytes_total'], comma_format($total_t, 5), comma_format($total_s)), ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_cache_info\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_cache_info" style="display: none;"><em>', implode('</em>, <em>', $entries), '</em></span>)<br> |
@@ -306,38 +325,44 @@ discard block |
||
306 | 325 | <a href="', $scripturl, '?action=viewquery" target="_blank" class="new_win">', $warnings == 0 ? sprintf($txt['debug_queries_used'], (int) $db_count) : sprintf($txt['debug_queries_used_and_warnings'], (int) $db_count, $warnings), '</a><br> |
307 | 326 | <br>'; |
308 | 327 | |
309 | - if ($_SESSION['view_queries'] == 1 && !empty($db_cache)) |
|
310 | - foreach ($db_cache as $q => $qq) |
|
328 | + if ($_SESSION['view_queries'] == 1 && !empty($db_cache)) { |
|
329 | + foreach ($db_cache as $q => $qq) |
|
311 | 330 | { |
312 | 331 | $is_select = strpos(trim($qq['q']), 'SELECT') === 0 || preg_match('~^INSERT(?: IGNORE)? INTO \w+(?:\s+\([^)]+\))?\s+SELECT .+$~s', trim($qq['q'])) != 0; |
332 | + } |
|
313 | 333 | // Temporary tables created in earlier queries are not explainable. |
314 | 334 | if ($is_select) |
315 | 335 | { |
316 | - foreach (array('log_topics_unread', 'topics_posted_in', 'tmp_log_search_topics', 'tmp_log_search_messages') as $tmp) |
|
317 | - if (strpos(trim($qq['q']), $tmp) !== false) |
|
336 | + foreach (array('log_topics_unread', 'topics_posted_in', 'tmp_log_search_topics', 'tmp_log_search_messages') as $tmp) { |
|
337 | + if (strpos(trim($qq['q']), $tmp) !== false) |
|
318 | 338 | { |
319 | 339 | $is_select = false; |
340 | + } |
|
320 | 341 | break; |
321 | 342 | } |
322 | 343 | } |
323 | 344 | // But actual creation of the temporary tables are. |
324 | - elseif (preg_match('~^CREATE TEMPORARY TABLE .+?SELECT .+$~s', trim($qq['q'])) != 0) |
|
325 | - $is_select = true; |
|
345 | + elseif (preg_match('~^CREATE TEMPORARY TABLE .+?SELECT .+$~s', trim($qq['q'])) != 0) { |
|
346 | + $is_select = true; |
|
347 | + } |
|
326 | 348 | |
327 | 349 | // Make the filenames look a bit better. |
328 | - if (isset($qq['f'])) |
|
329 | - $qq['f'] = preg_replace('~^' . preg_quote($boarddir, '~') . '~', '...', $qq['f']); |
|
350 | + if (isset($qq['f'])) { |
|
351 | + $qq['f'] = preg_replace('~^' . preg_quote($boarddir, '~') . '~', '...', $qq['f']); |
|
352 | + } |
|
330 | 353 | |
331 | 354 | echo ' |
332 | 355 | <strong>', $is_select ? '<a href="' . $scripturl . '?action=viewquery;qq=' . ($q + 1) . '#qq' . $q . '" target="_blank" class="new_win" style="text-decoration: none;">' : '', nl2br(str_replace("\t", ' ', $smcFunc['htmlspecialchars'](ltrim($qq['q'], "\n\r")))) . ($is_select ? '</a></strong>' : '</strong>') . '<br> |
333 | 356 | '; |
334 | - if (!empty($qq['f']) && !empty($qq['l'])) |
|
335 | - echo sprintf($txt['debug_query_in_line'], $qq['f'], $qq['l']); |
|
357 | + if (!empty($qq['f']) && !empty($qq['l'])) { |
|
358 | + echo sprintf($txt['debug_query_in_line'], $qq['f'], $qq['l']); |
|
359 | + } |
|
336 | 360 | |
337 | - if (isset($qq['s'], $qq['t']) && isset($txt['debug_query_which_took_at'])) |
|
338 | - echo sprintf($txt['debug_query_which_took_at'], round($qq['t'], 8), round($qq['s'], 8)) . '<br>'; |
|
339 | - elseif (isset($qq['t'])) |
|
340 | - echo sprintf($txt['debug_query_which_took'], round($qq['t'], 8)) . '<br>'; |
|
361 | + if (isset($qq['s'], $qq['t']) && isset($txt['debug_query_which_took_at'])) { |
|
362 | + echo sprintf($txt['debug_query_which_took_at'], round($qq['t'], 8), round($qq['s'], 8)) . '<br>'; |
|
363 | + } elseif (isset($qq['t'])) { |
|
364 | + echo sprintf($txt['debug_query_which_took'], round($qq['t'], 8)) . '<br>'; |
|
365 | + } |
|
341 | 366 | echo ' |
342 | 367 | <br>'; |
343 | 368 | } |
@@ -362,12 +387,14 @@ discard block |
||
362 | 387 | global $modSettings, $smcFunc; |
363 | 388 | static $cache_stats = array(); |
364 | 389 | |
365 | - if (empty($modSettings['trackStats'])) |
|
366 | - return false; |
|
367 | - if (!empty($stats)) |
|
368 | - return $cache_stats = array_merge($cache_stats, $stats); |
|
369 | - elseif (empty($cache_stats)) |
|
370 | - return false; |
|
390 | + if (empty($modSettings['trackStats'])) { |
|
391 | + return false; |
|
392 | + } |
|
393 | + if (!empty($stats)) { |
|
394 | + return $cache_stats = array_merge($cache_stats, $stats); |
|
395 | + } elseif (empty($cache_stats)) { |
|
396 | + return false; |
|
397 | + } |
|
371 | 398 | |
372 | 399 | $setStringUpdate = ''; |
373 | 400 | $insert_keys = array(); |
@@ -380,10 +407,11 @@ discard block |
||
380 | 407 | $setStringUpdate .= ' |
381 | 408 | ' . $field . ' = ' . ($change === '+' ? $field . ' + 1' : '{int:' . $field . '}') . ','; |
382 | 409 | |
383 | - if ($change === '+') |
|
384 | - $cache_stats[$field] = 1; |
|
385 | - else |
|
386 | - $update_parameters[$field] = $change; |
|
410 | + if ($change === '+') { |
|
411 | + $cache_stats[$field] = 1; |
|
412 | + } else { |
|
413 | + $update_parameters[$field] = $change; |
|
414 | + } |
|
387 | 415 | $insert_keys[$field] = 'int'; |
388 | 416 | } |
389 | 417 | |
@@ -447,43 +475,50 @@ discard block |
||
447 | 475 | ); |
448 | 476 | |
449 | 477 | // Make sure this particular log is enabled first... |
450 | - if (empty($modSettings['modlog_enabled'])) |
|
451 | - unset ($log_types['moderate']); |
|
452 | - if (empty($modSettings['userlog_enabled'])) |
|
453 | - unset ($log_types['user']); |
|
454 | - if (empty($modSettings['adminlog_enabled'])) |
|
455 | - unset ($log_types['admin']); |
|
478 | + if (empty($modSettings['modlog_enabled'])) { |
|
479 | + unset ($log_types['moderate']); |
|
480 | + } |
|
481 | + if (empty($modSettings['userlog_enabled'])) { |
|
482 | + unset ($log_types['user']); |
|
483 | + } |
|
484 | + if (empty($modSettings['adminlog_enabled'])) { |
|
485 | + unset ($log_types['admin']); |
|
486 | + } |
|
456 | 487 | |
457 | 488 | call_integration_hook('integrate_log_types', array(&$log_types)); |
458 | 489 | |
459 | 490 | foreach ($logs as $log) |
460 | 491 | { |
461 | - if (!isset($log_types[$log['log_type']])) |
|
462 | - return false; |
|
492 | + if (!isset($log_types[$log['log_type']])) { |
|
493 | + return false; |
|
494 | + } |
|
463 | 495 | |
464 | - if (!is_array($log['extra'])) |
|
465 | - trigger_error('logActions(): data is not an array with action \'' . $log['action'] . '\'', E_USER_NOTICE); |
|
496 | + if (!is_array($log['extra'])) { |
|
497 | + trigger_error('logActions(): data is not an array with action \'' . $log['action'] . '\'', E_USER_NOTICE); |
|
498 | + } |
|
466 | 499 | |
467 | 500 | // Pull out the parts we want to store separately, but also make sure that the data is proper |
468 | 501 | if (isset($log['extra']['topic'])) |
469 | 502 | { |
470 | - if (!is_numeric($log['extra']['topic'])) |
|
471 | - trigger_error('logActions(): data\'s topic is not a number', E_USER_NOTICE); |
|
503 | + if (!is_numeric($log['extra']['topic'])) { |
|
504 | + trigger_error('logActions(): data\'s topic is not a number', E_USER_NOTICE); |
|
505 | + } |
|
472 | 506 | $topic_id = empty($log['extra']['topic']) ? 0 : (int) $log['extra']['topic']; |
473 | 507 | unset($log['extra']['topic']); |
508 | + } else { |
|
509 | + $topic_id = 0; |
|
474 | 510 | } |
475 | - else |
|
476 | - $topic_id = 0; |
|
477 | 511 | |
478 | 512 | if (isset($log['extra']['message'])) |
479 | 513 | { |
480 | - if (!is_numeric($log['extra']['message'])) |
|
481 | - trigger_error('logActions(): data\'s message is not a number', E_USER_NOTICE); |
|
514 | + if (!is_numeric($log['extra']['message'])) { |
|
515 | + trigger_error('logActions(): data\'s message is not a number', E_USER_NOTICE); |
|
516 | + } |
|
482 | 517 | $msg_id = empty($log['extra']['message']) ? 0 : (int) $log['extra']['message']; |
483 | 518 | unset($log['extra']['message']); |
519 | + } else { |
|
520 | + $msg_id = 0; |
|
484 | 521 | } |
485 | - else |
|
486 | - $msg_id = 0; |
|
487 | 522 | |
488 | 523 | // @todo cache this? |
489 | 524 | // Is there an associated report on this? |
@@ -510,23 +545,26 @@ discard block |
||
510 | 545 | $smcFunc['db_free_result']($request); |
511 | 546 | } |
512 | 547 | |
513 | - if (isset($log['extra']['member']) && !is_numeric($log['extra']['member'])) |
|
514 | - trigger_error('logActions(): data\'s member is not a number', E_USER_NOTICE); |
|
548 | + if (isset($log['extra']['member']) && !is_numeric($log['extra']['member'])) { |
|
549 | + trigger_error('logActions(): data\'s member is not a number', E_USER_NOTICE); |
|
550 | + } |
|
515 | 551 | |
516 | 552 | if (isset($log['extra']['board'])) |
517 | 553 | { |
518 | - if (!is_numeric($log['extra']['board'])) |
|
519 | - trigger_error('logActions(): data\'s board is not a number', E_USER_NOTICE); |
|
554 | + if (!is_numeric($log['extra']['board'])) { |
|
555 | + trigger_error('logActions(): data\'s board is not a number', E_USER_NOTICE); |
|
556 | + } |
|
520 | 557 | $board_id = empty($log['extra']['board']) ? 0 : (int) $log['extra']['board']; |
521 | 558 | unset($log['extra']['board']); |
559 | + } else { |
|
560 | + $board_id = 0; |
|
522 | 561 | } |
523 | - else |
|
524 | - $board_id = 0; |
|
525 | 562 | |
526 | 563 | if (isset($log['extra']['board_to'])) |
527 | 564 | { |
528 | - if (!is_numeric($log['extra']['board_to'])) |
|
529 | - trigger_error('logActions(): data\'s board_to is not a number', E_USER_NOTICE); |
|
565 | + if (!is_numeric($log['extra']['board_to'])) { |
|
566 | + trigger_error('logActions(): data\'s board_to is not a number', E_USER_NOTICE); |
|
567 | + } |
|
530 | 568 | if (empty($board_id)) |
531 | 569 | { |
532 | 570 | $board_id = empty($log['extra']['board_to']) ? 0 : (int) $log['extra']['board_to']; |
@@ -534,10 +572,11 @@ discard block |
||
534 | 572 | } |
535 | 573 | } |
536 | 574 | |
537 | - if (isset($log['extra']['member_affected'])) |
|
538 | - $memID = $log['extra']['member_affected']; |
|
539 | - else |
|
540 | - $memID = $user_info['id']; |
|
575 | + if (isset($log['extra']['member_affected'])) { |
|
576 | + $memID = $log['extra']['member_affected']; |
|
577 | + } else { |
|
578 | + $memID = $user_info['id']; |
|
579 | + } |
|
541 | 580 | |
542 | 581 | $inserts[] = array( |
543 | 582 | time(), $log_types[$log['log_type']], $memID, $user_info['ip'], $log['action'], |
@@ -1610,7 +1610,7 @@ discard block |
||
1610 | 1610 | |
1611 | 1611 | // Our custom error handler - does nothing but does stop public errors from XML! |
1612 | 1612 | set_error_handler( |
1613 | - function ($errno, $errstr, $errfile, $errline) use ($support_js) |
|
1613 | + function($errno, $errstr, $errfile, $errline) use ($support_js) |
|
1614 | 1614 | { |
1615 | 1615 | if ($support_js) |
1616 | 1616 | return true; |
@@ -2595,94 +2595,94 @@ discard block |
||
2595 | 2595 | // Translation table for the character sets not native for MySQL. |
2596 | 2596 | $translation_tables = array( |
2597 | 2597 | 'windows-1255' => array( |
2598 | - '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
2599 | - '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
2600 | - '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
2601 | - '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
2602 | - '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
2603 | - '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
2604 | - '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
2605 | - '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
2606 | - '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
2607 | - '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
2608 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2609 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2610 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2611 | - '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
2612 | - '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
2613 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2614 | - '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
2615 | - '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
2616 | - '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
2617 | - '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
2618 | - '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
2619 | - '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
2620 | - '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
2621 | - '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
2622 | - '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
2623 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2624 | - '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
2625 | - '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2626 | - '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
2627 | - '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
2628 | - '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
2629 | - '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
2630 | - '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
2631 | - '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
2632 | - '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
2633 | - '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
2634 | - '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
2635 | - '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
2636 | - '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
2637 | - '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
2638 | - '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
2639 | - '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
2598 | + '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
2599 | + '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
2600 | + '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
2601 | + '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
2602 | + '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
2603 | + '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
2604 | + '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
2605 | + '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
2606 | + '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
2607 | + '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
2608 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2609 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2610 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2611 | + '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
2612 | + '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
2613 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2614 | + '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
2615 | + '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
2616 | + '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
2617 | + '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
2618 | + '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
2619 | + '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
2620 | + '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
2621 | + '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
2622 | + '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
2623 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2624 | + '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
2625 | + '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2626 | + '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
2627 | + '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
2628 | + '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
2629 | + '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
2630 | + '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
2631 | + '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
2632 | + '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
2633 | + '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
2634 | + '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
2635 | + '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
2636 | + '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
2637 | + '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
2638 | + '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
2639 | + '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
2640 | 2640 | '0xFA' => '0xD7AA', |
2641 | 2641 | ), |
2642 | 2642 | 'windows-1253' => array( |
2643 | - '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
2644 | - '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
2645 | - '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
2646 | - '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
2647 | - '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
2648 | - '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
2649 | - '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
2650 | - '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
2651 | - '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
2652 | - '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
2653 | - '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
2654 | - '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
2655 | - '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
2656 | - '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
2657 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2658 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2659 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2660 | - '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
2661 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2662 | - '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
2663 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2664 | - '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
2665 | - '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
2666 | - '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
2667 | - '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2668 | - '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
2669 | - '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
2670 | - '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
2671 | - '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
2672 | - '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
2673 | - '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
2674 | - '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
2675 | - '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
2676 | - '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
2677 | - '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
2678 | - '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
2679 | - '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
2680 | - '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
2681 | - '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
2682 | - '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
2683 | - '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
2684 | - '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
2685 | - '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
2643 | + '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
2644 | + '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
2645 | + '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
2646 | + '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
2647 | + '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
2648 | + '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
2649 | + '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
2650 | + '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
2651 | + '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
2652 | + '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
2653 | + '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
2654 | + '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
2655 | + '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
2656 | + '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
2657 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2658 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2659 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2660 | + '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
2661 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2662 | + '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
2663 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2664 | + '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
2665 | + '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
2666 | + '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
2667 | + '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2668 | + '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
2669 | + '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
2670 | + '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
2671 | + '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
2672 | + '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
2673 | + '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
2674 | + '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
2675 | + '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
2676 | + '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
2677 | + '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
2678 | + '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
2679 | + '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
2680 | + '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
2681 | + '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
2682 | + '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
2683 | + '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
2684 | + '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
2685 | + '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
2686 | 2686 | ), |
2687 | 2687 | ); |
2688 | 2688 | |
@@ -3781,7 +3781,7 @@ discard block |
||
3781 | 3781 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
3782 | 3782 | <input type="hidden" name="backup_done" id="backup_done" value="0"> |
3783 | 3783 | <strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong> |
3784 | - <div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;"> |
|
3784 | + <div id="debug_section" style="height: ', ($is_debug ? '115' : '12'), 'px; overflow: auto;"> |
|
3785 | 3785 | <span id="debuginfo"></span> |
3786 | 3786 | </div>'; |
3787 | 3787 | |
@@ -4282,7 +4282,7 @@ discard block |
||
4282 | 4282 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
4283 | 4283 | <input type="hidden" name="utf8_done" id="utf8_done" value="0"> |
4284 | 4284 | <strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong> |
4285 | - <div id="debug_section" style="height: ', ($is_debug ? '97' : '12') , 'px; overflow: auto;"> |
|
4285 | + <div id="debug_section" style="height: ', ($is_debug ? '97' : '12'), 'px; overflow: auto;"> |
|
4286 | 4286 | <span id="debuginfo"></span> |
4287 | 4287 | </div>'; |
4288 | 4288 | |
@@ -4383,7 +4383,7 @@ discard block |
||
4383 | 4383 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
4384 | 4384 | <input type="hidden" name="json_done" id="json_done" value="0"> |
4385 | 4385 | <strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong> |
4386 | - <div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;"> |
|
4386 | + <div id="debug_section" style="height: ', ($is_debug ? '115' : '12'), 'px; overflow: auto;"> |
|
4387 | 4387 | <span id="debuginfo"></span> |
4388 | 4388 | </div>'; |
4389 | 4389 |
@@ -75,8 +75,9 @@ discard block |
||
75 | 75 | $upcontext['inactive_timeout'] = 10; |
76 | 76 | |
77 | 77 | // The helper is crucial. Include it first thing. |
78 | -if (!file_exists($upgrade_path . '/upgrade-helper.php')) |
|
78 | +if (!file_exists($upgrade_path . '/upgrade-helper.php')) { |
|
79 | 79 | die('upgrade-helper.php not found where it was expected: ' . $upgrade_path . '/upgrade-helper.php! Make sure you have uploaded ALL files from the upgrade package. The upgrader cannot continue.'); |
80 | +} |
|
80 | 81 | |
81 | 82 | require_once($upgrade_path . '/upgrade-helper.php'); |
82 | 83 | |
@@ -100,11 +101,14 @@ discard block |
||
100 | 101 | ini_set('default_socket_timeout', 900); |
101 | 102 | } |
102 | 103 | // Clean the upgrade path if this is from the client. |
103 | -if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) |
|
104 | - for ($i = 1; $i < $_SERVER['argc']; $i++) |
|
104 | +if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) { |
|
105 | + for ($i = 1; |
|
106 | +} |
|
107 | +$i < $_SERVER['argc']; $i++) |
|
105 | 108 | { |
106 | - if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) |
|
107 | - $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
109 | + if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) { |
|
110 | + $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
111 | + } |
|
108 | 112 | } |
109 | 113 | |
110 | 114 | // Are we from the client? |
@@ -112,16 +116,17 @@ discard block |
||
112 | 116 | { |
113 | 117 | $command_line = true; |
114 | 118 | $disable_security = true; |
115 | -} |
|
116 | -else |
|
119 | +} else { |
|
117 | 120 | $command_line = false; |
121 | +} |
|
118 | 122 | |
119 | 123 | // Load this now just because we can. |
120 | 124 | require_once($upgrade_path . '/Settings.php'); |
121 | 125 | |
122 | 126 | // We don't use "-utf8" anymore... Tweak the entry that may have been loaded by Settings.php |
123 | -if (isset($language)) |
|
127 | +if (isset($language)) { |
|
124 | 128 | $language = str_ireplace('-utf8', '', $language); |
129 | +} |
|
125 | 130 | |
126 | 131 | // Are we logged in? |
127 | 132 | if (isset($upgradeData)) |
@@ -129,10 +134,12 @@ discard block |
||
129 | 134 | $upcontext['user'] = json_decode(base64_decode($upgradeData), true); |
130 | 135 | |
131 | 136 | // Check for sensible values. |
132 | - if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) |
|
133 | - $upcontext['user']['started'] = time(); |
|
134 | - if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) |
|
135 | - $upcontext['user']['updated'] = 0; |
|
137 | + if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) { |
|
138 | + $upcontext['user']['started'] = time(); |
|
139 | + } |
|
140 | + if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) { |
|
141 | + $upcontext['user']['updated'] = 0; |
|
142 | + } |
|
136 | 143 | |
137 | 144 | $upcontext['started'] = $upcontext['user']['started']; |
138 | 145 | $upcontext['updated'] = $upcontext['user']['updated']; |
@@ -190,8 +197,9 @@ discard block |
||
190 | 197 | 'db_error_skip' => true, |
191 | 198 | ) |
192 | 199 | ); |
193 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
194 | - $modSettings[$row['variable']] = $row['value']; |
|
200 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
201 | + $modSettings[$row['variable']] = $row['value']; |
|
202 | + } |
|
195 | 203 | $smcFunc['db_free_result']($request); |
196 | 204 | } |
197 | 205 | |
@@ -201,10 +209,12 @@ discard block |
||
201 | 209 | $modSettings['theme_url'] = 'Themes/default'; |
202 | 210 | $modSettings['images_url'] = 'Themes/default/images'; |
203 | 211 | } |
204 | -if (!isset($settings['default_theme_url'])) |
|
212 | +if (!isset($settings['default_theme_url'])) { |
|
205 | 213 | $settings['default_theme_url'] = $modSettings['theme_url']; |
206 | -if (!isset($settings['default_theme_dir'])) |
|
214 | +} |
|
215 | +if (!isset($settings['default_theme_dir'])) { |
|
207 | 216 | $settings['default_theme_dir'] = $modSettings['theme_dir']; |
217 | +} |
|
208 | 218 | |
209 | 219 | $upcontext['is_large_forum'] = (empty($modSettings['smfVersion']) || $modSettings['smfVersion'] <= '1.1 RC1') && !empty($modSettings['totalMessages']) && $modSettings['totalMessages'] > 75000; |
210 | 220 | // Default title... |
@@ -222,13 +232,15 @@ discard block |
||
222 | 232 | $support_js = $upcontext['upgrade_status']['js']; |
223 | 233 | |
224 | 234 | // Only set this if the upgrader status says so. |
225 | - if (empty($is_debug)) |
|
226 | - $is_debug = $upcontext['upgrade_status']['debug']; |
|
235 | + if (empty($is_debug)) { |
|
236 | + $is_debug = $upcontext['upgrade_status']['debug']; |
|
237 | + } |
|
227 | 238 | |
228 | 239 | // Load the language. |
229 | - if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
230 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
231 | -} |
|
240 | + if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
241 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
242 | + } |
|
243 | + } |
|
232 | 244 | // Set the defaults. |
233 | 245 | else |
234 | 246 | { |
@@ -246,15 +258,18 @@ discard block |
||
246 | 258 | } |
247 | 259 | |
248 | 260 | // If this isn't the first stage see whether they are logging in and resuming. |
249 | -if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) |
|
261 | +if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) { |
|
250 | 262 | checkLogin(); |
263 | +} |
|
251 | 264 | |
252 | -if ($command_line) |
|
265 | +if ($command_line) { |
|
253 | 266 | cmdStep0(); |
267 | +} |
|
254 | 268 | |
255 | 269 | // Don't error if we're using xml. |
256 | -if (isset($_GET['xml'])) |
|
270 | +if (isset($_GET['xml'])) { |
|
257 | 271 | $upcontext['return_error'] = true; |
272 | +} |
|
258 | 273 | |
259 | 274 | // Loop through all the steps doing each one as required. |
260 | 275 | $upcontext['overall_percent'] = 0; |
@@ -275,9 +290,9 @@ discard block |
||
275 | 290 | } |
276 | 291 | |
277 | 292 | // Call the step and if it returns false that means pause! |
278 | - if (function_exists($step[2]) && $step[2]() === false) |
|
279 | - break; |
|
280 | - elseif (function_exists($step[2])) { |
|
293 | + if (function_exists($step[2]) && $step[2]() === false) { |
|
294 | + break; |
|
295 | + } elseif (function_exists($step[2])) { |
|
281 | 296 | //Start each new step with this unset, so the 'normal' template is called first |
282 | 297 | unset($_GET['xml']); |
283 | 298 | $_GET['substep'] = 0; |
@@ -321,17 +336,18 @@ discard block |
||
321 | 336 | // This should not happen my dear... HELP ME DEVELOPERS!! |
322 | 337 | if (!empty($command_line)) |
323 | 338 | { |
324 | - if (function_exists('debug_print_backtrace')) |
|
325 | - debug_print_backtrace(); |
|
339 | + if (function_exists('debug_print_backtrace')) { |
|
340 | + debug_print_backtrace(); |
|
341 | + } |
|
326 | 342 | |
327 | 343 | echo "\n" . 'Error: Unexpected call to use the ' . (isset($upcontext['sub_template']) ? $upcontext['sub_template'] : '') . ' template. Please copy and paste all the text above and visit the SMF support forum to tell the Developers that they\'ve made a boo boo; they\'ll get you up and running again.'; |
328 | 344 | flush(); |
329 | 345 | die(); |
330 | 346 | } |
331 | 347 | |
332 | - if (!isset($_GET['xml'])) |
|
333 | - template_upgrade_above(); |
|
334 | - else |
|
348 | + if (!isset($_GET['xml'])) { |
|
349 | + template_upgrade_above(); |
|
350 | + } else |
|
335 | 351 | { |
336 | 352 | header('Content-Type: text/xml; charset=UTF-8'); |
337 | 353 | // Sadly we need to retain the $_GET data thanks to the old upgrade scripts. |
@@ -353,25 +369,29 @@ discard block |
||
353 | 369 | $upcontext['form_url'] = $upgradeurl . '?step=' . $upcontext['current_step'] . '&substep=' . $_GET['substep'] . '&data=' . base64_encode(json_encode($upcontext['upgrade_status'])); |
354 | 370 | |
355 | 371 | // Custom stuff to pass back? |
356 | - if (!empty($upcontext['query_string'])) |
|
357 | - $upcontext['form_url'] .= $upcontext['query_string']; |
|
372 | + if (!empty($upcontext['query_string'])) { |
|
373 | + $upcontext['form_url'] .= $upcontext['query_string']; |
|
374 | + } |
|
358 | 375 | |
359 | 376 | // Call the appropriate subtemplate |
360 | - if (is_callable('template_' . $upcontext['sub_template'])) |
|
361 | - call_user_func('template_' . $upcontext['sub_template']); |
|
362 | - else |
|
363 | - die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
377 | + if (is_callable('template_' . $upcontext['sub_template'])) { |
|
378 | + call_user_func('template_' . $upcontext['sub_template']); |
|
379 | + } else { |
|
380 | + die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
381 | + } |
|
364 | 382 | } |
365 | 383 | |
366 | 384 | // Was there an error? |
367 | - if (!empty($upcontext['forced_error_message'])) |
|
368 | - echo $upcontext['forced_error_message']; |
|
385 | + if (!empty($upcontext['forced_error_message'])) { |
|
386 | + echo $upcontext['forced_error_message']; |
|
387 | + } |
|
369 | 388 | |
370 | 389 | // Show the footer. |
371 | - if (!isset($_GET['xml'])) |
|
372 | - template_upgrade_below(); |
|
373 | - else |
|
374 | - template_xml_below(); |
|
390 | + if (!isset($_GET['xml'])) { |
|
391 | + template_upgrade_below(); |
|
392 | + } else { |
|
393 | + template_xml_below(); |
|
394 | + } |
|
375 | 395 | } |
376 | 396 | |
377 | 397 | |
@@ -383,15 +403,19 @@ discard block |
||
383 | 403 | $seconds = intval($active % 60); |
384 | 404 | |
385 | 405 | $totalTime = ''; |
386 | - if ($hours > 0) |
|
387 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
388 | - if ($minutes > 0) |
|
389 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
390 | - if ($seconds > 0) |
|
391 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
406 | + if ($hours > 0) { |
|
407 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
408 | + } |
|
409 | + if ($minutes > 0) { |
|
410 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
411 | + } |
|
412 | + if ($seconds > 0) { |
|
413 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
414 | + } |
|
392 | 415 | |
393 | - if (!empty($totalTime)) |
|
394 | - echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
416 | + if (!empty($totalTime)) { |
|
417 | + echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
418 | + } |
|
395 | 419 | } |
396 | 420 | |
397 | 421 | // Bang - gone! |
@@ -404,8 +428,9 @@ discard block |
||
404 | 428 | global $upgradeurl, $upcontext, $command_line; |
405 | 429 | |
406 | 430 | // Command line users can't be redirected. |
407 | - if ($command_line) |
|
408 | - upgradeExit(true); |
|
431 | + if ($command_line) { |
|
432 | + upgradeExit(true); |
|
433 | + } |
|
409 | 434 | |
410 | 435 | // Are we providing the core info? |
411 | 436 | if ($addForm) |
@@ -428,19 +453,22 @@ discard block |
||
428 | 453 | global $modSettings, $sourcedir, $smcFunc; |
429 | 454 | |
430 | 455 | // Do the non-SSI stuff... |
431 | - if (function_exists('set_magic_quotes_runtime')) |
|
432 | - @set_magic_quotes_runtime(0); |
|
456 | + if (function_exists('set_magic_quotes_runtime')) { |
|
457 | + @set_magic_quotes_runtime(0); |
|
458 | + } |
|
433 | 459 | |
434 | 460 | error_reporting(E_ALL); |
435 | 461 | define('SMF', 1); |
436 | 462 | |
437 | 463 | // Start the session. |
438 | - if (@ini_get('session.save_handler') == 'user') |
|
439 | - @ini_set('session.save_handler', 'files'); |
|
464 | + if (@ini_get('session.save_handler') == 'user') { |
|
465 | + @ini_set('session.save_handler', 'files'); |
|
466 | + } |
|
440 | 467 | @session_start(); |
441 | 468 | |
442 | - if (empty($smcFunc)) |
|
443 | - $smcFunc = array(); |
|
469 | + if (empty($smcFunc)) { |
|
470 | + $smcFunc = array(); |
|
471 | + } |
|
444 | 472 | |
445 | 473 | // We need this for authentication and some upgrade code |
446 | 474 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -452,32 +480,36 @@ discard block |
||
452 | 480 | initialize_inputs(); |
453 | 481 | |
454 | 482 | // Get the database going! |
455 | - if (empty($db_type) || $db_type == 'mysqli') |
|
456 | - $db_type = 'mysql'; |
|
483 | + if (empty($db_type) || $db_type == 'mysqli') { |
|
484 | + $db_type = 'mysql'; |
|
485 | + } |
|
457 | 486 | |
458 | 487 | if (file_exists($sourcedir . '/Subs-Db-' . $db_type . '.php')) |
459 | 488 | { |
460 | 489 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
461 | 490 | |
462 | 491 | // Make the connection... |
463 | - if (empty($db_connection)) |
|
464 | - $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
465 | - else |
|
466 | - // If we've returned here, ping/reconnect to be safe |
|
492 | + if (empty($db_connection)) { |
|
493 | + $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
494 | + } else { |
|
495 | + // If we've returned here, ping/reconnect to be safe |
|
467 | 496 | $smcFunc['db_ping']($db_connection); |
497 | + } |
|
468 | 498 | |
469 | 499 | // Oh dear god!! |
470 | - if ($db_connection === null) |
|
471 | - die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
500 | + if ($db_connection === null) { |
|
501 | + die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
502 | + } |
|
472 | 503 | |
473 | - if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) |
|
474 | - $smcFunc['db_query']('', ' |
|
504 | + if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) { |
|
505 | + $smcFunc['db_query']('', ' |
|
475 | 506 | SET NAMES {string:db_character_set}', |
476 | 507 | array( |
477 | 508 | 'db_error_skip' => true, |
478 | 509 | 'db_character_set' => $db_character_set, |
479 | 510 | ) |
480 | 511 | ); |
512 | + } |
|
481 | 513 | |
482 | 514 | // Load the modSettings data... |
483 | 515 | $request = $smcFunc['db_query']('', ' |
@@ -488,11 +520,11 @@ discard block |
||
488 | 520 | ) |
489 | 521 | ); |
490 | 522 | $modSettings = array(); |
491 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
492 | - $modSettings[$row['variable']] = $row['value']; |
|
523 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
524 | + $modSettings[$row['variable']] = $row['value']; |
|
525 | + } |
|
493 | 526 | $smcFunc['db_free_result']($request); |
494 | - } |
|
495 | - else |
|
527 | + } else |
|
496 | 528 | { |
497 | 529 | return throw_error('Cannot find ' . $sourcedir . '/Subs-Db-' . $db_type . '.php' . '. Please check you have uploaded all source files and have the correct paths set.'); |
498 | 530 | } |
@@ -506,9 +538,10 @@ discard block |
||
506 | 538 | cleanRequest(); |
507 | 539 | } |
508 | 540 | |
509 | - if (!isset($_GET['substep'])) |
|
510 | - $_GET['substep'] = 0; |
|
511 | -} |
|
541 | + if (!isset($_GET['substep'])) { |
|
542 | + $_GET['substep'] = 0; |
|
543 | + } |
|
544 | + } |
|
512 | 545 | |
513 | 546 | function initialize_inputs() |
514 | 547 | { |
@@ -538,8 +571,9 @@ discard block |
||
538 | 571 | $dh = opendir(dirname(__FILE__)); |
539 | 572 | while ($file = readdir($dh)) |
540 | 573 | { |
541 | - if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) |
|
542 | - @unlink(dirname(__FILE__) . '/' . $file); |
|
574 | + if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) { |
|
575 | + @unlink(dirname(__FILE__) . '/' . $file); |
|
576 | + } |
|
543 | 577 | } |
544 | 578 | closedir($dh); |
545 | 579 | |
@@ -568,8 +602,9 @@ discard block |
||
568 | 602 | $temp = 'upgrade_php?step'; |
569 | 603 | while (strlen($temp) > 4) |
570 | 604 | { |
571 | - if (isset($_GET[$temp])) |
|
572 | - unset($_GET[$temp]); |
|
605 | + if (isset($_GET[$temp])) { |
|
606 | + unset($_GET[$temp]); |
|
607 | + } |
|
573 | 608 | $temp = substr($temp, 1); |
574 | 609 | } |
575 | 610 | |
@@ -596,32 +631,39 @@ discard block |
||
596 | 631 | && @file_exists(dirname(__FILE__) . '/upgrade_2-1_' . $db_type . '.sql'); |
597 | 632 | |
598 | 633 | // Need legacy scripts? |
599 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) |
|
600 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
601 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) |
|
602 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
603 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) |
|
604 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
634 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) { |
|
635 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
636 | + } |
|
637 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) { |
|
638 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
639 | + } |
|
640 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) { |
|
641 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
642 | + } |
|
605 | 643 | |
606 | 644 | // We don't need "-utf8" files anymore... |
607 | 645 | $upcontext['language'] = str_ireplace('-utf8', '', $upcontext['language']); |
608 | 646 | |
609 | 647 | // This needs to exist! |
610 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
611 | - return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
612 | - else |
|
613 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
648 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
649 | + return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
650 | + } else { |
|
651 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
652 | + } |
|
614 | 653 | |
615 | - if (!$check) |
|
616 | - // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
654 | + if (!$check) { |
|
655 | + // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
617 | 656 | return throw_error('The upgrader was unable to find some crucial files.<br><br>Please make sure you uploaded all of the files included in the package, including the Themes, Sources, and other directories.'); |
657 | + } |
|
618 | 658 | |
619 | 659 | // Do they meet the install requirements? |
620 | - if (!php_version_check()) |
|
621 | - return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
660 | + if (!php_version_check()) { |
|
661 | + return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
662 | + } |
|
622 | 663 | |
623 | - if (!db_version_check()) |
|
624 | - return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
664 | + if (!db_version_check()) { |
|
665 | + return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
666 | + } |
|
625 | 667 | |
626 | 668 | // Do some checks to make sure they have proper privileges |
627 | 669 | db_extend('packages'); |
@@ -636,14 +678,16 @@ discard block |
||
636 | 678 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
637 | 679 | |
638 | 680 | // Sorry... we need CREATE, ALTER and DROP |
639 | - if (!$create || !$alter || !$drop) |
|
640 | - return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
681 | + if (!$create || !$alter || !$drop) { |
|
682 | + return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
683 | + } |
|
641 | 684 | |
642 | 685 | // Do a quick version spot check. |
643 | 686 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
644 | 687 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
645 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
646 | - return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
688 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
689 | + return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
690 | + } |
|
647 | 691 | |
648 | 692 | // What absolutely needs to be writable? |
649 | 693 | $writable_files = array( |
@@ -665,12 +709,13 @@ discard block |
||
665 | 709 | quickFileWritable($custom_av_dir); |
666 | 710 | |
667 | 711 | // Are we good now? |
668 | - if (!is_writable($custom_av_dir)) |
|
669 | - return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
670 | - elseif ($need_settings_update) |
|
712 | + if (!is_writable($custom_av_dir)) { |
|
713 | + return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
714 | + } elseif ($need_settings_update) |
|
671 | 715 | { |
672 | - if (!function_exists('cache_put_data')) |
|
673 | - require_once($sourcedir . '/Load.php'); |
|
716 | + if (!function_exists('cache_put_data')) { |
|
717 | + require_once($sourcedir . '/Load.php'); |
|
718 | + } |
|
674 | 719 | updateSettings(array('custom_avatar_dir' => $custom_av_dir)); |
675 | 720 | updateSettings(array('custom_avatar_url' => $custom_av_url)); |
676 | 721 | } |
@@ -679,28 +724,33 @@ discard block |
||
679 | 724 | |
680 | 725 | // Check the cache directory. |
681 | 726 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
682 | - if (!file_exists($cachedir_temp)) |
|
683 | - @mkdir($cachedir_temp); |
|
684 | - if (!file_exists($cachedir_temp)) |
|
685 | - return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
686 | - |
|
687 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
688 | - return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
689 | - elseif (!isset($_GET['skiplang'])) |
|
727 | + if (!file_exists($cachedir_temp)) { |
|
728 | + @mkdir($cachedir_temp); |
|
729 | + } |
|
730 | + if (!file_exists($cachedir_temp)) { |
|
731 | + return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
732 | + } |
|
733 | + |
|
734 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
735 | + return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
736 | + } elseif (!isset($_GET['skiplang'])) |
|
690 | 737 | { |
691 | 738 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
692 | 739 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
693 | 740 | |
694 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
695 | - return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
741 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
742 | + return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
743 | + } |
|
696 | 744 | } |
697 | 745 | |
698 | - if (!makeFilesWritable($writable_files)) |
|
699 | - return false; |
|
746 | + if (!makeFilesWritable($writable_files)) { |
|
747 | + return false; |
|
748 | + } |
|
700 | 749 | |
701 | 750 | // Check agreement.txt. (it may not exist, in which case $boarddir must be writable.) |
702 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
703 | - return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
751 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
752 | + return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
753 | + } |
|
704 | 754 | |
705 | 755 | // Upgrade the agreement. |
706 | 756 | elseif (isset($modSettings['agreement'])) |
@@ -711,8 +761,8 @@ discard block |
||
711 | 761 | } |
712 | 762 | |
713 | 763 | // We're going to check that their board dir setting is right in case they've been moving stuff around. |
714 | - if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) |
|
715 | - $upcontext['warning'] = ' |
|
764 | + if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) { |
|
765 | + $upcontext['warning'] = ' |
|
716 | 766 | It looks as if your board directory settings <em>might</em> be incorrect. Your board directory is currently set to "' . $boarddir . '" but should probably be "' . dirname(__FILE__) . '". Settings.php currently lists your paths as:<br> |
717 | 767 | <ul> |
718 | 768 | <li>Board Directory: ' . $boarddir . '</li> |
@@ -720,10 +770,12 @@ discard block |
||
720 | 770 | <li>Cache Directory: ' . $cachedir_temp . '</li> |
721 | 771 | </ul> |
722 | 772 | If these seem incorrect please open Settings.php in a text editor before proceeding with this upgrade. If they are incorrect due to you moving your forum to a new location please download and execute the <a href="https://download.simplemachines.org/?tools">Repair Settings</a> tool from the Simple Machines website before continuing.'; |
773 | + } |
|
723 | 774 | |
724 | 775 | // Either we're logged in or we're going to present the login. |
725 | - if (checkLogin()) |
|
726 | - return true; |
|
776 | + if (checkLogin()) { |
|
777 | + return true; |
|
778 | + } |
|
727 | 779 | |
728 | 780 | $upcontext += createToken('login'); |
729 | 781 | |
@@ -737,15 +789,17 @@ discard block |
||
737 | 789 | global $smcFunc, $db_type, $support_js; |
738 | 790 | |
739 | 791 | // Don't bother if the security is disabled. |
740 | - if ($disable_security) |
|
741 | - return true; |
|
792 | + if ($disable_security) { |
|
793 | + return true; |
|
794 | + } |
|
742 | 795 | |
743 | 796 | // Are we trying to login? |
744 | 797 | if (isset($_POST['contbutt']) && (!empty($_POST['user']))) |
745 | 798 | { |
746 | 799 | // If we've disabled security pick a suitable name! |
747 | - if (empty($_POST['user'])) |
|
748 | - $_POST['user'] = 'Administrator'; |
|
800 | + if (empty($_POST['user'])) { |
|
801 | + $_POST['user'] = 'Administrator'; |
|
802 | + } |
|
749 | 803 | |
750 | 804 | // Before 2.0 these column names were different! |
751 | 805 | $oldDB = false; |
@@ -760,16 +814,17 @@ discard block |
||
760 | 814 | 'db_error_skip' => true, |
761 | 815 | ) |
762 | 816 | ); |
763 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
764 | - $oldDB = true; |
|
817 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
818 | + $oldDB = true; |
|
819 | + } |
|
765 | 820 | $smcFunc['db_free_result']($request); |
766 | 821 | } |
767 | 822 | |
768 | 823 | // Get what we believe to be their details. |
769 | 824 | if (!$disable_security) |
770 | 825 | { |
771 | - if ($oldDB) |
|
772 | - $request = $smcFunc['db_query']('', ' |
|
826 | + if ($oldDB) { |
|
827 | + $request = $smcFunc['db_query']('', ' |
|
773 | 828 | SELECT id_member, memberName AS member_name, passwd, id_group, |
774 | 829 | additionalGroups AS additional_groups, lngfile |
775 | 830 | FROM {db_prefix}members |
@@ -779,8 +834,8 @@ discard block |
||
779 | 834 | 'db_error_skip' => true, |
780 | 835 | ) |
781 | 836 | ); |
782 | - else |
|
783 | - $request = $smcFunc['db_query']('', ' |
|
837 | + } else { |
|
838 | + $request = $smcFunc['db_query']('', ' |
|
784 | 839 | SELECT id_member, member_name, passwd, id_group, additional_groups, lngfile |
785 | 840 | FROM {db_prefix}members |
786 | 841 | WHERE member_name = {string:member_name}', |
@@ -789,6 +844,7 @@ discard block |
||
789 | 844 | 'db_error_skip' => true, |
790 | 845 | ) |
791 | 846 | ); |
847 | + } |
|
792 | 848 | if ($smcFunc['db_num_rows']($request) != 0) |
793 | 849 | { |
794 | 850 | list ($id_member, $name, $password, $id_group, $addGroups, $user_language) = $smcFunc['db_fetch_row']($request); |
@@ -796,16 +852,17 @@ discard block |
||
796 | 852 | $groups = explode(',', $addGroups); |
797 | 853 | $groups[] = $id_group; |
798 | 854 | |
799 | - foreach ($groups as $k => $v) |
|
800 | - $groups[$k] = (int) $v; |
|
855 | + foreach ($groups as $k => $v) { |
|
856 | + $groups[$k] = (int) $v; |
|
857 | + } |
|
801 | 858 | |
802 | 859 | $sha_passwd = sha1(strtolower($name) . un_htmlspecialchars($_REQUEST['passwrd'])); |
803 | 860 | |
804 | 861 | // We don't use "-utf8" anymore... |
805 | 862 | $user_language = str_ireplace('-utf8', '', $user_language); |
863 | + } else { |
|
864 | + $upcontext['username_incorrect'] = true; |
|
806 | 865 | } |
807 | - else |
|
808 | - $upcontext['username_incorrect'] = true; |
|
809 | 866 | $smcFunc['db_free_result']($request); |
810 | 867 | } |
811 | 868 | $upcontext['username'] = $_POST['user']; |
@@ -815,13 +872,14 @@ discard block |
||
815 | 872 | { |
816 | 873 | $upcontext['upgrade_status']['js'] = 1; |
817 | 874 | $support_js = 1; |
875 | + } else { |
|
876 | + $support_js = 0; |
|
818 | 877 | } |
819 | - else |
|
820 | - $support_js = 0; |
|
821 | 878 | |
822 | 879 | // Note down the version we are coming from. |
823 | - if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) |
|
824 | - $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
880 | + if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) { |
|
881 | + $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
882 | + } |
|
825 | 883 | |
826 | 884 | // Didn't get anywhere? |
827 | 885 | if (!$disable_security && (empty($sha_passwd) || (!empty($password) ? $password : '') != $sha_passwd) && !hash_verify_password((!empty($name) ? $name : ''), $_REQUEST['passwrd'], (!empty($password) ? $password : '')) && empty($upcontext['username_incorrect'])) |
@@ -855,15 +913,15 @@ discard block |
||
855 | 913 | 'db_error_skip' => true, |
856 | 914 | ) |
857 | 915 | ); |
858 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
859 | - return throw_error('You need to be an admin to perform an upgrade!'); |
|
916 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
917 | + return throw_error('You need to be an admin to perform an upgrade!'); |
|
918 | + } |
|
860 | 919 | $smcFunc['db_free_result']($request); |
861 | 920 | } |
862 | 921 | |
863 | 922 | $upcontext['user']['id'] = $id_member; |
864 | 923 | $upcontext['user']['name'] = $name; |
865 | - } |
|
866 | - else |
|
924 | + } else |
|
867 | 925 | { |
868 | 926 | $upcontext['user']['id'] = 1; |
869 | 927 | $upcontext['user']['name'] = 'Administrator'; |
@@ -879,11 +937,11 @@ discard block |
||
879 | 937 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $user_language . '.php')), 0, 4096); |
880 | 938 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
881 | 939 | |
882 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
883 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
884 | - elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) |
|
885 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
886 | - else |
|
940 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
941 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
942 | + } elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) { |
|
943 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
944 | + } else |
|
887 | 945 | { |
888 | 946 | // Set this as the new language. |
889 | 947 | $upcontext['language'] = $user_language; |
@@ -927,8 +985,9 @@ discard block |
||
927 | 985 | unset($member_columns); |
928 | 986 | |
929 | 987 | // If we've not submitted then we're done. |
930 | - if (empty($_POST['upcont'])) |
|
931 | - return false; |
|
988 | + if (empty($_POST['upcont'])) { |
|
989 | + return false; |
|
990 | + } |
|
932 | 991 | |
933 | 992 | // Firstly, if they're enabling SM stat collection just do it. |
934 | 993 | if (!empty($_POST['stats']) && (substr($boardurl, 0, 16) != 'http://localhost' || substr($boardurl, 0, 16) != 'https://localhost') && empty($modSettings['allow_sm_stats'])) |
@@ -943,25 +1002,26 @@ discard block |
||
943 | 1002 | fwrite($fp, $out); |
944 | 1003 | |
945 | 1004 | $return_data = ''; |
946 | - while (!feof($fp)) |
|
947 | - $return_data .= fgets($fp, 128); |
|
1005 | + while (!feof($fp)) { |
|
1006 | + $return_data .= fgets($fp, 128); |
|
1007 | + } |
|
948 | 1008 | |
949 | 1009 | fclose($fp); |
950 | 1010 | |
951 | 1011 | // Get the unique site ID. |
952 | 1012 | preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID); |
953 | 1013 | |
954 | - if (!empty($ID[1])) |
|
955 | - $smcFunc['db_insert']('replace', |
|
1014 | + if (!empty($ID[1])) { |
|
1015 | + $smcFunc['db_insert']('replace', |
|
956 | 1016 | $db_prefix . 'settings', |
957 | 1017 | array('variable' => 'string', 'value' => 'string'), |
958 | 1018 | array('allow_sm_stats', $ID[1]), |
959 | 1019 | array('variable') |
960 | 1020 | ); |
1021 | + } |
|
961 | 1022 | } |
962 | - } |
|
963 | - else |
|
964 | - $smcFunc['db_query']('', ' |
|
1023 | + } else { |
|
1024 | + $smcFunc['db_query']('', ' |
|
965 | 1025 | DELETE FROM {db_prefix}settings |
966 | 1026 | WHERE variable = {string:allow_sm_stats}', |
967 | 1027 | array( |
@@ -969,6 +1029,7 @@ discard block |
||
969 | 1029 | 'db_error_skip' => true, |
970 | 1030 | ) |
971 | 1031 | ); |
1032 | + } |
|
972 | 1033 | |
973 | 1034 | // Deleting old karma stuff? |
974 | 1035 | if (!empty($_POST['delete_karma'])) |
@@ -983,20 +1044,22 @@ discard block |
||
983 | 1044 | ); |
984 | 1045 | |
985 | 1046 | // Cleaning up old karma member settings. |
986 | - if ($upcontext['karma_installed']['good']) |
|
987 | - $smcFunc['db_query']('', ' |
|
1047 | + if ($upcontext['karma_installed']['good']) { |
|
1048 | + $smcFunc['db_query']('', ' |
|
988 | 1049 | ALTER TABLE {db_prefix}members |
989 | 1050 | DROP karma_good', |
990 | 1051 | array() |
991 | 1052 | ); |
1053 | + } |
|
992 | 1054 | |
993 | 1055 | // Does karma bad was enable? |
994 | - if ($upcontext['karma_installed']['bad']) |
|
995 | - $smcFunc['db_query']('', ' |
|
1056 | + if ($upcontext['karma_installed']['bad']) { |
|
1057 | + $smcFunc['db_query']('', ' |
|
996 | 1058 | ALTER TABLE {db_prefix}members |
997 | 1059 | DROP karma_bad', |
998 | 1060 | array() |
999 | 1061 | ); |
1062 | + } |
|
1000 | 1063 | |
1001 | 1064 | // Cleaning up old karma permissions. |
1002 | 1065 | $smcFunc['db_query']('', ' |
@@ -1009,26 +1072,29 @@ discard block |
||
1009 | 1072 | } |
1010 | 1073 | |
1011 | 1074 | // Emptying the error log? |
1012 | - if (!empty($_POST['empty_error'])) |
|
1013 | - $smcFunc['db_query']('truncate_table', ' |
|
1075 | + if (!empty($_POST['empty_error'])) { |
|
1076 | + $smcFunc['db_query']('truncate_table', ' |
|
1014 | 1077 | TRUNCATE {db_prefix}log_errors', |
1015 | 1078 | array( |
1016 | 1079 | ) |
1017 | 1080 | ); |
1081 | + } |
|
1018 | 1082 | |
1019 | 1083 | $changes = array(); |
1020 | 1084 | |
1021 | 1085 | // Add proxy settings. |
1022 | - if (!isset($GLOBALS['image_proxy_maxsize'])) |
|
1023 | - $changes += array( |
|
1086 | + if (!isset($GLOBALS['image_proxy_maxsize'])) { |
|
1087 | + $changes += array( |
|
1024 | 1088 | 'image_proxy_secret' => '\'' . substr(sha1(mt_rand()), 0, 20) . '\'', |
1025 | 1089 | 'image_proxy_maxsize' => 5190, |
1026 | 1090 | 'image_proxy_enabled' => 0, |
1027 | 1091 | ); |
1092 | + } |
|
1028 | 1093 | |
1029 | 1094 | // If we're overriding the language follow it through. |
1030 | - if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) |
|
1031 | - $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
1095 | + if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) { |
|
1096 | + $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
1097 | + } |
|
1032 | 1098 | |
1033 | 1099 | if (!empty($_POST['maint'])) |
1034 | 1100 | { |
@@ -1040,30 +1106,34 @@ discard block |
||
1040 | 1106 | { |
1041 | 1107 | $changes['mtitle'] = '\'' . addslashes($_POST['maintitle']) . '\''; |
1042 | 1108 | $changes['mmessage'] = '\'' . addslashes($_POST['mainmessage']) . '\''; |
1043 | - } |
|
1044 | - else |
|
1109 | + } else |
|
1045 | 1110 | { |
1046 | 1111 | $changes['mtitle'] = '\'Upgrading the forum...\''; |
1047 | 1112 | $changes['mmessage'] = '\'Don\\\'t worry, we will be back shortly with an updated forum. It will only be a minute ;).\''; |
1048 | 1113 | } |
1049 | 1114 | } |
1050 | 1115 | |
1051 | - if ($command_line) |
|
1052 | - echo ' * Updating Settings.php...'; |
|
1116 | + if ($command_line) { |
|
1117 | + echo ' * Updating Settings.php...'; |
|
1118 | + } |
|
1053 | 1119 | |
1054 | 1120 | // Fix some old paths. |
1055 | - if (substr($boarddir, 0, 1) == '.') |
|
1056 | - $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
1121 | + if (substr($boarddir, 0, 1) == '.') { |
|
1122 | + $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
1123 | + } |
|
1057 | 1124 | |
1058 | - if (substr($sourcedir, 0, 1) == '.') |
|
1059 | - $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
1125 | + if (substr($sourcedir, 0, 1) == '.') { |
|
1126 | + $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
1127 | + } |
|
1060 | 1128 | |
1061 | - if (empty($cachedir) || substr($cachedir, 0, 1) == '.') |
|
1062 | - $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
1129 | + if (empty($cachedir) || substr($cachedir, 0, 1) == '.') { |
|
1130 | + $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
1131 | + } |
|
1063 | 1132 | |
1064 | 1133 | // Not had the database type added before? |
1065 | - if (empty($db_type)) |
|
1066 | - $changes['db_type'] = 'mysql'; |
|
1134 | + if (empty($db_type)) { |
|
1135 | + $changes['db_type'] = 'mysql'; |
|
1136 | + } |
|
1067 | 1137 | |
1068 | 1138 | // If they have a "host:port" setup for the host, split that into separate values |
1069 | 1139 | // You should never have a : in the hostname if you're not on MySQL, but better safe than sorry |
@@ -1074,32 +1144,36 @@ discard block |
||
1074 | 1144 | $changes['db_server'] = '\'' . $db_server . '\''; |
1075 | 1145 | |
1076 | 1146 | // Only set this if we're not using the default port |
1077 | - if ($db_port != ini_get('mysqli.default_port')) |
|
1078 | - $changes['db_port'] = (int) $db_port; |
|
1079 | - } |
|
1080 | - elseif (!empty($db_port)) |
|
1147 | + if ($db_port != ini_get('mysqli.default_port')) { |
|
1148 | + $changes['db_port'] = (int) $db_port; |
|
1149 | + } |
|
1150 | + } elseif (!empty($db_port)) |
|
1081 | 1151 | { |
1082 | 1152 | // If db_port is set and is the same as the default, set it to '' |
1083 | 1153 | if ($db_type == 'mysql') |
1084 | 1154 | { |
1085 | - if ($db_port == ini_get('mysqli.default_port')) |
|
1086 | - $changes['db_port'] = '\'\''; |
|
1087 | - elseif ($db_type == 'postgresql' && $db_port == 5432) |
|
1088 | - $changes['db_port'] = '\'\''; |
|
1155 | + if ($db_port == ini_get('mysqli.default_port')) { |
|
1156 | + $changes['db_port'] = '\'\''; |
|
1157 | + } elseif ($db_type == 'postgresql' && $db_port == 5432) { |
|
1158 | + $changes['db_port'] = '\'\''; |
|
1159 | + } |
|
1089 | 1160 | } |
1090 | 1161 | } |
1091 | 1162 | |
1092 | 1163 | // Maybe we haven't had this option yet? |
1093 | - if (empty($packagesdir)) |
|
1094 | - $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
1164 | + if (empty($packagesdir)) { |
|
1165 | + $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
1166 | + } |
|
1095 | 1167 | |
1096 | 1168 | // Add support for $tasksdir var. |
1097 | - if (empty($tasksdir)) |
|
1098 | - $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
1169 | + if (empty($tasksdir)) { |
|
1170 | + $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
1171 | + } |
|
1099 | 1172 | |
1100 | 1173 | // Make sure we fix the language as well. |
1101 | - if (stristr($language, '-utf8')) |
|
1102 | - $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
1174 | + if (stristr($language, '-utf8')) { |
|
1175 | + $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
1176 | + } |
|
1103 | 1177 | |
1104 | 1178 | // @todo Maybe change the cookie name if going to 1.1, too? |
1105 | 1179 | |
@@ -1107,8 +1181,9 @@ discard block |
||
1107 | 1181 | require_once($sourcedir . '/Subs-Admin.php'); |
1108 | 1182 | updateSettingsFile($changes); |
1109 | 1183 | |
1110 | - if ($command_line) |
|
1111 | - echo ' Successful.' . "\n"; |
|
1184 | + if ($command_line) { |
|
1185 | + echo ' Successful.' . "\n"; |
|
1186 | + } |
|
1112 | 1187 | |
1113 | 1188 | // Are we doing debug? |
1114 | 1189 | if (isset($_POST['debug'])) |
@@ -1118,8 +1193,9 @@ discard block |
||
1118 | 1193 | } |
1119 | 1194 | |
1120 | 1195 | // If we're not backing up then jump one. |
1121 | - if (empty($_POST['backup'])) |
|
1122 | - $upcontext['current_step']++; |
|
1196 | + if (empty($_POST['backup'])) { |
|
1197 | + $upcontext['current_step']++; |
|
1198 | + } |
|
1123 | 1199 | |
1124 | 1200 | // If we've got here then let's proceed to the next step! |
1125 | 1201 | return true; |
@@ -1134,8 +1210,9 @@ discard block |
||
1134 | 1210 | $upcontext['page_title'] = 'Backup Database'; |
1135 | 1211 | |
1136 | 1212 | // Done it already - js wise? |
1137 | - if (!empty($_POST['backup_done'])) |
|
1138 | - return true; |
|
1213 | + if (!empty($_POST['backup_done'])) { |
|
1214 | + return true; |
|
1215 | + } |
|
1139 | 1216 | |
1140 | 1217 | // Some useful stuff here. |
1141 | 1218 | db_extend(); |
@@ -1149,9 +1226,10 @@ discard block |
||
1149 | 1226 | $tables = $smcFunc['db_list_tables']($db, $filter); |
1150 | 1227 | |
1151 | 1228 | $table_names = array(); |
1152 | - foreach ($tables as $table) |
|
1153 | - if (substr($table, 0, 7) !== 'backup_') |
|
1229 | + foreach ($tables as $table) { |
|
1230 | + if (substr($table, 0, 7) !== 'backup_') |
|
1154 | 1231 | $table_names[] = $table; |
1232 | + } |
|
1155 | 1233 | |
1156 | 1234 | $upcontext['table_count'] = count($table_names); |
1157 | 1235 | $upcontext['cur_table_num'] = $_GET['substep']; |
@@ -1161,12 +1239,14 @@ discard block |
||
1161 | 1239 | $file_steps = $upcontext['table_count']; |
1162 | 1240 | |
1163 | 1241 | // What ones have we already done? |
1164 | - foreach ($table_names as $id => $table) |
|
1165 | - if ($id < $_GET['substep']) |
|
1242 | + foreach ($table_names as $id => $table) { |
|
1243 | + if ($id < $_GET['substep']) |
|
1166 | 1244 | $upcontext['previous_tables'][] = $table; |
1245 | + } |
|
1167 | 1246 | |
1168 | - if ($command_line) |
|
1169 | - echo 'Backing Up Tables.'; |
|
1247 | + if ($command_line) { |
|
1248 | + echo 'Backing Up Tables.'; |
|
1249 | + } |
|
1170 | 1250 | |
1171 | 1251 | // If we don't support javascript we backup here. |
1172 | 1252 | if (!$support_js || isset($_GET['xml'])) |
@@ -1185,8 +1265,9 @@ discard block |
||
1185 | 1265 | backupTable($table_names[$substep]); |
1186 | 1266 | |
1187 | 1267 | // If this is XML to keep it nice for the user do one table at a time anyway! |
1188 | - if (isset($_GET['xml'])) |
|
1189 | - return upgradeExit(); |
|
1268 | + if (isset($_GET['xml'])) { |
|
1269 | + return upgradeExit(); |
|
1270 | + } |
|
1190 | 1271 | } |
1191 | 1272 | |
1192 | 1273 | if ($command_line) |
@@ -1219,9 +1300,10 @@ discard block |
||
1219 | 1300 | |
1220 | 1301 | $smcFunc['db_backup_table']($table, 'backup_' . $table); |
1221 | 1302 | |
1222 | - if ($command_line) |
|
1223 | - echo ' done.'; |
|
1224 | -} |
|
1303 | + if ($command_line) { |
|
1304 | + echo ' done.'; |
|
1305 | + } |
|
1306 | + } |
|
1225 | 1307 | |
1226 | 1308 | // Step 2: Everything. |
1227 | 1309 | function DatabaseChanges() |
@@ -1230,8 +1312,9 @@ discard block |
||
1230 | 1312 | global $upcontext, $support_js, $db_type; |
1231 | 1313 | |
1232 | 1314 | // Have we just completed this? |
1233 | - if (!empty($_POST['database_done'])) |
|
1234 | - return true; |
|
1315 | + if (!empty($_POST['database_done'])) { |
|
1316 | + return true; |
|
1317 | + } |
|
1235 | 1318 | |
1236 | 1319 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'database_xml' : 'database_changes'; |
1237 | 1320 | $upcontext['page_title'] = 'Database Changes'; |
@@ -1246,15 +1329,16 @@ discard block |
||
1246 | 1329 | ); |
1247 | 1330 | |
1248 | 1331 | // How many files are there in total? |
1249 | - if (isset($_GET['filecount'])) |
|
1250 | - $upcontext['file_count'] = (int) $_GET['filecount']; |
|
1251 | - else |
|
1332 | + if (isset($_GET['filecount'])) { |
|
1333 | + $upcontext['file_count'] = (int) $_GET['filecount']; |
|
1334 | + } else |
|
1252 | 1335 | { |
1253 | 1336 | $upcontext['file_count'] = 0; |
1254 | 1337 | foreach ($files as $file) |
1255 | 1338 | { |
1256 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) |
|
1257 | - $upcontext['file_count']++; |
|
1339 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) { |
|
1340 | + $upcontext['file_count']++; |
|
1341 | + } |
|
1258 | 1342 | } |
1259 | 1343 | } |
1260 | 1344 | |
@@ -1264,9 +1348,9 @@ discard block |
||
1264 | 1348 | $upcontext['cur_file_num'] = 0; |
1265 | 1349 | foreach ($files as $file) |
1266 | 1350 | { |
1267 | - if ($did_not_do) |
|
1268 | - $did_not_do--; |
|
1269 | - else |
|
1351 | + if ($did_not_do) { |
|
1352 | + $did_not_do--; |
|
1353 | + } else |
|
1270 | 1354 | { |
1271 | 1355 | $upcontext['cur_file_num']++; |
1272 | 1356 | $upcontext['cur_file_name'] = $file[0]; |
@@ -1293,12 +1377,13 @@ discard block |
||
1293 | 1377 | // Flag to move on to the next. |
1294 | 1378 | $upcontext['completed_step'] = true; |
1295 | 1379 | // Did we complete the whole file? |
1296 | - if ($nextFile) |
|
1297 | - $upcontext['current_debug_item_num'] = -1; |
|
1380 | + if ($nextFile) { |
|
1381 | + $upcontext['current_debug_item_num'] = -1; |
|
1382 | + } |
|
1298 | 1383 | return upgradeExit(); |
1384 | + } elseif ($support_js) { |
|
1385 | + break; |
|
1299 | 1386 | } |
1300 | - elseif ($support_js) |
|
1301 | - break; |
|
1302 | 1387 | } |
1303 | 1388 | // Set the progress bar to be right as if we had - even if we hadn't... |
1304 | 1389 | $upcontext['step_progress'] = ($upcontext['cur_file_num'] / $upcontext['file_count']) * 100; |
@@ -1323,8 +1408,9 @@ discard block |
||
1323 | 1408 | global $command_line, $language, $upcontext, $boarddir, $sourcedir, $forum_version, $user_info, $maintenance, $smcFunc, $db_type; |
1324 | 1409 | |
1325 | 1410 | // Now it's nice to have some of the basic SMF source files. |
1326 | - if (!isset($_GET['ssi']) && !$command_line) |
|
1327 | - redirectLocation('&ssi=1'); |
|
1411 | + if (!isset($_GET['ssi']) && !$command_line) { |
|
1412 | + redirectLocation('&ssi=1'); |
|
1413 | + } |
|
1328 | 1414 | |
1329 | 1415 | $upcontext['sub_template'] = 'upgrade_complete'; |
1330 | 1416 | $upcontext['page_title'] = 'Upgrade Complete'; |
@@ -1340,14 +1426,16 @@ discard block |
||
1340 | 1426 | // Are we in maintenance mode? |
1341 | 1427 | if (isset($upcontext['user']['main'])) |
1342 | 1428 | { |
1343 | - if ($command_line) |
|
1344 | - echo ' * '; |
|
1429 | + if ($command_line) { |
|
1430 | + echo ' * '; |
|
1431 | + } |
|
1345 | 1432 | $upcontext['removed_maintenance'] = true; |
1346 | 1433 | $changes['maintenance'] = $upcontext['user']['main']; |
1347 | 1434 | } |
1348 | 1435 | // Otherwise if somehow we are in 2 let's go to 1. |
1349 | - elseif (!empty($maintenance) && $maintenance == 2) |
|
1350 | - $changes['maintenance'] = 1; |
|
1436 | + elseif (!empty($maintenance) && $maintenance == 2) { |
|
1437 | + $changes['maintenance'] = 1; |
|
1438 | + } |
|
1351 | 1439 | |
1352 | 1440 | // Wipe this out... |
1353 | 1441 | $upcontext['user'] = array(); |
@@ -1362,9 +1450,9 @@ discard block |
||
1362 | 1450 | $upcontext['can_delete_script'] = is_writable(dirname(__FILE__)) || is_writable(__FILE__); |
1363 | 1451 | |
1364 | 1452 | // Now is the perfect time to fetch the SM files. |
1365 | - if ($command_line) |
|
1366 | - cli_scheduled_fetchSMfiles(); |
|
1367 | - else |
|
1453 | + if ($command_line) { |
|
1454 | + cli_scheduled_fetchSMfiles(); |
|
1455 | + } else |
|
1368 | 1456 | { |
1369 | 1457 | require_once($sourcedir . '/ScheduledTasks.php'); |
1370 | 1458 | $forum_version = SMF_VERSION; // The variable is usually defined in index.php so lets just use the constant to do it for us. |
@@ -1372,8 +1460,9 @@ discard block |
||
1372 | 1460 | } |
1373 | 1461 | |
1374 | 1462 | // Log what we've done. |
1375 | - if (empty($user_info['id'])) |
|
1376 | - $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
1463 | + if (empty($user_info['id'])) { |
|
1464 | + $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
1465 | + } |
|
1377 | 1466 | |
1378 | 1467 | // Log the action manually, so CLI still works. |
1379 | 1468 | $smcFunc['db_insert']('', |
@@ -1392,8 +1481,9 @@ discard block |
||
1392 | 1481 | |
1393 | 1482 | // Save the current database version. |
1394 | 1483 | $server_version = $smcFunc['db_server_info'](); |
1395 | - if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) |
|
1396 | - updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1484 | + if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) { |
|
1485 | + updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1486 | + } |
|
1397 | 1487 | |
1398 | 1488 | if ($command_line) |
1399 | 1489 | { |
@@ -1405,8 +1495,9 @@ discard block |
||
1405 | 1495 | |
1406 | 1496 | // Make sure it says we're done. |
1407 | 1497 | $upcontext['overall_percent'] = 100; |
1408 | - if (isset($upcontext['step_progress'])) |
|
1409 | - unset($upcontext['step_progress']); |
|
1498 | + if (isset($upcontext['step_progress'])) { |
|
1499 | + unset($upcontext['step_progress']); |
|
1500 | + } |
|
1410 | 1501 | |
1411 | 1502 | $_GET['substep'] = 0; |
1412 | 1503 | return false; |
@@ -1417,8 +1508,9 @@ discard block |
||
1417 | 1508 | { |
1418 | 1509 | global $sourcedir, $language, $forum_version, $modSettings, $smcFunc; |
1419 | 1510 | |
1420 | - if (empty($modSettings['time_format'])) |
|
1421 | - $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
1511 | + if (empty($modSettings['time_format'])) { |
|
1512 | + $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
1513 | + } |
|
1422 | 1514 | |
1423 | 1515 | // What files do we want to get |
1424 | 1516 | $request = $smcFunc['db_query']('', ' |
@@ -1452,8 +1544,9 @@ discard block |
||
1452 | 1544 | $file_data = fetch_web_data($url); |
1453 | 1545 | |
1454 | 1546 | // If we got an error - give up - the site might be down. |
1455 | - if ($file_data === false) |
|
1456 | - return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
1547 | + if ($file_data === false) { |
|
1548 | + return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
1549 | + } |
|
1457 | 1550 | |
1458 | 1551 | // Save the file to the database. |
1459 | 1552 | $smcFunc['db_query']('substring', ' |
@@ -1495,8 +1588,9 @@ discard block |
||
1495 | 1588 | $themeData = array(); |
1496 | 1589 | foreach ($values as $variable => $value) |
1497 | 1590 | { |
1498 | - if (!isset($value) || $value === null) |
|
1499 | - $value = 0; |
|
1591 | + if (!isset($value) || $value === null) { |
|
1592 | + $value = 0; |
|
1593 | + } |
|
1500 | 1594 | |
1501 | 1595 | $themeData[] = array(0, 1, $variable, $value); |
1502 | 1596 | } |
@@ -1525,8 +1619,9 @@ discard block |
||
1525 | 1619 | |
1526 | 1620 | foreach ($values as $variable => $value) |
1527 | 1621 | { |
1528 | - if (empty($modSettings[$value[0]])) |
|
1529 | - continue; |
|
1622 | + if (empty($modSettings[$value[0]])) { |
|
1623 | + continue; |
|
1624 | + } |
|
1530 | 1625 | |
1531 | 1626 | $smcFunc['db_query']('', ' |
1532 | 1627 | INSERT IGNORE INTO {db_prefix}themes |
@@ -1612,19 +1707,21 @@ discard block |
||
1612 | 1707 | set_error_handler( |
1613 | 1708 | function ($errno, $errstr, $errfile, $errline) use ($support_js) |
1614 | 1709 | { |
1615 | - if ($support_js) |
|
1616 | - return true; |
|
1617 | - else |
|
1618 | - echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
1710 | + if ($support_js) { |
|
1711 | + return true; |
|
1712 | + } else { |
|
1713 | + echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
1714 | + } |
|
1619 | 1715 | } |
1620 | 1716 | ); |
1621 | 1717 | |
1622 | 1718 | // If we're on MySQL, set {db_collation}; this approach is used throughout upgrade_2-0_mysql.php to set new tables to utf8 |
1623 | 1719 | // Note it is expected to be in the format: ENGINE=MyISAM{$db_collation}; |
1624 | - if ($db_type == 'mysql') |
|
1625 | - $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
1626 | - else |
|
1627 | - $db_collation = ''; |
|
1720 | + if ($db_type == 'mysql') { |
|
1721 | + $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
1722 | + } else { |
|
1723 | + $db_collation = ''; |
|
1724 | + } |
|
1628 | 1725 | |
1629 | 1726 | $endl = $command_line ? "\n" : '<br>' . "\n"; |
1630 | 1727 | |
@@ -1636,8 +1733,9 @@ discard block |
||
1636 | 1733 | $last_step = ''; |
1637 | 1734 | |
1638 | 1735 | // Make sure all newly created tables will have the proper characters set; this approach is used throughout upgrade_2-1_mysql.php |
1639 | - if (isset($db_character_set) && $db_character_set === 'utf8') |
|
1640 | - $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
1736 | + if (isset($db_character_set) && $db_character_set === 'utf8') { |
|
1737 | + $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
1738 | + } |
|
1641 | 1739 | |
1642 | 1740 | // Count the total number of steps within this file - for progress. |
1643 | 1741 | $file_steps = substr_count(implode('', $lines), '---#'); |
@@ -1657,15 +1755,18 @@ discard block |
||
1657 | 1755 | $do_current = $substep >= $_GET['substep']; |
1658 | 1756 | |
1659 | 1757 | // Get rid of any comments in the beginning of the line... |
1660 | - if (substr(trim($line), 0, 2) === '/*') |
|
1661 | - $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
1758 | + if (substr(trim($line), 0, 2) === '/*') { |
|
1759 | + $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
1760 | + } |
|
1662 | 1761 | |
1663 | 1762 | // Always flush. Flush, flush, flush. Flush, flush, flush, flush! FLUSH! |
1664 | - if ($is_debug && !$support_js && $command_line) |
|
1665 | - flush(); |
|
1763 | + if ($is_debug && !$support_js && $command_line) { |
|
1764 | + flush(); |
|
1765 | + } |
|
1666 | 1766 | |
1667 | - if (trim($line) === '') |
|
1668 | - continue; |
|
1767 | + if (trim($line) === '') { |
|
1768 | + continue; |
|
1769 | + } |
|
1669 | 1770 | |
1670 | 1771 | if (trim(substr($line, 0, 3)) === '---') |
1671 | 1772 | { |
@@ -1675,8 +1776,9 @@ discard block |
||
1675 | 1776 | if (trim($current_data) != '' && $type !== '}') |
1676 | 1777 | { |
1677 | 1778 | $upcontext['error_message'] = 'Error in upgrade script - line ' . $line_number . '!' . $endl; |
1678 | - if ($command_line) |
|
1679 | - echo $upcontext['error_message']; |
|
1779 | + if ($command_line) { |
|
1780 | + echo $upcontext['error_message']; |
|
1781 | + } |
|
1680 | 1782 | } |
1681 | 1783 | |
1682 | 1784 | if ($type == ' ') |
@@ -1694,17 +1796,18 @@ discard block |
||
1694 | 1796 | if ($do_current) |
1695 | 1797 | { |
1696 | 1798 | $upcontext['actioned_items'][] = $last_step; |
1697 | - if ($command_line) |
|
1698 | - echo ' * '; |
|
1799 | + if ($command_line) { |
|
1800 | + echo ' * '; |
|
1801 | + } |
|
1699 | 1802 | } |
1700 | - } |
|
1701 | - elseif ($type == '#') |
|
1803 | + } elseif ($type == '#') |
|
1702 | 1804 | { |
1703 | 1805 | $upcontext['step_progress'] += (100 / $upcontext['file_count']) / $file_steps; |
1704 | 1806 | |
1705 | 1807 | $upcontext['current_debug_item_num']++; |
1706 | - if (trim($line) != '---#') |
|
1707 | - $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1808 | + if (trim($line) != '---#') { |
|
1809 | + $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1810 | + } |
|
1708 | 1811 | |
1709 | 1812 | // Have we already done something? |
1710 | 1813 | if (isset($_GET['xml']) && $done_something) |
@@ -1715,34 +1818,36 @@ discard block |
||
1715 | 1818 | |
1716 | 1819 | if ($do_current) |
1717 | 1820 | { |
1718 | - if (trim($line) == '---#' && $command_line) |
|
1719 | - echo ' done.', $endl; |
|
1720 | - elseif ($command_line) |
|
1721 | - echo ' +++ ', rtrim(substr($line, 4)); |
|
1722 | - elseif (trim($line) != '---#') |
|
1821 | + if (trim($line) == '---#' && $command_line) { |
|
1822 | + echo ' done.', $endl; |
|
1823 | + } elseif ($command_line) { |
|
1824 | + echo ' +++ ', rtrim(substr($line, 4)); |
|
1825 | + } elseif (trim($line) != '---#') |
|
1723 | 1826 | { |
1724 | - if ($is_debug) |
|
1725 | - $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1827 | + if ($is_debug) { |
|
1828 | + $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1829 | + } |
|
1726 | 1830 | } |
1727 | 1831 | } |
1728 | 1832 | |
1729 | 1833 | if ($substep < $_GET['substep'] && $substep + 1 >= $_GET['substep']) |
1730 | 1834 | { |
1731 | - if ($command_line) |
|
1732 | - echo ' * '; |
|
1733 | - else |
|
1734 | - $upcontext['actioned_items'][] = $last_step; |
|
1835 | + if ($command_line) { |
|
1836 | + echo ' * '; |
|
1837 | + } else { |
|
1838 | + $upcontext['actioned_items'][] = $last_step; |
|
1839 | + } |
|
1735 | 1840 | } |
1736 | 1841 | |
1737 | 1842 | // Small step - only if we're actually doing stuff. |
1738 | - if ($do_current) |
|
1739 | - nextSubstep(++$substep); |
|
1740 | - else |
|
1741 | - $substep++; |
|
1742 | - } |
|
1743 | - elseif ($type == '{') |
|
1744 | - $current_type = 'code'; |
|
1745 | - elseif ($type == '}') |
|
1843 | + if ($do_current) { |
|
1844 | + nextSubstep(++$substep); |
|
1845 | + } else { |
|
1846 | + $substep++; |
|
1847 | + } |
|
1848 | + } elseif ($type == '{') { |
|
1849 | + $current_type = 'code'; |
|
1850 | + } elseif ($type == '}') |
|
1746 | 1851 | { |
1747 | 1852 | $current_type = 'sql'; |
1748 | 1853 | |
@@ -1755,8 +1860,9 @@ discard block |
||
1755 | 1860 | if (eval('global $db_prefix, $modSettings, $smcFunc; ' . $current_data) === false) |
1756 | 1861 | { |
1757 | 1862 | $upcontext['error_message'] = 'Error in upgrade script ' . basename($filename) . ' on line ' . $line_number . '!' . $endl; |
1758 | - if ($command_line) |
|
1759 | - echo $upcontext['error_message']; |
|
1863 | + if ($command_line) { |
|
1864 | + echo $upcontext['error_message']; |
|
1865 | + } |
|
1760 | 1866 | } |
1761 | 1867 | |
1762 | 1868 | // Done with code! |
@@ -1836,8 +1942,9 @@ discard block |
||
1836 | 1942 | $db_unbuffered = false; |
1837 | 1943 | |
1838 | 1944 | // Failure?! |
1839 | - if ($result !== false) |
|
1840 | - return $result; |
|
1945 | + if ($result !== false) { |
|
1946 | + return $result; |
|
1947 | + } |
|
1841 | 1948 | |
1842 | 1949 | $db_error_message = $smcFunc['db_error']($db_connection); |
1843 | 1950 | // If MySQL we do something more clever. |
@@ -1865,54 +1972,61 @@ discard block |
||
1865 | 1972 | { |
1866 | 1973 | mysqli_query($db_connection, 'REPAIR TABLE `' . $match[1] . '`'); |
1867 | 1974 | $result = mysqli_query($db_connection, $string); |
1868 | - if ($result !== false) |
|
1869 | - return $result; |
|
1975 | + if ($result !== false) { |
|
1976 | + return $result; |
|
1977 | + } |
|
1870 | 1978 | } |
1871 | - } |
|
1872 | - elseif ($mysqli_errno == 2013) |
|
1979 | + } elseif ($mysqli_errno == 2013) |
|
1873 | 1980 | { |
1874 | 1981 | $db_connection = mysqli_connect($db_server, $db_user, $db_passwd); |
1875 | 1982 | mysqli_select_db($db_connection, $db_name); |
1876 | 1983 | if ($db_connection) |
1877 | 1984 | { |
1878 | 1985 | $result = mysqli_query($db_connection, $string); |
1879 | - if ($result !== false) |
|
1880 | - return $result; |
|
1986 | + if ($result !== false) { |
|
1987 | + return $result; |
|
1988 | + } |
|
1881 | 1989 | } |
1882 | 1990 | } |
1883 | 1991 | // Duplicate column name... should be okay ;). |
1884 | - elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) |
|
1885 | - return false; |
|
1992 | + elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) { |
|
1993 | + return false; |
|
1994 | + } |
|
1886 | 1995 | // Duplicate insert... make sure it's the proper type of query ;). |
1887 | - elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) |
|
1888 | - return false; |
|
1996 | + elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) { |
|
1997 | + return false; |
|
1998 | + } |
|
1889 | 1999 | // Creating an index on a non-existent column. |
1890 | - elseif ($mysqli_errno == 1072) |
|
1891 | - return false; |
|
1892 | - elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') |
|
1893 | - return false; |
|
2000 | + elseif ($mysqli_errno == 1072) { |
|
2001 | + return false; |
|
2002 | + } elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') { |
|
2003 | + return false; |
|
2004 | + } |
|
1894 | 2005 | } |
1895 | 2006 | // If a table already exists don't go potty. |
1896 | 2007 | else |
1897 | 2008 | { |
1898 | 2009 | if (in_array(substr(trim($string), 0, 8), array('CREATE T', 'CREATE S', 'DROP TABL', 'ALTER TA', 'CREATE I', 'CREATE U'))) |
1899 | 2010 | { |
1900 | - if (strpos($db_error_message, 'exist') !== false) |
|
1901 | - return true; |
|
1902 | - } |
|
1903 | - elseif (strpos(trim($string), 'INSERT ') !== false) |
|
2011 | + if (strpos($db_error_message, 'exist') !== false) { |
|
2012 | + return true; |
|
2013 | + } |
|
2014 | + } elseif (strpos(trim($string), 'INSERT ') !== false) |
|
1904 | 2015 | { |
1905 | - if (strpos($db_error_message, 'duplicate') !== false) |
|
1906 | - return true; |
|
2016 | + if (strpos($db_error_message, 'duplicate') !== false) { |
|
2017 | + return true; |
|
2018 | + } |
|
1907 | 2019 | } |
1908 | 2020 | } |
1909 | 2021 | |
1910 | 2022 | // Get the query string so we pass everything. |
1911 | 2023 | $query_string = ''; |
1912 | - foreach ($_GET as $k => $v) |
|
1913 | - $query_string .= ';' . $k . '=' . $v; |
|
1914 | - if (strlen($query_string) != 0) |
|
1915 | - $query_string = '?' . substr($query_string, 1); |
|
2024 | + foreach ($_GET as $k => $v) { |
|
2025 | + $query_string .= ';' . $k . '=' . $v; |
|
2026 | + } |
|
2027 | + if (strlen($query_string) != 0) { |
|
2028 | + $query_string = '?' . substr($query_string, 1); |
|
2029 | + } |
|
1916 | 2030 | |
1917 | 2031 | if ($command_line) |
1918 | 2032 | { |
@@ -1967,16 +2081,18 @@ discard block |
||
1967 | 2081 | { |
1968 | 2082 | $found |= 1; |
1969 | 2083 | // Do some checks on the data if we have it set. |
1970 | - if (isset($change['col_type'])) |
|
1971 | - $found &= $change['col_type'] === $column['type']; |
|
1972 | - if (isset($change['null_allowed'])) |
|
1973 | - $found &= $column['null'] == $change['null_allowed']; |
|
1974 | - if (isset($change['default'])) |
|
1975 | - $found &= $change['default'] === $column['default']; |
|
2084 | + if (isset($change['col_type'])) { |
|
2085 | + $found &= $change['col_type'] === $column['type']; |
|
2086 | + } |
|
2087 | + if (isset($change['null_allowed'])) { |
|
2088 | + $found &= $column['null'] == $change['null_allowed']; |
|
2089 | + } |
|
2090 | + if (isset($change['default'])) { |
|
2091 | + $found &= $change['default'] === $column['default']; |
|
2092 | + } |
|
1976 | 2093 | } |
1977 | 2094 | } |
1978 | - } |
|
1979 | - elseif ($change['type'] === 'index') |
|
2095 | + } elseif ($change['type'] === 'index') |
|
1980 | 2096 | { |
1981 | 2097 | $request = upgrade_query(' |
1982 | 2098 | SHOW INDEX |
@@ -1985,9 +2101,10 @@ discard block |
||
1985 | 2101 | { |
1986 | 2102 | $cur_index = array(); |
1987 | 2103 | |
1988 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1989 | - if ($row['Key_name'] === $change['name']) |
|
2104 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2105 | + if ($row['Key_name'] === $change['name']) |
|
1990 | 2106 | $cur_index[(int) $row['Seq_in_index']] = $row['Column_name']; |
2107 | + } |
|
1991 | 2108 | |
1992 | 2109 | ksort($cur_index, SORT_NUMERIC); |
1993 | 2110 | $found = array_values($cur_index) === $change['target_columns']; |
@@ -1997,14 +2114,17 @@ discard block |
||
1997 | 2114 | } |
1998 | 2115 | |
1999 | 2116 | // If we're trying to add and it's added, we're done. |
2000 | - if ($found && in_array($change['method'], array('add', 'change'))) |
|
2001 | - return true; |
|
2117 | + if ($found && in_array($change['method'], array('add', 'change'))) { |
|
2118 | + return true; |
|
2119 | + } |
|
2002 | 2120 | // Otherwise if we're removing and it wasn't found we're also done. |
2003 | - elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) |
|
2004 | - return true; |
|
2121 | + elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) { |
|
2122 | + return true; |
|
2123 | + } |
|
2005 | 2124 | // Otherwise is it just a test? |
2006 | - elseif ($is_test) |
|
2007 | - return false; |
|
2125 | + elseif ($is_test) { |
|
2126 | + return false; |
|
2127 | + } |
|
2008 | 2128 | |
2009 | 2129 | // Not found it yet? Bummer! How about we see if we're currently doing it? |
2010 | 2130 | $running = false; |
@@ -2015,8 +2135,9 @@ discard block |
||
2015 | 2135 | SHOW FULL PROCESSLIST'); |
2016 | 2136 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2017 | 2137 | { |
2018 | - if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) |
|
2019 | - $found = true; |
|
2138 | + if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) { |
|
2139 | + $found = true; |
|
2140 | + } |
|
2020 | 2141 | } |
2021 | 2142 | |
2022 | 2143 | // Can't find it? Then we need to run it fools! |
@@ -2028,8 +2149,9 @@ discard block |
||
2028 | 2149 | ALTER TABLE ' . $db_prefix . $change['table'] . ' |
2029 | 2150 | ' . $change['text'], true) !== false; |
2030 | 2151 | |
2031 | - if (!$success) |
|
2032 | - return false; |
|
2152 | + if (!$success) { |
|
2153 | + return false; |
|
2154 | + } |
|
2033 | 2155 | |
2034 | 2156 | // Return |
2035 | 2157 | $running = true; |
@@ -2071,8 +2193,9 @@ discard block |
||
2071 | 2193 | 'db_error_skip' => true, |
2072 | 2194 | ) |
2073 | 2195 | ); |
2074 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
2075 | - die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
2196 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
2197 | + die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
2198 | + } |
|
2076 | 2199 | $table_row = $smcFunc['db_fetch_assoc']($request); |
2077 | 2200 | $smcFunc['db_free_result']($request); |
2078 | 2201 | |
@@ -2094,18 +2217,19 @@ discard block |
||
2094 | 2217 | ) |
2095 | 2218 | ); |
2096 | 2219 | // No results? Just forget it all together. |
2097 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
2098 | - unset($table_row['Collation']); |
|
2099 | - else |
|
2100 | - $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
2220 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
2221 | + unset($table_row['Collation']); |
|
2222 | + } else { |
|
2223 | + $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
2224 | + } |
|
2101 | 2225 | $smcFunc['db_free_result']($request); |
2102 | 2226 | } |
2103 | 2227 | |
2104 | 2228 | if ($column_fix) |
2105 | 2229 | { |
2106 | 2230 | // Make sure there are no NULL's left. |
2107 | - if ($null_fix) |
|
2108 | - $smcFunc['db_query']('', ' |
|
2231 | + if ($null_fix) { |
|
2232 | + $smcFunc['db_query']('', ' |
|
2109 | 2233 | UPDATE {db_prefix}' . $change['table'] . ' |
2110 | 2234 | SET ' . $change['column'] . ' = {string:default} |
2111 | 2235 | WHERE ' . $change['column'] . ' IS NULL', |
@@ -2114,6 +2238,7 @@ discard block |
||
2114 | 2238 | 'db_error_skip' => true, |
2115 | 2239 | ) |
2116 | 2240 | ); |
2241 | + } |
|
2117 | 2242 | |
2118 | 2243 | // Do the actual alteration. |
2119 | 2244 | $smcFunc['db_query']('', ' |
@@ -2142,8 +2267,9 @@ discard block |
||
2142 | 2267 | } |
2143 | 2268 | |
2144 | 2269 | // Not a column we need to check on? |
2145 | - if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) |
|
2146 | - return; |
|
2270 | + if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) { |
|
2271 | + return; |
|
2272 | + } |
|
2147 | 2273 | |
2148 | 2274 | // Break it up you (six|seven). |
2149 | 2275 | $temp = explode(' ', str_replace('NOT NULL', 'NOT_NULL', $change['text'])); |
@@ -2162,13 +2288,13 @@ discard block |
||
2162 | 2288 | 'new_name' => $temp[2], |
2163 | 2289 | )); |
2164 | 2290 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
2165 | - if ($smcFunc['db_num_rows'] != 1) |
|
2166 | - return; |
|
2291 | + if ($smcFunc['db_num_rows'] != 1) { |
|
2292 | + return; |
|
2293 | + } |
|
2167 | 2294 | |
2168 | 2295 | list (, $current_type) = $smcFunc['db_fetch_assoc']($request); |
2169 | 2296 | $smcFunc['db_free_result']($request); |
2170 | - } |
|
2171 | - else |
|
2297 | + } else |
|
2172 | 2298 | { |
2173 | 2299 | // Do this the old fashion, sure method way. |
2174 | 2300 | $request = $smcFunc['db_query']('', ' |
@@ -2179,21 +2305,24 @@ discard block |
||
2179 | 2305 | )); |
2180 | 2306 | // Mayday! |
2181 | 2307 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
2182 | - if ($smcFunc['db_num_rows'] == 0) |
|
2183 | - return; |
|
2308 | + if ($smcFunc['db_num_rows'] == 0) { |
|
2309 | + return; |
|
2310 | + } |
|
2184 | 2311 | |
2185 | 2312 | // Oh where, oh where has my little field gone. Oh where can it be... |
2186 | - while ($row = $smcFunc['db_query']($request)) |
|
2187 | - if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
2313 | + while ($row = $smcFunc['db_query']($request)) { |
|
2314 | + if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
2188 | 2315 | { |
2189 | 2316 | $current_type = $row['Type']; |
2317 | + } |
|
2190 | 2318 | break; |
2191 | 2319 | } |
2192 | 2320 | } |
2193 | 2321 | |
2194 | 2322 | // If this doesn't match, the column may of been altered for a reason. |
2195 | - if (trim($current_type) != trim($temp[3])) |
|
2196 | - $temp[3] = $current_type; |
|
2323 | + if (trim($current_type) != trim($temp[3])) { |
|
2324 | + $temp[3] = $current_type; |
|
2325 | + } |
|
2197 | 2326 | |
2198 | 2327 | // Piece this back together. |
2199 | 2328 | $change['text'] = str_replace('NOT_NULL', 'NOT NULL', implode(' ', $temp)); |
@@ -2205,8 +2334,9 @@ discard block |
||
2205 | 2334 | global $start_time, $timeLimitThreshold, $command_line, $custom_warning; |
2206 | 2335 | global $step_progress, $is_debug, $upcontext; |
2207 | 2336 | |
2208 | - if ($_GET['substep'] < $substep) |
|
2209 | - $_GET['substep'] = $substep; |
|
2337 | + if ($_GET['substep'] < $substep) { |
|
2338 | + $_GET['substep'] = $substep; |
|
2339 | + } |
|
2210 | 2340 | |
2211 | 2341 | if ($command_line) |
2212 | 2342 | { |
@@ -2219,29 +2349,33 @@ discard block |
||
2219 | 2349 | } |
2220 | 2350 | |
2221 | 2351 | @set_time_limit(300); |
2222 | - if (function_exists('apache_reset_timeout')) |
|
2223 | - @apache_reset_timeout(); |
|
2352 | + if (function_exists('apache_reset_timeout')) { |
|
2353 | + @apache_reset_timeout(); |
|
2354 | + } |
|
2224 | 2355 | |
2225 | - if (time() - $start_time <= $timeLimitThreshold) |
|
2226 | - return; |
|
2356 | + if (time() - $start_time <= $timeLimitThreshold) { |
|
2357 | + return; |
|
2358 | + } |
|
2227 | 2359 | |
2228 | 2360 | // Do we have some custom step progress stuff? |
2229 | 2361 | if (!empty($step_progress)) |
2230 | 2362 | { |
2231 | 2363 | $upcontext['substep_progress'] = 0; |
2232 | 2364 | $upcontext['substep_progress_name'] = $step_progress['name']; |
2233 | - if ($step_progress['current'] > $step_progress['total']) |
|
2234 | - $upcontext['substep_progress'] = 99.9; |
|
2235 | - else |
|
2236 | - $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
2365 | + if ($step_progress['current'] > $step_progress['total']) { |
|
2366 | + $upcontext['substep_progress'] = 99.9; |
|
2367 | + } else { |
|
2368 | + $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
2369 | + } |
|
2237 | 2370 | |
2238 | 2371 | // Make it nicely rounded. |
2239 | 2372 | $upcontext['substep_progress'] = round($upcontext['substep_progress'], 1); |
2240 | 2373 | } |
2241 | 2374 | |
2242 | 2375 | // If this is XML we just exit right away! |
2243 | - if (isset($_GET['xml'])) |
|
2244 | - return upgradeExit(); |
|
2376 | + if (isset($_GET['xml'])) { |
|
2377 | + return upgradeExit(); |
|
2378 | + } |
|
2245 | 2379 | |
2246 | 2380 | // We're going to pause after this! |
2247 | 2381 | $upcontext['pause'] = true; |
@@ -2249,13 +2383,15 @@ discard block |
||
2249 | 2383 | $upcontext['query_string'] = ''; |
2250 | 2384 | foreach ($_GET as $k => $v) |
2251 | 2385 | { |
2252 | - if ($k != 'data' && $k != 'substep' && $k != 'step') |
|
2253 | - $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
2386 | + if ($k != 'data' && $k != 'substep' && $k != 'step') { |
|
2387 | + $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
2388 | + } |
|
2254 | 2389 | } |
2255 | 2390 | |
2256 | 2391 | // Custom warning? |
2257 | - if (!empty($custom_warning)) |
|
2258 | - $upcontext['custom_warning'] = $custom_warning; |
|
2392 | + if (!empty($custom_warning)) { |
|
2393 | + $upcontext['custom_warning'] = $custom_warning; |
|
2394 | + } |
|
2259 | 2395 | |
2260 | 2396 | upgradeExit(); |
2261 | 2397 | } |
@@ -2270,25 +2406,26 @@ discard block |
||
2270 | 2406 | ob_implicit_flush(true); |
2271 | 2407 | @set_time_limit(600); |
2272 | 2408 | |
2273 | - if (!isset($_SERVER['argv'])) |
|
2274 | - $_SERVER['argv'] = array(); |
|
2409 | + if (!isset($_SERVER['argv'])) { |
|
2410 | + $_SERVER['argv'] = array(); |
|
2411 | + } |
|
2275 | 2412 | $_GET['maint'] = 1; |
2276 | 2413 | |
2277 | 2414 | foreach ($_SERVER['argv'] as $i => $arg) |
2278 | 2415 | { |
2279 | - if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) |
|
2280 | - $_GET['lang'] = $match[1]; |
|
2281 | - elseif (preg_match('~^--path=(.+)$~', $arg) != 0) |
|
2282 | - continue; |
|
2283 | - elseif ($arg == '--no-maintenance') |
|
2284 | - $_GET['maint'] = 0; |
|
2285 | - elseif ($arg == '--debug') |
|
2286 | - $is_debug = true; |
|
2287 | - elseif ($arg == '--backup') |
|
2288 | - $_POST['backup'] = 1; |
|
2289 | - elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) |
|
2290 | - $_GET['conv'] = 1; |
|
2291 | - elseif ($i != 0) |
|
2416 | + if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) { |
|
2417 | + $_GET['lang'] = $match[1]; |
|
2418 | + } elseif (preg_match('~^--path=(.+)$~', $arg) != 0) { |
|
2419 | + continue; |
|
2420 | + } elseif ($arg == '--no-maintenance') { |
|
2421 | + $_GET['maint'] = 0; |
|
2422 | + } elseif ($arg == '--debug') { |
|
2423 | + $is_debug = true; |
|
2424 | + } elseif ($arg == '--backup') { |
|
2425 | + $_POST['backup'] = 1; |
|
2426 | + } elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) { |
|
2427 | + $_GET['conv'] = 1; |
|
2428 | + } elseif ($i != 0) |
|
2292 | 2429 | { |
2293 | 2430 | echo 'SMF Command-line Upgrader |
2294 | 2431 | Usage: /path/to/php -f ' . basename(__FILE__) . ' -- [OPTION]... |
@@ -2302,10 +2439,12 @@ discard block |
||
2302 | 2439 | } |
2303 | 2440 | } |
2304 | 2441 | |
2305 | - if (!php_version_check()) |
|
2306 | - print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
2307 | - if (!db_version_check()) |
|
2308 | - print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
2442 | + if (!php_version_check()) { |
|
2443 | + print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
2444 | + } |
|
2445 | + if (!db_version_check()) { |
|
2446 | + print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
2447 | + } |
|
2309 | 2448 | |
2310 | 2449 | // Do some checks to make sure they have proper privileges |
2311 | 2450 | db_extend('packages'); |
@@ -2320,34 +2459,39 @@ discard block |
||
2320 | 2459 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
2321 | 2460 | |
2322 | 2461 | // Sorry... we need CREATE, ALTER and DROP |
2323 | - if (!$create || !$alter || !$drop) |
|
2324 | - print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
2462 | + if (!$create || !$alter || !$drop) { |
|
2463 | + print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
2464 | + } |
|
2325 | 2465 | |
2326 | 2466 | $check = @file_exists($modSettings['theme_dir'] . '/index.template.php') |
2327 | 2467 | && @file_exists($sourcedir . '/QueryString.php') |
2328 | 2468 | && @file_exists($sourcedir . '/ManageBoards.php'); |
2329 | - if (!$check && !isset($modSettings['smfVersion'])) |
|
2330 | - print_error('Error: Some files are missing or out-of-date.', true); |
|
2469 | + if (!$check && !isset($modSettings['smfVersion'])) { |
|
2470 | + print_error('Error: Some files are missing or out-of-date.', true); |
|
2471 | + } |
|
2331 | 2472 | |
2332 | 2473 | // Do a quick version spot check. |
2333 | 2474 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
2334 | 2475 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
2335 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
2336 | - print_error('Error: Some files have not yet been updated properly.'); |
|
2476 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
2477 | + print_error('Error: Some files have not yet been updated properly.'); |
|
2478 | + } |
|
2337 | 2479 | |
2338 | 2480 | // Make sure Settings.php is writable. |
2339 | 2481 | quickFileWritable($boarddir . '/Settings.php'); |
2340 | - if (!is_writable($boarddir . '/Settings.php')) |
|
2341 | - print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
2482 | + if (!is_writable($boarddir . '/Settings.php')) { |
|
2483 | + print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
2484 | + } |
|
2342 | 2485 | |
2343 | 2486 | // Make sure Settings_bak.php is writable. |
2344 | 2487 | quickFileWritable($boarddir . '/Settings_bak.php'); |
2345 | - if (!is_writable($boarddir . '/Settings_bak.php')) |
|
2346 | - print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
2488 | + if (!is_writable($boarddir . '/Settings_bak.php')) { |
|
2489 | + print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
2490 | + } |
|
2347 | 2491 | |
2348 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
2349 | - print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
2350 | - elseif (isset($modSettings['agreement'])) |
|
2492 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
2493 | + print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
2494 | + } elseif (isset($modSettings['agreement'])) |
|
2351 | 2495 | { |
2352 | 2496 | $fp = fopen($boarddir . '/agreement.txt', 'w'); |
2353 | 2497 | fwrite($fp, $modSettings['agreement']); |
@@ -2357,31 +2501,36 @@ discard block |
||
2357 | 2501 | // Make sure Themes is writable. |
2358 | 2502 | quickFileWritable($modSettings['theme_dir']); |
2359 | 2503 | |
2360 | - if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) |
|
2361 | - print_error('Error: Unable to obtain write access to "Themes".'); |
|
2504 | + if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) { |
|
2505 | + print_error('Error: Unable to obtain write access to "Themes".'); |
|
2506 | + } |
|
2362 | 2507 | |
2363 | 2508 | // Make sure cache directory exists and is writable! |
2364 | 2509 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
2365 | - if (!file_exists($cachedir_temp)) |
|
2366 | - @mkdir($cachedir_temp); |
|
2510 | + if (!file_exists($cachedir_temp)) { |
|
2511 | + @mkdir($cachedir_temp); |
|
2512 | + } |
|
2367 | 2513 | |
2368 | 2514 | // Make sure the cache temp dir is writable. |
2369 | 2515 | quickFileWritable($cachedir_temp); |
2370 | 2516 | |
2371 | - if (!is_writable($cachedir_temp)) |
|
2372 | - print_error('Error: Unable to obtain write access to "cache".', true); |
|
2517 | + if (!is_writable($cachedir_temp)) { |
|
2518 | + print_error('Error: Unable to obtain write access to "cache".', true); |
|
2519 | + } |
|
2373 | 2520 | |
2374 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
2375 | - print_error('Error: Unable to find language files!', true); |
|
2376 | - else |
|
2521 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
2522 | + print_error('Error: Unable to find language files!', true); |
|
2523 | + } else |
|
2377 | 2524 | { |
2378 | 2525 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
2379 | 2526 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
2380 | 2527 | |
2381 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
2382 | - print_error('Error: Language files out of date.', true); |
|
2383 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
2384 | - print_error('Error: Install language is missing for selected language.', true); |
|
2528 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
2529 | + print_error('Error: Language files out of date.', true); |
|
2530 | + } |
|
2531 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
2532 | + print_error('Error: Install language is missing for selected language.', true); |
|
2533 | + } |
|
2385 | 2534 | |
2386 | 2535 | // Otherwise include it! |
2387 | 2536 | require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
@@ -2400,8 +2549,9 @@ discard block |
||
2400 | 2549 | global $upcontext, $db_character_set, $sourcedir, $smcFunc, $modSettings, $language, $db_prefix, $db_type, $command_line, $support_js; |
2401 | 2550 | |
2402 | 2551 | // Done it already? |
2403 | - if (!empty($_POST['utf8_done'])) |
|
2404 | - return true; |
|
2552 | + if (!empty($_POST['utf8_done'])) { |
|
2553 | + return true; |
|
2554 | + } |
|
2405 | 2555 | |
2406 | 2556 | // First make sure they aren't already on UTF-8 before we go anywhere... |
2407 | 2557 | if ($db_type == 'postgresql' || ($db_character_set === 'utf8' && !empty($modSettings['global_character_set']) && $modSettings['global_character_set'] === 'UTF-8')) |
@@ -2414,8 +2564,7 @@ discard block |
||
2414 | 2564 | ); |
2415 | 2565 | |
2416 | 2566 | return true; |
2417 | - } |
|
2418 | - else |
|
2567 | + } else |
|
2419 | 2568 | { |
2420 | 2569 | $upcontext['page_title'] = 'Converting to UTF8'; |
2421 | 2570 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'convert_xml' : 'convert_utf8'; |
@@ -2459,8 +2608,9 @@ discard block |
||
2459 | 2608 | ) |
2460 | 2609 | ); |
2461 | 2610 | $db_charsets = array(); |
2462 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2463 | - $db_charsets[] = $row['Charset']; |
|
2611 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2612 | + $db_charsets[] = $row['Charset']; |
|
2613 | + } |
|
2464 | 2614 | |
2465 | 2615 | $smcFunc['db_free_result']($request); |
2466 | 2616 | |
@@ -2496,13 +2646,15 @@ discard block |
||
2496 | 2646 | // If there's a fulltext index, we need to drop it first... |
2497 | 2647 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
2498 | 2648 | { |
2499 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2500 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
2649 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2650 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
2501 | 2651 | $upcontext['fulltext_index'][] = $row['Key_name']; |
2652 | + } |
|
2502 | 2653 | $smcFunc['db_free_result']($request); |
2503 | 2654 | |
2504 | - if (isset($upcontext['fulltext_index'])) |
|
2505 | - $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
2655 | + if (isset($upcontext['fulltext_index'])) { |
|
2656 | + $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
2657 | + } |
|
2506 | 2658 | } |
2507 | 2659 | |
2508 | 2660 | // Drop it and make a note... |
@@ -2692,8 +2844,9 @@ discard block |
||
2692 | 2844 | $replace = '%field%'; |
2693 | 2845 | |
2694 | 2846 | // Build a huge REPLACE statement... |
2695 | - foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) |
|
2696 | - $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
2847 | + foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) { |
|
2848 | + $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
2849 | + } |
|
2697 | 2850 | } |
2698 | 2851 | |
2699 | 2852 | // Get a list of table names ahead of time... This makes it easier to set our substep and such |
@@ -2703,9 +2856,10 @@ discard block |
||
2703 | 2856 | $upcontext['table_count'] = count($queryTables); |
2704 | 2857 | |
2705 | 2858 | // What ones have we already done? |
2706 | - foreach ($queryTables as $id => $table) |
|
2707 | - if ($id < $_GET['substep']) |
|
2859 | + foreach ($queryTables as $id => $table) { |
|
2860 | + if ($id < $_GET['substep']) |
|
2708 | 2861 | $upcontext['previous_tables'][] = $table; |
2862 | + } |
|
2709 | 2863 | |
2710 | 2864 | $upcontext['cur_table_num'] = $_GET['substep']; |
2711 | 2865 | $upcontext['cur_table_name'] = str_replace($db_prefix, '', $queryTables[$_GET['substep']]); |
@@ -2742,8 +2896,9 @@ discard block |
||
2742 | 2896 | nextSubstep($substep); |
2743 | 2897 | |
2744 | 2898 | // Just to make sure it doesn't time out. |
2745 | - if (function_exists('apache_reset_timeout')) |
|
2746 | - @apache_reset_timeout(); |
|
2899 | + if (function_exists('apache_reset_timeout')) { |
|
2900 | + @apache_reset_timeout(); |
|
2901 | + } |
|
2747 | 2902 | |
2748 | 2903 | $table_charsets = array(); |
2749 | 2904 | |
@@ -2764,8 +2919,9 @@ discard block |
||
2764 | 2919 | { |
2765 | 2920 | list($charset) = explode('_', $collation); |
2766 | 2921 | |
2767 | - if (!isset($table_charsets[$charset])) |
|
2768 | - $table_charsets[$charset] = array(); |
|
2922 | + if (!isset($table_charsets[$charset])) { |
|
2923 | + $table_charsets[$charset] = array(); |
|
2924 | + } |
|
2769 | 2925 | |
2770 | 2926 | $table_charsets[$charset][] = $column_info; |
2771 | 2927 | } |
@@ -2805,10 +2961,11 @@ discard block |
||
2805 | 2961 | if (isset($translation_tables[$upcontext['charset_detected']])) |
2806 | 2962 | { |
2807 | 2963 | $update = ''; |
2808 | - foreach ($table_charsets as $charset => $columns) |
|
2809 | - foreach ($columns as $column) |
|
2964 | + foreach ($table_charsets as $charset => $columns) { |
|
2965 | + foreach ($columns as $column) |
|
2810 | 2966 | $update .= ' |
2811 | 2967 | ' . $column['Field'] . ' = ' . strtr($replace, array('%field%' => $column['Field'])) . ','; |
2968 | + } |
|
2812 | 2969 | |
2813 | 2970 | $smcFunc['db_query']('', ' |
2814 | 2971 | UPDATE {raw:table_name} |
@@ -2833,8 +2990,9 @@ discard block |
||
2833 | 2990 | // Now do the actual conversion (if still needed). |
2834 | 2991 | if ($charsets[$upcontext['charset_detected']] !== 'utf8') |
2835 | 2992 | { |
2836 | - if ($command_line) |
|
2837 | - echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
2993 | + if ($command_line) { |
|
2994 | + echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
2995 | + } |
|
2838 | 2996 | |
2839 | 2997 | $smcFunc['db_query']('', ' |
2840 | 2998 | ALTER TABLE {raw:table_name} |
@@ -2844,12 +3002,14 @@ discard block |
||
2844 | 3002 | ) |
2845 | 3003 | ); |
2846 | 3004 | |
2847 | - if ($command_line) |
|
2848 | - echo " done.\n"; |
|
3005 | + if ($command_line) { |
|
3006 | + echo " done.\n"; |
|
3007 | + } |
|
2849 | 3008 | } |
2850 | 3009 | // If this is XML to keep it nice for the user do one table at a time anyway! |
2851 | - if (isset($_GET['xml'])) |
|
2852 | - return upgradeExit(); |
|
3010 | + if (isset($_GET['xml'])) { |
|
3011 | + return upgradeExit(); |
|
3012 | + } |
|
2853 | 3013 | } |
2854 | 3014 | |
2855 | 3015 | $prev_charset = empty($translation_tables[$upcontext['charset_detected']]) ? $charsets[$upcontext['charset_detected']] : $translation_tables[$upcontext['charset_detected']]; |
@@ -2878,8 +3038,8 @@ discard block |
||
2878 | 3038 | ); |
2879 | 3039 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2880 | 3040 | { |
2881 | - if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) |
|
2882 | - $smcFunc['db_query']('', ' |
|
3041 | + if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) { |
|
3042 | + $smcFunc['db_query']('', ' |
|
2883 | 3043 | UPDATE {db_prefix}log_actions |
2884 | 3044 | SET extra = {string:extra} |
2885 | 3045 | WHERE id_action = {int:current_action}', |
@@ -2888,6 +3048,7 @@ discard block |
||
2888 | 3048 | 'extra' => $matches[1] . strlen($matches[3]) . ':"' . $matches[3] . '"' . $matches[4], |
2889 | 3049 | ) |
2890 | 3050 | ); |
3051 | + } |
|
2891 | 3052 | } |
2892 | 3053 | $smcFunc['db_free_result']($request); |
2893 | 3054 | |
@@ -2909,15 +3070,17 @@ discard block |
||
2909 | 3070 | // First thing's first - did we already do this? |
2910 | 3071 | if (!empty($modSettings['json_done'])) |
2911 | 3072 | { |
2912 | - if ($command_line) |
|
2913 | - return DeleteUpgrade(); |
|
2914 | - else |
|
2915 | - return true; |
|
3073 | + if ($command_line) { |
|
3074 | + return DeleteUpgrade(); |
|
3075 | + } else { |
|
3076 | + return true; |
|
3077 | + } |
|
2916 | 3078 | } |
2917 | 3079 | |
2918 | 3080 | // Done it already - js wise? |
2919 | - if (!empty($_POST['json_done'])) |
|
2920 | - return true; |
|
3081 | + if (!empty($_POST['json_done'])) { |
|
3082 | + return true; |
|
3083 | + } |
|
2921 | 3084 | |
2922 | 3085 | // List of tables affected by this function |
2923 | 3086 | // name => array('key', col1[,col2|true[,col3]]) |
@@ -2949,12 +3112,14 @@ discard block |
||
2949 | 3112 | $upcontext['cur_table_name'] = isset($keys[$_GET['substep']]) ? $keys[$_GET['substep']] : $keys[0]; |
2950 | 3113 | $upcontext['step_progress'] = (int) (($upcontext['cur_table_num'] / $upcontext['table_count']) * 100); |
2951 | 3114 | |
2952 | - foreach ($keys as $id => $table) |
|
2953 | - if ($id < $_GET['substep']) |
|
3115 | + foreach ($keys as $id => $table) { |
|
3116 | + if ($id < $_GET['substep']) |
|
2954 | 3117 | $upcontext['previous_tables'][] = $table; |
3118 | + } |
|
2955 | 3119 | |
2956 | - if ($command_line) |
|
2957 | - echo 'Converting data from serialize() to json_encode().'; |
|
3120 | + if ($command_line) { |
|
3121 | + echo 'Converting data from serialize() to json_encode().'; |
|
3122 | + } |
|
2958 | 3123 | |
2959 | 3124 | if (!$support_js || isset($_GET['xml'])) |
2960 | 3125 | { |
@@ -2994,8 +3159,9 @@ discard block |
||
2994 | 3159 | |
2995 | 3160 | // Loop through and fix these... |
2996 | 3161 | $new_settings = array(); |
2997 | - if ($command_line) |
|
2998 | - echo "\n" . 'Fixing some settings...'; |
|
3162 | + if ($command_line) { |
|
3163 | + echo "\n" . 'Fixing some settings...'; |
|
3164 | + } |
|
2999 | 3165 | |
3000 | 3166 | foreach ($serialized_settings as $var) |
3001 | 3167 | { |
@@ -3003,22 +3169,24 @@ discard block |
||
3003 | 3169 | { |
3004 | 3170 | // Attempt to unserialize the setting |
3005 | 3171 | $temp = @safe_unserialize($modSettings[$var]); |
3006 | - if (!$temp && $command_line) |
|
3007 | - echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
3008 | - elseif ($temp !== false) |
|
3009 | - $new_settings[$var] = json_encode($temp); |
|
3172 | + if (!$temp && $command_line) { |
|
3173 | + echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
3174 | + } elseif ($temp !== false) { |
|
3175 | + $new_settings[$var] = json_encode($temp); |
|
3176 | + } |
|
3010 | 3177 | } |
3011 | 3178 | } |
3012 | 3179 | |
3013 | 3180 | // Update everything at once |
3014 | - if (!function_exists('cache_put_data')) |
|
3015 | - require_once($sourcedir . '/Load.php'); |
|
3181 | + if (!function_exists('cache_put_data')) { |
|
3182 | + require_once($sourcedir . '/Load.php'); |
|
3183 | + } |
|
3016 | 3184 | updateSettings($new_settings, true); |
3017 | 3185 | |
3018 | - if ($command_line) |
|
3019 | - echo ' done.'; |
|
3020 | - } |
|
3021 | - elseif ($table == 'themes') |
|
3186 | + if ($command_line) { |
|
3187 | + echo ' done.'; |
|
3188 | + } |
|
3189 | + } elseif ($table == 'themes') |
|
3022 | 3190 | { |
3023 | 3191 | // Finally, fix the admin prefs. Unfortunately this is stored per theme, but hopefully they only have one theme installed at this point... |
3024 | 3192 | $query = $smcFunc['db_query']('', ' |
@@ -3037,10 +3205,11 @@ discard block |
||
3037 | 3205 | |
3038 | 3206 | if ($command_line) |
3039 | 3207 | { |
3040 | - if ($temp === false) |
|
3041 | - echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
3042 | - else |
|
3043 | - echo "\n" . 'Fixing admin preferences...'; |
|
3208 | + if ($temp === false) { |
|
3209 | + echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
3210 | + } else { |
|
3211 | + echo "\n" . 'Fixing admin preferences...'; |
|
3212 | + } |
|
3044 | 3213 | } |
3045 | 3214 | |
3046 | 3215 | if ($temp !== false) |
@@ -3062,15 +3231,15 @@ discard block |
||
3062 | 3231 | ) |
3063 | 3232 | ); |
3064 | 3233 | |
3065 | - if ($command_line) |
|
3066 | - echo ' done.'; |
|
3234 | + if ($command_line) { |
|
3235 | + echo ' done.'; |
|
3236 | + } |
|
3067 | 3237 | } |
3068 | 3238 | } |
3069 | 3239 | |
3070 | 3240 | $smcFunc['db_free_result']($query); |
3071 | 3241 | } |
3072 | - } |
|
3073 | - else |
|
3242 | + } else |
|
3074 | 3243 | { |
3075 | 3244 | // First item is always the key... |
3076 | 3245 | $key = $info[0]; |
@@ -3081,8 +3250,7 @@ discard block |
||
3081 | 3250 | { |
3082 | 3251 | $col_select = $info[1]; |
3083 | 3252 | $where = ' WHERE ' . $info[1] . ' != {empty}'; |
3084 | - } |
|
3085 | - else |
|
3253 | + } else |
|
3086 | 3254 | { |
3087 | 3255 | $col_select = implode(', ', $info); |
3088 | 3256 | } |
@@ -3115,8 +3283,7 @@ discard block |
||
3115 | 3283 | if ($temp === false && $command_line) |
3116 | 3284 | { |
3117 | 3285 | echo "\nFailed to unserialize " . $row[$col] . "... Skipping\n"; |
3118 | - } |
|
3119 | - else |
|
3286 | + } else |
|
3120 | 3287 | { |
3121 | 3288 | $row[$col] = json_encode($temp); |
3122 | 3289 | |
@@ -3141,16 +3308,18 @@ discard block |
||
3141 | 3308 | } |
3142 | 3309 | } |
3143 | 3310 | |
3144 | - if ($command_line) |
|
3145 | - echo ' done.'; |
|
3311 | + if ($command_line) { |
|
3312 | + echo ' done.'; |
|
3313 | + } |
|
3146 | 3314 | |
3147 | 3315 | // Free up some memory... |
3148 | 3316 | $smcFunc['db_free_result']($query); |
3149 | 3317 | } |
3150 | 3318 | } |
3151 | 3319 | // If this is XML to keep it nice for the user do one table at a time anyway! |
3152 | - if (isset($_GET['xml'])) |
|
3153 | - return upgradeExit(); |
|
3320 | + if (isset($_GET['xml'])) { |
|
3321 | + return upgradeExit(); |
|
3322 | + } |
|
3154 | 3323 | } |
3155 | 3324 | |
3156 | 3325 | if ($command_line) |
@@ -3165,8 +3334,9 @@ discard block |
||
3165 | 3334 | |
3166 | 3335 | $_GET['substep'] = 0; |
3167 | 3336 | // Make sure we move on! |
3168 | - if ($command_line) |
|
3169 | - return DeleteUpgrade(); |
|
3337 | + if ($command_line) { |
|
3338 | + return DeleteUpgrade(); |
|
3339 | + } |
|
3170 | 3340 | |
3171 | 3341 | return true; |
3172 | 3342 | } |
@@ -3186,14 +3356,16 @@ discard block |
||
3186 | 3356 | global $upcontext, $txt, $settings; |
3187 | 3357 | |
3188 | 3358 | // Don't call me twice! |
3189 | - if (!empty($upcontext['chmod_called'])) |
|
3190 | - return; |
|
3359 | + if (!empty($upcontext['chmod_called'])) { |
|
3360 | + return; |
|
3361 | + } |
|
3191 | 3362 | |
3192 | 3363 | $upcontext['chmod_called'] = true; |
3193 | 3364 | |
3194 | 3365 | // Nothing? |
3195 | - if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) |
|
3196 | - return; |
|
3366 | + if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) { |
|
3367 | + return; |
|
3368 | + } |
|
3197 | 3369 | |
3198 | 3370 | // Was it a problem with Windows? |
3199 | 3371 | if (!empty($upcontext['chmod']['ftp_error']) && $upcontext['chmod']['ftp_error'] == 'total_mess') |
@@ -3225,11 +3397,12 @@ discard block |
||
3225 | 3397 | content.write(\'<div class="windowbg description">\n\t\t\t<h4>The following files needs to be made writable to continue:</h4>\n\t\t\t\'); |
3226 | 3398 | content.write(\'<p>', implode('<br>\n\t\t\t', $upcontext['chmod']['files']), '</p>\n\t\t\t\');'; |
3227 | 3399 | |
3228 | - if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') |
|
3229 | - echo ' |
|
3400 | + if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') { |
|
3401 | + echo ' |
|
3230 | 3402 | content.write(\'<hr>\n\t\t\t\'); |
3231 | 3403 | content.write(\'<p>If you have a shell account, the convenient below command can automatically correct permissions on these files</p>\n\t\t\t\'); |
3232 | 3404 | content.write(\'<tt># chmod a+w ', implode(' ', $upcontext['chmod']['files']), '</tt>\n\t\t\t\');'; |
3405 | + } |
|
3233 | 3406 | |
3234 | 3407 | echo ' |
3235 | 3408 | content.write(\'<a href="javascript:self.close();">close</a>\n\t\t</div>\n\t</body>\n</html>\'); |
@@ -3237,17 +3410,19 @@ discard block |
||
3237 | 3410 | } |
3238 | 3411 | </script>'; |
3239 | 3412 | |
3240 | - if (!empty($upcontext['chmod']['ftp_error'])) |
|
3241 | - echo ' |
|
3413 | + if (!empty($upcontext['chmod']['ftp_error'])) { |
|
3414 | + echo ' |
|
3242 | 3415 | <div class="error_message red"> |
3243 | 3416 | The following error was encountered when trying to connect:<br><br> |
3244 | 3417 | <code>', $upcontext['chmod']['ftp_error'], '</code> |
3245 | 3418 | </div> |
3246 | 3419 | <br>'; |
3420 | + } |
|
3247 | 3421 | |
3248 | - if (empty($upcontext['chmod_in_form'])) |
|
3249 | - echo ' |
|
3422 | + if (empty($upcontext['chmod_in_form'])) { |
|
3423 | + echo ' |
|
3250 | 3424 | <form action="', $upcontext['form_url'], '" method="post">'; |
3425 | + } |
|
3251 | 3426 | |
3252 | 3427 | echo ' |
3253 | 3428 | <table width="520" border="0" align="center" style="margin-bottom: 1ex;"> |
@@ -3282,10 +3457,11 @@ discard block |
||
3282 | 3457 | <div class="righttext" style="margin: 1ex;"><input type="submit" value="', $txt['ftp_connect'], '" class="button_submit"></div> |
3283 | 3458 | </div>'; |
3284 | 3459 | |
3285 | - if (empty($upcontext['chmod_in_form'])) |
|
3286 | - echo ' |
|
3460 | + if (empty($upcontext['chmod_in_form'])) { |
|
3461 | + echo ' |
|
3287 | 3462 | </form>'; |
3288 | -} |
|
3463 | + } |
|
3464 | + } |
|
3289 | 3465 | |
3290 | 3466 | function template_upgrade_above() |
3291 | 3467 | { |
@@ -3345,9 +3521,10 @@ discard block |
||
3345 | 3521 | <h2>', $txt['upgrade_progress'], '</h2> |
3346 | 3522 | <ul>'; |
3347 | 3523 | |
3348 | - foreach ($upcontext['steps'] as $num => $step) |
|
3349 | - echo ' |
|
3524 | + foreach ($upcontext['steps'] as $num => $step) { |
|
3525 | + echo ' |
|
3350 | 3526 | <li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>'; |
3527 | + } |
|
3351 | 3528 | |
3352 | 3529 | echo ' |
3353 | 3530 | </ul> |
@@ -3360,8 +3537,8 @@ discard block |
||
3360 | 3537 | </div> |
3361 | 3538 | </div>'; |
3362 | 3539 | |
3363 | - if (isset($upcontext['step_progress'])) |
|
3364 | - echo ' |
|
3540 | + if (isset($upcontext['step_progress'])) { |
|
3541 | + echo ' |
|
3365 | 3542 | <br> |
3366 | 3543 | <br> |
3367 | 3544 | <div id="progress_bar_step"> |
@@ -3370,6 +3547,7 @@ discard block |
||
3370 | 3547 | <span>', $txt['upgrade_step_progress'], '</span> |
3371 | 3548 | </div> |
3372 | 3549 | </div>'; |
3550 | + } |
|
3373 | 3551 | |
3374 | 3552 | echo ' |
3375 | 3553 | <div id="substep_bar_div" class="smalltext" style="float: left;width: 50%;margin-top: 0.6em;display: ', isset($upcontext['substep_progress']) ? '' : 'none', ';">', isset($upcontext['substep_progress_name']) ? trim(strtr($upcontext['substep_progress_name'], array('.' => ''))) : '', ':</div> |
@@ -3400,32 +3578,36 @@ discard block |
||
3400 | 3578 | { |
3401 | 3579 | global $upcontext, $txt; |
3402 | 3580 | |
3403 | - if (!empty($upcontext['pause'])) |
|
3404 | - echo ' |
|
3581 | + if (!empty($upcontext['pause'])) { |
|
3582 | + echo ' |
|
3405 | 3583 | <em>', $txt['upgrade_incomplete'], '.</em><br> |
3406 | 3584 | |
3407 | 3585 | <h2 style="margin-top: 2ex;">', $txt['upgrade_not_quite_done'], '</h2> |
3408 | 3586 | <h3> |
3409 | 3587 | ', $txt['upgrade_paused_overload'], ' |
3410 | 3588 | </h3>'; |
3589 | + } |
|
3411 | 3590 | |
3412 | - if (!empty($upcontext['custom_warning'])) |
|
3413 | - echo ' |
|
3591 | + if (!empty($upcontext['custom_warning'])) { |
|
3592 | + echo ' |
|
3414 | 3593 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3415 | 3594 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3416 | 3595 | <strong style="text-decoration: underline;">', $txt['upgrade_note'], '</strong><br> |
3417 | 3596 | <div style="padding-left: 6ex;">', $upcontext['custom_warning'], '</div> |
3418 | 3597 | </div>'; |
3598 | + } |
|
3419 | 3599 | |
3420 | 3600 | echo ' |
3421 | 3601 | <div class="righttext" style="margin: 1ex;">'; |
3422 | 3602 | |
3423 | - if (!empty($upcontext['continue'])) |
|
3424 | - echo ' |
|
3603 | + if (!empty($upcontext['continue'])) { |
|
3604 | + echo ' |
|
3425 | 3605 | <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '"', $upcontext['continue'] == 2 ? ' disabled' : '', ' class="button_submit">'; |
3426 | - if (!empty($upcontext['skip'])) |
|
3427 | - echo ' |
|
3606 | + } |
|
3607 | + if (!empty($upcontext['skip'])) { |
|
3608 | + echo ' |
|
3428 | 3609 | <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="dontSubmit = true; document.getElementById(\'contbutt\').disabled = \'disabled\'; return true;" class="button_submit">'; |
3610 | + } |
|
3429 | 3611 | |
3430 | 3612 | echo ' |
3431 | 3613 | </div> |
@@ -3475,11 +3657,12 @@ discard block |
||
3475 | 3657 | echo '<', '?xml version="1.0" encoding="UTF-8"?', '> |
3476 | 3658 | <smf>'; |
3477 | 3659 | |
3478 | - if (!empty($upcontext['get_data'])) |
|
3479 | - foreach ($upcontext['get_data'] as $k => $v) |
|
3660 | + if (!empty($upcontext['get_data'])) { |
|
3661 | + foreach ($upcontext['get_data'] as $k => $v) |
|
3480 | 3662 | echo ' |
3481 | 3663 | <get key="', $k, '">', $v, '</get>'; |
3482 | -} |
|
3664 | + } |
|
3665 | + } |
|
3483 | 3666 | |
3484 | 3667 | function template_xml_below() |
3485 | 3668 | { |
@@ -3520,8 +3703,8 @@ discard block |
||
3520 | 3703 | template_chmod(); |
3521 | 3704 | |
3522 | 3705 | // For large, pre 1.1 RC2 forums give them a warning about the possible impact of this upgrade! |
3523 | - if ($upcontext['is_large_forum']) |
|
3524 | - echo ' |
|
3706 | + if ($upcontext['is_large_forum']) { |
|
3707 | + echo ' |
|
3525 | 3708 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3526 | 3709 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3527 | 3710 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3529,10 +3712,11 @@ discard block |
||
3529 | 3712 | ', $txt['upgrade_warning_lots_data'], ' |
3530 | 3713 | </div> |
3531 | 3714 | </div>'; |
3715 | + } |
|
3532 | 3716 | |
3533 | 3717 | // A warning message? |
3534 | - if (!empty($upcontext['warning'])) |
|
3535 | - echo ' |
|
3718 | + if (!empty($upcontext['warning'])) { |
|
3719 | + echo ' |
|
3536 | 3720 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3537 | 3721 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3538 | 3722 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3540,6 +3724,7 @@ discard block |
||
3540 | 3724 | ', $upcontext['warning'], ' |
3541 | 3725 | </div> |
3542 | 3726 | </div>'; |
3727 | + } |
|
3543 | 3728 | |
3544 | 3729 | // Paths are incorrect? |
3545 | 3730 | echo ' |
@@ -3555,20 +3740,22 @@ discard block |
||
3555 | 3740 | if (!empty($upcontext['user']['id']) && (time() - $upcontext['started'] < 72600 || time() - $upcontext['updated'] < 3600)) |
3556 | 3741 | { |
3557 | 3742 | $ago = time() - $upcontext['started']; |
3558 | - if ($ago < 60) |
|
3559 | - $ago = $ago . ' seconds'; |
|
3560 | - elseif ($ago < 3600) |
|
3561 | - $ago = (int) ($ago / 60) . ' minutes'; |
|
3562 | - else |
|
3563 | - $ago = (int) ($ago / 3600) . ' hours'; |
|
3743 | + if ($ago < 60) { |
|
3744 | + $ago = $ago . ' seconds'; |
|
3745 | + } elseif ($ago < 3600) { |
|
3746 | + $ago = (int) ($ago / 60) . ' minutes'; |
|
3747 | + } else { |
|
3748 | + $ago = (int) ($ago / 3600) . ' hours'; |
|
3749 | + } |
|
3564 | 3750 | |
3565 | 3751 | $active = time() - $upcontext['updated']; |
3566 | - if ($active < 60) |
|
3567 | - $updated = $active . ' seconds'; |
|
3568 | - elseif ($active < 3600) |
|
3569 | - $updated = (int) ($active / 60) . ' minutes'; |
|
3570 | - else |
|
3571 | - $updated = (int) ($active / 3600) . ' hours'; |
|
3752 | + if ($active < 60) { |
|
3753 | + $updated = $active . ' seconds'; |
|
3754 | + } elseif ($active < 3600) { |
|
3755 | + $updated = (int) ($active / 60) . ' minutes'; |
|
3756 | + } else { |
|
3757 | + $updated = (int) ($active / 3600) . ' hours'; |
|
3758 | + } |
|
3572 | 3759 | |
3573 | 3760 | echo ' |
3574 | 3761 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
@@ -3577,16 +3764,18 @@ discard block |
||
3577 | 3764 | <div style="padding-left: 6ex;"> |
3578 | 3765 | "', $upcontext['user']['name'], '" has been running the upgrade script for the last ', $ago, ' - and was last active ', $updated, ' ago.'; |
3579 | 3766 | |
3580 | - if ($active < 600) |
|
3581 | - echo ' |
|
3767 | + if ($active < 600) { |
|
3768 | + echo ' |
|
3582 | 3769 | We recommend that you do not run this script unless you are sure that ', $upcontext['user']['name'], ' has completed their upgrade.'; |
3770 | + } |
|
3583 | 3771 | |
3584 | - if ($active > $upcontext['inactive_timeout']) |
|
3585 | - echo ' |
|
3772 | + if ($active > $upcontext['inactive_timeout']) { |
|
3773 | + echo ' |
|
3586 | 3774 | <br><br>You can choose to either run the upgrade again from the beginning - or alternatively continue from the last step reached during the last upgrade.'; |
3587 | - else |
|
3588 | - echo ' |
|
3775 | + } else { |
|
3776 | + echo ' |
|
3589 | 3777 | <br><br>This upgrade script cannot be run until ', $upcontext['user']['name'], ' has been inactive for at least ', ($upcontext['inactive_timeout'] > 120 ? round($upcontext['inactive_timeout'] / 60, 1) . ' minutes!' : $upcontext['inactive_timeout'] . ' seconds!'); |
3778 | + } |
|
3590 | 3779 | |
3591 | 3780 | echo ' |
3592 | 3781 | </div> |
@@ -3602,9 +3791,10 @@ discard block |
||
3602 | 3791 | <td> |
3603 | 3792 | <input type="text" name="user" value="', !empty($upcontext['username']) ? $upcontext['username'] : '', '"', $disable_security ? ' disabled' : '', ' class="input_text">'; |
3604 | 3793 | |
3605 | - if (!empty($upcontext['username_incorrect'])) |
|
3606 | - echo ' |
|
3794 | + if (!empty($upcontext['username_incorrect'])) { |
|
3795 | + echo ' |
|
3607 | 3796 | <div class="smalltext" style="color: red;">Username Incorrect</div>'; |
3797 | + } |
|
3608 | 3798 | |
3609 | 3799 | echo ' |
3610 | 3800 | </td> |
@@ -3615,9 +3805,10 @@ discard block |
||
3615 | 3805 | <input type="password" name="passwrd" value=""', $disable_security ? ' disabled' : '', ' class="input_password"> |
3616 | 3806 | <input type="hidden" name="hash_passwrd" value="">'; |
3617 | 3807 | |
3618 | - if (!empty($upcontext['password_failed'])) |
|
3619 | - echo ' |
|
3808 | + if (!empty($upcontext['password_failed'])) { |
|
3809 | + echo ' |
|
3620 | 3810 | <div class="smalltext" style="color: red;">Password Incorrect</div>'; |
3811 | + } |
|
3621 | 3812 | |
3622 | 3813 | echo ' |
3623 | 3814 | </td> |
@@ -3688,8 +3879,8 @@ discard block |
||
3688 | 3879 | <form action="', $upcontext['form_url'], '" method="post" name="upform" id="upform">'; |
3689 | 3880 | |
3690 | 3881 | // Warning message? |
3691 | - if (!empty($upcontext['upgrade_options_warning'])) |
|
3692 | - echo ' |
|
3882 | + if (!empty($upcontext['upgrade_options_warning'])) { |
|
3883 | + echo ' |
|
3693 | 3884 | <div style="margin: 1ex; padding: 1ex; border: 1px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3694 | 3885 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3695 | 3886 | <strong style="text-decoration: underline;">Warning!</strong><br> |
@@ -3697,6 +3888,7 @@ discard block |
||
3697 | 3888 | ', $upcontext['upgrade_options_warning'], ' |
3698 | 3889 | </div> |
3699 | 3890 | </div>'; |
3891 | + } |
|
3700 | 3892 | |
3701 | 3893 | echo ' |
3702 | 3894 | <table> |
@@ -3739,8 +3931,8 @@ discard block |
||
3739 | 3931 | </td> |
3740 | 3932 | </tr>'; |
3741 | 3933 | |
3742 | - if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) |
|
3743 | - echo ' |
|
3934 | + if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) { |
|
3935 | + echo ' |
|
3744 | 3936 | <tr valign="top"> |
3745 | 3937 | <td width="2%"> |
3746 | 3938 | <input type="checkbox" name="delete_karma" id="delete_karma" value="1" class="input_check"> |
@@ -3749,6 +3941,7 @@ discard block |
||
3749 | 3941 | <label for="delete_karma">Delete all karma settings and info from the DB</label> |
3750 | 3942 | </td> |
3751 | 3943 | </tr>'; |
3944 | + } |
|
3752 | 3945 | |
3753 | 3946 | echo ' |
3754 | 3947 | <tr valign="top"> |
@@ -3786,10 +3979,11 @@ discard block |
||
3786 | 3979 | </div>'; |
3787 | 3980 | |
3788 | 3981 | // Dont any tables so far? |
3789 | - if (!empty($upcontext['previous_tables'])) |
|
3790 | - foreach ($upcontext['previous_tables'] as $table) |
|
3982 | + if (!empty($upcontext['previous_tables'])) { |
|
3983 | + foreach ($upcontext['previous_tables'] as $table) |
|
3791 | 3984 | echo ' |
3792 | 3985 | <br>Completed Table: "', $table, '".'; |
3986 | + } |
|
3793 | 3987 | |
3794 | 3988 | echo ' |
3795 | 3989 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
@@ -3826,12 +4020,13 @@ discard block |
||
3826 | 4020 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
3827 | 4021 | |
3828 | 4022 | // If debug flood the screen. |
3829 | - if ($is_debug) |
|
3830 | - echo ' |
|
4023 | + if ($is_debug) { |
|
4024 | + echo ' |
|
3831 | 4025 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
3832 | 4026 | |
3833 | 4027 | if (document.getElementById(\'debug_section\').scrollHeight) |
3834 | 4028 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4029 | + } |
|
3835 | 4030 | |
3836 | 4031 | echo ' |
3837 | 4032 | // Get the next update... |
@@ -3864,8 +4059,9 @@ discard block |
||
3864 | 4059 | { |
3865 | 4060 | global $upcontext, $support_js, $is_debug, $timeLimitThreshold; |
3866 | 4061 | |
3867 | - if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) |
|
3868 | - $is_debug = true; |
|
4062 | + if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) { |
|
4063 | + $is_debug = true; |
|
4064 | + } |
|
3869 | 4065 | |
3870 | 4066 | echo ' |
3871 | 4067 | <h3>Executing database changes</h3> |
@@ -3880,8 +4076,9 @@ discard block |
||
3880 | 4076 | { |
3881 | 4077 | foreach ($upcontext['actioned_items'] as $num => $item) |
3882 | 4078 | { |
3883 | - if ($num != 0) |
|
3884 | - echo ' Successful!'; |
|
4079 | + if ($num != 0) { |
|
4080 | + echo ' Successful!'; |
|
4081 | + } |
|
3885 | 4082 | echo '<br>' . $item; |
3886 | 4083 | } |
3887 | 4084 | if (!empty($upcontext['changes_complete'])) |
@@ -3894,28 +4091,32 @@ discard block |
||
3894 | 4091 | $seconds = intval($active % 60); |
3895 | 4092 | |
3896 | 4093 | $totalTime = ''; |
3897 | - if ($hours > 0) |
|
3898 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
3899 | - if ($minutes > 0) |
|
3900 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
3901 | - if ($seconds > 0) |
|
3902 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4094 | + if ($hours > 0) { |
|
4095 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4096 | + } |
|
4097 | + if ($minutes > 0) { |
|
4098 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4099 | + } |
|
4100 | + if ($seconds > 0) { |
|
4101 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4102 | + } |
|
3903 | 4103 | } |
3904 | 4104 | |
3905 | - if ($is_debug && !empty($totalTime)) |
|
3906 | - echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
3907 | - else |
|
3908 | - echo ' Successful!<br><br>'; |
|
4105 | + if ($is_debug && !empty($totalTime)) { |
|
4106 | + echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
4107 | + } else { |
|
4108 | + echo ' Successful!<br><br>'; |
|
4109 | + } |
|
3909 | 4110 | |
3910 | 4111 | echo '<span id="commess" style="font-weight: bold;">1 Database Updates Complete! Click Continue to Proceed.</span><br>'; |
3911 | 4112 | } |
3912 | - } |
|
3913 | - else |
|
4113 | + } else |
|
3914 | 4114 | { |
3915 | 4115 | // Tell them how many files we have in total. |
3916 | - if ($upcontext['file_count'] > 1) |
|
3917 | - echo ' |
|
4116 | + if ($upcontext['file_count'] > 1) { |
|
4117 | + echo ' |
|
3918 | 4118 | <strong id="info1">Executing upgrade script <span id="file_done">', $upcontext['cur_file_num'], '</span> of ', $upcontext['file_count'], '.</strong>'; |
4119 | + } |
|
3919 | 4120 | |
3920 | 4121 | echo ' |
3921 | 4122 | <h3 id="info2"><strong>Executing:</strong> "<span id="cur_item_name">', $upcontext['current_item_name'], '</span>" (<span id="item_num">', $upcontext['current_item_num'], '</span> of <span id="total_items"><span id="item_count">', $upcontext['total_items'], '</span>', $upcontext['file_count'] > 1 ? ' - of this script' : '', ')</span></h3> |
@@ -3931,19 +4132,23 @@ discard block |
||
3931 | 4132 | $seconds = intval($active % 60); |
3932 | 4133 | |
3933 | 4134 | $totalTime = ''; |
3934 | - if ($hours > 0) |
|
3935 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
3936 | - if ($minutes > 0) |
|
3937 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
3938 | - if ($seconds > 0) |
|
3939 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4135 | + if ($hours > 0) { |
|
4136 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4137 | + } |
|
4138 | + if ($minutes > 0) { |
|
4139 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4140 | + } |
|
4141 | + if ($seconds > 0) { |
|
4142 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4143 | + } |
|
3940 | 4144 | } |
3941 | 4145 | |
3942 | 4146 | echo ' |
3943 | 4147 | <br><span id="upgradeCompleted">'; |
3944 | 4148 | |
3945 | - if (!empty($totalTime)) |
|
3946 | - echo 'Completed in ', $totalTime, '<br>'; |
|
4149 | + if (!empty($totalTime)) { |
|
4150 | + echo 'Completed in ', $totalTime, '<br>'; |
|
4151 | + } |
|
3947 | 4152 | |
3948 | 4153 | echo '</span> |
3949 | 4154 | <div id="debug_section" style="height: 59px; overflow: auto;"> |
@@ -3980,9 +4185,10 @@ discard block |
||
3980 | 4185 | var getData = ""; |
3981 | 4186 | var debugItems = ', $upcontext['debug_items'], ';'; |
3982 | 4187 | |
3983 | - if ($is_debug) |
|
3984 | - echo ' |
|
4188 | + if ($is_debug) { |
|
4189 | + echo ' |
|
3985 | 4190 | var upgradeStartTime = ' . $upcontext['started'] . ';'; |
4191 | + } |
|
3986 | 4192 | |
3987 | 4193 | echo ' |
3988 | 4194 | function getNextItem() |
@@ -4022,9 +4228,10 @@ discard block |
||
4022 | 4228 | document.getElementById("error_block").style.display = ""; |
4023 | 4229 | setInnerHTML(document.getElementById("error_message"), "Error retrieving information on step: " + (sDebugName == "" ? sLastString : sDebugName));'; |
4024 | 4230 | |
4025 | - if ($is_debug) |
|
4026 | - echo ' |
|
4231 | + if ($is_debug) { |
|
4232 | + echo ' |
|
4027 | 4233 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
4234 | + } |
|
4028 | 4235 | |
4029 | 4236 | echo ' |
4030 | 4237 | } |
@@ -4045,9 +4252,10 @@ discard block |
||
4045 | 4252 | document.getElementById("error_block").style.display = ""; |
4046 | 4253 | setInnerHTML(document.getElementById("error_message"), "Upgrade script appears to be going into a loop - step: " + sDebugName);'; |
4047 | 4254 | |
4048 | - if ($is_debug) |
|
4049 | - echo ' |
|
4255 | + if ($is_debug) { |
|
4256 | + echo ' |
|
4050 | 4257 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
4258 | + } |
|
4051 | 4259 | |
4052 | 4260 | echo ' |
4053 | 4261 | } |
@@ -4106,8 +4314,8 @@ discard block |
||
4106 | 4314 | if (bIsComplete && iDebugNum == -1 && curFile >= ', $upcontext['file_count'], ') |
4107 | 4315 | {'; |
4108 | 4316 | |
4109 | - if ($is_debug) |
|
4110 | - echo ' |
|
4317 | + if ($is_debug) { |
|
4318 | + echo ' |
|
4111 | 4319 | document.getElementById(\'debug_section\').style.display = "none"; |
4112 | 4320 | |
4113 | 4321 | var upgradeFinishedTime = parseInt(oXMLDoc.getElementsByTagName("curtime")[0].childNodes[0].nodeValue); |
@@ -4125,6 +4333,7 @@ discard block |
||
4125 | 4333 | totalTime = totalTime + diffSeconds + " second" + (diffSeconds > 1 ? "s" : ""); |
4126 | 4334 | |
4127 | 4335 | setInnerHTML(document.getElementById("upgradeCompleted"), "Completed in " + totalTime);'; |
4336 | + } |
|
4128 | 4337 | |
4129 | 4338 | echo ' |
4130 | 4339 | |
@@ -4132,9 +4341,10 @@ discard block |
||
4132 | 4341 | document.getElementById(\'contbutt\').disabled = 0; |
4133 | 4342 | document.getElementById(\'database_done\').value = 1;'; |
4134 | 4343 | |
4135 | - if ($upcontext['file_count'] > 1) |
|
4136 | - echo ' |
|
4344 | + if ($upcontext['file_count'] > 1) { |
|
4345 | + echo ' |
|
4137 | 4346 | document.getElementById(\'info1\').style.display = "none";'; |
4347 | + } |
|
4138 | 4348 | |
4139 | 4349 | echo ' |
4140 | 4350 | document.getElementById(\'info2\').style.display = "none"; |
@@ -4147,9 +4357,10 @@ discard block |
||
4147 | 4357 | lastItem = 0; |
4148 | 4358 | prevFile = curFile;'; |
4149 | 4359 | |
4150 | - if ($is_debug) |
|
4151 | - echo ' |
|
4360 | + if ($is_debug) { |
|
4361 | + echo ' |
|
4152 | 4362 | setOuterHTML(document.getElementById(\'debuginfo\'), \'Moving to next script file...done<br><span id="debuginfo"><\' + \'/span>\');'; |
4363 | + } |
|
4153 | 4364 | |
4154 | 4365 | echo ' |
4155 | 4366 | getNextItem(); |
@@ -4157,8 +4368,8 @@ discard block |
||
4157 | 4368 | }'; |
4158 | 4369 | |
4159 | 4370 | // If debug scroll the screen. |
4160 | - if ($is_debug) |
|
4161 | - echo ' |
|
4371 | + if ($is_debug) { |
|
4372 | + echo ' |
|
4162 | 4373 | if (iLastSubStepProgress == -1) |
4163 | 4374 | { |
4164 | 4375 | // Give it consistent dots. |
@@ -4177,6 +4388,7 @@ discard block |
||
4177 | 4388 | |
4178 | 4389 | if (document.getElementById(\'debug_section\').scrollHeight) |
4179 | 4390 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4391 | + } |
|
4180 | 4392 | |
4181 | 4393 | echo ' |
4182 | 4394 | // Update the page. |
@@ -4237,9 +4449,10 @@ discard block |
||
4237 | 4449 | }'; |
4238 | 4450 | |
4239 | 4451 | // Start things off assuming we've not errored. |
4240 | - if (empty($upcontext['error_message'])) |
|
4241 | - echo ' |
|
4452 | + if (empty($upcontext['error_message'])) { |
|
4453 | + echo ' |
|
4242 | 4454 | getNextItem();'; |
4455 | + } |
|
4243 | 4456 | |
4244 | 4457 | echo ' |
4245 | 4458 | //# sourceURL=dynamicScript-dbch.js |
@@ -4257,18 +4470,21 @@ discard block |
||
4257 | 4470 | <item num="', $upcontext['current_item_num'], '">', $upcontext['current_item_name'], '</item> |
4258 | 4471 | <debug num="', $upcontext['current_debug_item_num'], '" percent="', isset($upcontext['substep_progress']) ? $upcontext['substep_progress'] : '-1', '" complete="', empty($upcontext['completed_step']) ? 0 : 1, '">', $upcontext['current_debug_item_name'], '</debug>'; |
4259 | 4472 | |
4260 | - if (!empty($upcontext['error_message'])) |
|
4261 | - echo ' |
|
4473 | + if (!empty($upcontext['error_message'])) { |
|
4474 | + echo ' |
|
4262 | 4475 | <error>', $upcontext['error_message'], '</error>'; |
4476 | + } |
|
4263 | 4477 | |
4264 | - if (!empty($upcontext['error_string'])) |
|
4265 | - echo ' |
|
4478 | + if (!empty($upcontext['error_string'])) { |
|
4479 | + echo ' |
|
4266 | 4480 | <sql>', $upcontext['error_string'], '</sql>'; |
4481 | + } |
|
4267 | 4482 | |
4268 | - if ($is_debug) |
|
4269 | - echo ' |
|
4483 | + if ($is_debug) { |
|
4484 | + echo ' |
|
4270 | 4485 | <curtime>', time(), '</curtime>'; |
4271 | -} |
|
4486 | + } |
|
4487 | + } |
|
4272 | 4488 | |
4273 | 4489 | // Template for the UTF-8 conversion step. Basically a copy of the backup stuff with slight modifications.... |
4274 | 4490 | function template_convert_utf8() |
@@ -4287,18 +4503,20 @@ discard block |
||
4287 | 4503 | </div>'; |
4288 | 4504 | |
4289 | 4505 | // Done any tables so far? |
4290 | - if (!empty($upcontext['previous_tables'])) |
|
4291 | - foreach ($upcontext['previous_tables'] as $table) |
|
4506 | + if (!empty($upcontext['previous_tables'])) { |
|
4507 | + foreach ($upcontext['previous_tables'] as $table) |
|
4292 | 4508 | echo ' |
4293 | 4509 | <br>Completed Table: "', $table, '".'; |
4510 | + } |
|
4294 | 4511 | |
4295 | 4512 | echo ' |
4296 | 4513 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3>'; |
4297 | 4514 | |
4298 | 4515 | // If we dropped their index, let's let them know |
4299 | - if ($upcontext['dropping_index']) |
|
4300 | - echo ' |
|
4516 | + if ($upcontext['dropping_index']) { |
|
4517 | + echo ' |
|
4301 | 4518 | <br><span id="indexmsg" style="font-weight: bold; font-style: italic; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Please note that your fulltext index was dropped to facilitate the conversion and will need to be recreated in the admin area after the upgrade is complete.</span>'; |
4519 | + } |
|
4302 | 4520 | |
4303 | 4521 | // Completion notification |
4304 | 4522 | echo ' |
@@ -4335,12 +4553,13 @@ discard block |
||
4335 | 4553 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
4336 | 4554 | |
4337 | 4555 | // If debug flood the screen. |
4338 | - if ($is_debug) |
|
4339 | - echo ' |
|
4556 | + if ($is_debug) { |
|
4557 | + echo ' |
|
4340 | 4558 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
4341 | 4559 | |
4342 | 4560 | if (document.getElementById(\'debug_section\').scrollHeight) |
4343 | 4561 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4562 | + } |
|
4344 | 4563 | |
4345 | 4564 | echo ' |
4346 | 4565 | // Get the next update... |
@@ -4388,19 +4607,21 @@ discard block |
||
4388 | 4607 | </div>'; |
4389 | 4608 | |
4390 | 4609 | // Dont any tables so far? |
4391 | - if (!empty($upcontext['previous_tables'])) |
|
4392 | - foreach ($upcontext['previous_tables'] as $table) |
|
4610 | + if (!empty($upcontext['previous_tables'])) { |
|
4611 | + foreach ($upcontext['previous_tables'] as $table) |
|
4393 | 4612 | echo ' |
4394 | 4613 | <br>Completed Table: "', $table, '".'; |
4614 | + } |
|
4395 | 4615 | |
4396 | 4616 | echo ' |
4397 | 4617 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
4398 | 4618 | <br><span id="commess" style="font-weight: bold; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Convert to JSON Complete! Click Continue to Proceed.</span>'; |
4399 | 4619 | |
4400 | 4620 | // Try to make sure substep was reset. |
4401 | - if ($upcontext['cur_table_num'] == $upcontext['table_count']) |
|
4402 | - echo ' |
|
4621 | + if ($upcontext['cur_table_num'] == $upcontext['table_count']) { |
|
4622 | + echo ' |
|
4403 | 4623 | <input type="hidden" name="substep" id="substep" value="0">'; |
4624 | + } |
|
4404 | 4625 | |
4405 | 4626 | // Continue please! |
4406 | 4627 | $upcontext['continue'] = $support_js ? 2 : 1; |
@@ -4433,12 +4654,13 @@ discard block |
||
4433 | 4654 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
4434 | 4655 | |
4435 | 4656 | // If debug flood the screen. |
4436 | - if ($is_debug) |
|
4437 | - echo ' |
|
4657 | + if ($is_debug) { |
|
4658 | + echo ' |
|
4438 | 4659 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
4439 | 4660 | |
4440 | 4661 | if (document.getElementById(\'debug_section\').scrollHeight) |
4441 | 4662 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4663 | + } |
|
4442 | 4664 | |
4443 | 4665 | echo ' |
4444 | 4666 | // Get the next update... |
@@ -4474,8 +4696,8 @@ discard block |
||
4474 | 4696 | <h3>That wasn\'t so hard, was it? Now you are ready to use <a href="', $boardurl, '/index.php">your installation of SMF</a>. Hope you like it!</h3> |
4475 | 4697 | <form action="', $boardurl, '/index.php">'; |
4476 | 4698 | |
4477 | - if (!empty($upcontext['can_delete_script'])) |
|
4478 | - echo ' |
|
4699 | + if (!empty($upcontext['can_delete_script'])) { |
|
4700 | + echo ' |
|
4479 | 4701 | <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete(this);" class="input_check"> Delete upgrade.php and its data files now</label> <em>(doesn\'t work on all servers).</em> |
4480 | 4702 | <script> |
4481 | 4703 | function doTheDelete(theCheck) |
@@ -4487,6 +4709,7 @@ discard block |
||
4487 | 4709 | } |
4488 | 4710 | </script> |
4489 | 4711 | <img src="', $settings['default_theme_url'], '/images/blank.png" alt="" id="delete_upgrader"><br>'; |
4712 | + } |
|
4490 | 4713 | |
4491 | 4714 | $active = time() - $upcontext['started']; |
4492 | 4715 | $hours = floor($active / 3600); |
@@ -4496,16 +4719,20 @@ discard block |
||
4496 | 4719 | if ($is_debug) |
4497 | 4720 | { |
4498 | 4721 | $totalTime = ''; |
4499 | - if ($hours > 0) |
|
4500 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4501 | - if ($minutes > 0) |
|
4502 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4503 | - if ($seconds > 0) |
|
4504 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4722 | + if ($hours > 0) { |
|
4723 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4724 | + } |
|
4725 | + if ($minutes > 0) { |
|
4726 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4727 | + } |
|
4728 | + if ($seconds > 0) { |
|
4729 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4730 | + } |
|
4505 | 4731 | } |
4506 | 4732 | |
4507 | - if ($is_debug && !empty($totalTime)) |
|
4508 | - echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
4733 | + if ($is_debug && !empty($totalTime)) { |
|
4734 | + echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
4735 | + } |
|
4509 | 4736 | |
4510 | 4737 | echo '<br> |
4511 | 4738 | If you had any problems with this upgrade, or have any problems using SMF, please don\'t hesitate to <a href="https://www.simplemachines.org/community/index.php">look to us for assistance</a>.<br> |
@@ -4532,8 +4759,9 @@ discard block |
||
4532 | 4759 | |
4533 | 4760 | $current_substep = $_GET['substep']; |
4534 | 4761 | |
4535 | - if (empty($_GET['a'])) |
|
4536 | - $_GET['a'] = 0; |
|
4762 | + if (empty($_GET['a'])) { |
|
4763 | + $_GET['a'] = 0; |
|
4764 | + } |
|
4537 | 4765 | $step_progress['name'] = 'Converting ips'; |
4538 | 4766 | $step_progress['current'] = $_GET['a']; |
4539 | 4767 | |
@@ -4576,16 +4804,19 @@ discard block |
||
4576 | 4804 | 'empty' => '', |
4577 | 4805 | 'limit' => $limit, |
4578 | 4806 | )); |
4579 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
4580 | - $arIp[] = $row[$oldCol]; |
|
4807 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
4808 | + $arIp[] = $row[$oldCol]; |
|
4809 | + } |
|
4581 | 4810 | $smcFunc['db_free_result']($request); |
4582 | 4811 | |
4583 | 4812 | // Special case, null ip could keep us in a loop. |
4584 | - if (is_null($arIp[0])) |
|
4585 | - unset($arIp[0]); |
|
4813 | + if (is_null($arIp[0])) { |
|
4814 | + unset($arIp[0]); |
|
4815 | + } |
|
4586 | 4816 | |
4587 | - if (empty($arIp)) |
|
4588 | - $is_done = true; |
|
4817 | + if (empty($arIp)) { |
|
4818 | + $is_done = true; |
|
4819 | + } |
|
4589 | 4820 | |
4590 | 4821 | $updates = array(); |
4591 | 4822 | $cases = array(); |
@@ -4594,16 +4825,18 @@ discard block |
||
4594 | 4825 | { |
4595 | 4826 | $arIp[$i] = trim($arIp[$i]); |
4596 | 4827 | |
4597 | - if (empty($arIp[$i])) |
|
4598 | - continue; |
|
4828 | + if (empty($arIp[$i])) { |
|
4829 | + continue; |
|
4830 | + } |
|
4599 | 4831 | |
4600 | 4832 | $updates['ip' . $i] = $arIp[$i]; |
4601 | 4833 | $cases[$arIp[$i]] = 'WHEN ' . $oldCol . ' = {string:ip' . $i . '} THEN {inet:ip' . $i . '}'; |
4602 | 4834 | |
4603 | 4835 | if ($setSize > 0 && $i % $setSize === 0) |
4604 | 4836 | { |
4605 | - if (count($updates) == 1) |
|
4606 | - continue; |
|
4837 | + if (count($updates) == 1) { |
|
4838 | + continue; |
|
4839 | + } |
|
4607 | 4840 | |
4608 | 4841 | $updates['whereSet'] = array_values($updates); |
4609 | 4842 | $smcFunc['db_query']('', ' |
@@ -4637,8 +4870,7 @@ discard block |
||
4637 | 4870 | 'ip' => $ip |
4638 | 4871 | )); |
4639 | 4872 | } |
4640 | - } |
|
4641 | - else |
|
4873 | + } else |
|
4642 | 4874 | { |
4643 | 4875 | $updates['whereSet'] = array_values($updates); |
4644 | 4876 | $smcFunc['db_query']('', ' |
@@ -4652,9 +4884,9 @@ discard block |
||
4652 | 4884 | $updates |
4653 | 4885 | ); |
4654 | 4886 | } |
4887 | + } else { |
|
4888 | + $is_done = true; |
|
4655 | 4889 | } |
4656 | - else |
|
4657 | - $is_done = true; |
|
4658 | 4890 | |
4659 | 4891 | $_GET['a'] += $limit; |
4660 | 4892 | $step_progress['current'] = $_GET['a']; |
@@ -4680,10 +4912,11 @@ discard block |
||
4680 | 4912 | |
4681 | 4913 | $columns = $smcFunc['db_list_columns']($targetTable, true); |
4682 | 4914 | |
4683 | - if (isset($columns[$column])) |
|
4684 | - return $columns[$column]; |
|
4685 | - else |
|
4686 | - return null; |
|
4687 | -} |
|
4915 | + if (isset($columns[$column])) { |
|
4916 | + return $columns[$column]; |
|
4917 | + } else { |
|
4918 | + return null; |
|
4919 | + } |
|
4920 | + } |
|
4688 | 4921 | |
4689 | 4922 | ?> |
4690 | 4923 | \ No newline at end of file |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
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) |
@@ -33,8 +34,8 @@ discard block |
||
33 | 34 | global $smcFunc, $mysql_set_mode; |
34 | 35 | |
35 | 36 | // Map some database specific functions, only do this once. |
36 | - if (!isset($smcFunc['db_fetch_assoc'])) |
|
37 | - $smcFunc += array( |
|
37 | + if (!isset($smcFunc['db_fetch_assoc'])) { |
|
38 | + $smcFunc += array( |
|
38 | 39 | 'db_query' => 'smf_db_query', |
39 | 40 | 'db_quote' => 'smf_db_quote', |
40 | 41 | 'db_fetch_assoc' => 'mysqli_fetch_assoc', |
@@ -60,9 +61,11 @@ discard block |
||
60 | 61 | 'db_mb4' => false, |
61 | 62 | 'db_ping' => 'mysqli_ping', |
62 | 63 | ); |
64 | + } |
|
63 | 65 | |
64 | - if (!empty($db_options['persist'])) |
|
65 | - $db_server = 'p:' . $db_server; |
|
66 | + if (!empty($db_options['persist'])) { |
|
67 | + $db_server = 'p:' . $db_server; |
|
68 | + } |
|
66 | 69 | |
67 | 70 | $connection = mysqli_init(); |
68 | 71 | |
@@ -71,31 +74,35 @@ discard block |
||
71 | 74 | $success = false; |
72 | 75 | |
73 | 76 | if ($connection) { |
74 | - if (!empty($db_options['port'])) |
|
75 | - $success = mysqli_real_connect($connection, $db_server, $db_user, $db_passwd, '', $db_options['port'], null, $flags); |
|
76 | - else |
|
77 | - $success = mysqli_real_connect($connection, $db_server, $db_user, $db_passwd, '', 0, null, $flags); |
|
77 | + if (!empty($db_options['port'])) { |
|
78 | + $success = mysqli_real_connect($connection, $db_server, $db_user, $db_passwd, '', $db_options['port'], null, $flags); |
|
79 | + } else { |
|
80 | + $success = mysqli_real_connect($connection, $db_server, $db_user, $db_passwd, '', 0, null, $flags); |
|
81 | + } |
|
78 | 82 | } |
79 | 83 | |
80 | 84 | // Something's wrong, show an error if its fatal (which we assume it is) |
81 | 85 | if ($success === false) |
82 | 86 | { |
83 | - if (!empty($db_options['non_fatal'])) |
|
84 | - return null; |
|
85 | - else |
|
86 | - display_db_error(); |
|
87 | + if (!empty($db_options['non_fatal'])) { |
|
88 | + return null; |
|
89 | + } else { |
|
90 | + display_db_error(); |
|
91 | + } |
|
87 | 92 | } |
88 | 93 | |
89 | 94 | // Select the database, unless told not to |
90 | - if (empty($db_options['dont_select_db']) && !@mysqli_select_db($connection, $db_name) && empty($db_options['non_fatal'])) |
|
91 | - display_db_error(); |
|
95 | + if (empty($db_options['dont_select_db']) && !@mysqli_select_db($connection, $db_name) && empty($db_options['non_fatal'])) { |
|
96 | + display_db_error(); |
|
97 | + } |
|
92 | 98 | |
93 | 99 | // This makes it possible to have SMF automatically change the sql_mode and autocommit if needed. |
94 | - if (isset($mysql_set_mode) && $mysql_set_mode === true) |
|
95 | - $smcFunc['db_query']('', 'SET sql_mode = \'\', AUTOCOMMIT = 1', |
|
100 | + if (isset($mysql_set_mode) && $mysql_set_mode === true) { |
|
101 | + $smcFunc['db_query']('', 'SET sql_mode = \'\', AUTOCOMMIT = 1', |
|
96 | 102 | array(), |
97 | 103 | false |
98 | 104 | ); |
105 | + } |
|
99 | 106 | |
100 | 107 | return $connection; |
101 | 108 | } |
@@ -166,38 +173,46 @@ discard block |
||
166 | 173 | global $db_callback, $user_info, $db_prefix, $smcFunc; |
167 | 174 | |
168 | 175 | list ($values, $connection) = $db_callback; |
169 | - if (!is_object($connection)) |
|
170 | - display_db_error(); |
|
176 | + if (!is_object($connection)) { |
|
177 | + display_db_error(); |
|
178 | + } |
|
171 | 179 | |
172 | - if ($matches[1] === 'db_prefix') |
|
173 | - return $db_prefix; |
|
180 | + if ($matches[1] === 'db_prefix') { |
|
181 | + return $db_prefix; |
|
182 | + } |
|
174 | 183 | |
175 | 184 | if (!empty($user_info)) |
176 | 185 | { |
177 | - foreach (array_keys($user_info) as $key) |
|
178 | - if (strpos($key, 'query_') !== false && $key === $matches[1]) |
|
186 | + foreach (array_keys($user_info) as $key) { |
|
187 | + if (strpos($key, 'query_') !== false && $key === $matches[1]) |
|
179 | 188 | return $user_info[$matches[1]]; |
189 | + } |
|
180 | 190 | } |
181 | 191 | |
182 | - if ($matches[1] === 'empty') |
|
183 | - return '\'\''; |
|
192 | + if ($matches[1] === 'empty') { |
|
193 | + return '\'\''; |
|
194 | + } |
|
184 | 195 | |
185 | - if (!isset($matches[2])) |
|
186 | - smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__); |
|
196 | + if (!isset($matches[2])) { |
|
197 | + smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__); |
|
198 | + } |
|
187 | 199 | |
188 | - if ($matches[1] === 'literal') |
|
189 | - return '\'' . mysqli_real_escape_string($connection, $matches[2]) . '\''; |
|
200 | + if ($matches[1] === 'literal') { |
|
201 | + return '\'' . mysqli_real_escape_string($connection, $matches[2]) . '\''; |
|
202 | + } |
|
190 | 203 | |
191 | - if (!isset($values[$matches[2]])) |
|
192 | - 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__); |
|
204 | + if (!isset($values[$matches[2]])) { |
|
205 | + 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__); |
|
206 | + } |
|
193 | 207 | |
194 | 208 | $replacement = $values[$matches[2]]; |
195 | 209 | |
196 | 210 | switch ($matches[1]) |
197 | 211 | { |
198 | 212 | case 'int': |
199 | - if (!is_numeric($replacement) || (string) $replacement !== (string) (int) $replacement) |
|
200 | - smf_db_error_backtrace('Wrong value type sent to the database. Integer expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
213 | + if (!is_numeric($replacement) || (string) $replacement !== (string) (int) $replacement) { |
|
214 | + smf_db_error_backtrace('Wrong value type sent to the database. Integer expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
215 | + } |
|
201 | 216 | return (string) (int) $replacement; |
202 | 217 | break; |
203 | 218 | |
@@ -209,65 +224,73 @@ discard block |
||
209 | 224 | case 'array_int': |
210 | 225 | if (is_array($replacement)) |
211 | 226 | { |
212 | - if (empty($replacement)) |
|
213 | - smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
227 | + if (empty($replacement)) { |
|
228 | + smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
229 | + } |
|
214 | 230 | |
215 | 231 | foreach ($replacement as $key => $value) |
216 | 232 | { |
217 | - if (!is_numeric($value) || (string) $value !== (string) (int) $value) |
|
218 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
233 | + if (!is_numeric($value) || (string) $value !== (string) (int) $value) { |
|
234 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
235 | + } |
|
219 | 236 | |
220 | 237 | $replacement[$key] = (string) (int) $value; |
221 | 238 | } |
222 | 239 | |
223 | 240 | return implode(', ', $replacement); |
241 | + } else { |
|
242 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
224 | 243 | } |
225 | - else |
|
226 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
227 | 244 | |
228 | 245 | break; |
229 | 246 | |
230 | 247 | case 'array_string': |
231 | 248 | if (is_array($replacement)) |
232 | 249 | { |
233 | - if (empty($replacement)) |
|
234 | - smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
250 | + if (empty($replacement)) { |
|
251 | + smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
252 | + } |
|
235 | 253 | |
236 | - foreach ($replacement as $key => $value) |
|
237 | - $replacement[$key] = sprintf('\'%1$s\'', mysqli_real_escape_string($connection, $value)); |
|
254 | + foreach ($replacement as $key => $value) { |
|
255 | + $replacement[$key] = sprintf('\'%1$s\'', mysqli_real_escape_string($connection, $value)); |
|
256 | + } |
|
238 | 257 | |
239 | 258 | return implode(', ', $replacement); |
259 | + } else { |
|
260 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
240 | 261 | } |
241 | - else |
|
242 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
243 | 262 | break; |
244 | 263 | |
245 | 264 | case 'date': |
246 | - if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1) |
|
247 | - return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]); |
|
248 | - else |
|
249 | - smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
265 | + if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1) { |
|
266 | + return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]); |
|
267 | + } else { |
|
268 | + smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
269 | + } |
|
250 | 270 | break; |
251 | 271 | |
252 | 272 | case 'time': |
253 | - if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1) |
|
254 | - return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]); |
|
255 | - else |
|
256 | - smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
273 | + if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1) { |
|
274 | + return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]); |
|
275 | + } else { |
|
276 | + smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
277 | + } |
|
257 | 278 | break; |
258 | 279 | |
259 | 280 | case 'datetime': |
260 | - 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) |
|
261 | - return 'str_to_date('. |
|
281 | + 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) { |
|
282 | + return 'str_to_date('. |
|
262 | 283 | 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]). |
263 | 284 | ',\'%Y-%m-%d %h:%i:%s\')'; |
264 | - else |
|
265 | - smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
285 | + } else { |
|
286 | + smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
287 | + } |
|
266 | 288 | break; |
267 | 289 | |
268 | 290 | case 'float': |
269 | - if (!is_numeric($replacement)) |
|
270 | - smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
291 | + if (!is_numeric($replacement)) { |
|
292 | + smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
293 | + } |
|
271 | 294 | return (string) (float) $replacement; |
272 | 295 | break; |
273 | 296 | |
@@ -281,32 +304,37 @@ discard block |
||
281 | 304 | break; |
282 | 305 | |
283 | 306 | case 'inet': |
284 | - if ($replacement == 'null' || $replacement == '') |
|
285 | - return 'null'; |
|
286 | - if (!isValidIP($replacement)) |
|
287 | - smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
307 | + if ($replacement == 'null' || $replacement == '') { |
|
308 | + return 'null'; |
|
309 | + } |
|
310 | + if (!isValidIP($replacement)) { |
|
311 | + smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
312 | + } |
|
288 | 313 | //we don't use the native support of mysql > 5.6.2 |
289 | 314 | return sprintf('unhex(\'%1$s\')', bin2hex(inet_pton($replacement))); |
290 | 315 | |
291 | 316 | case 'array_inet': |
292 | 317 | if (is_array($replacement)) |
293 | 318 | { |
294 | - if (empty($replacement)) |
|
295 | - smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
319 | + if (empty($replacement)) { |
|
320 | + smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
321 | + } |
|
296 | 322 | |
297 | 323 | foreach ($replacement as $key => $value) |
298 | 324 | { |
299 | - if ($replacement == 'null' || $replacement == '') |
|
300 | - $replacement[$key] = 'null'; |
|
301 | - if (!isValidIP($value)) |
|
302 | - smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
325 | + if ($replacement == 'null' || $replacement == '') { |
|
326 | + $replacement[$key] = 'null'; |
|
327 | + } |
|
328 | + if (!isValidIP($value)) { |
|
329 | + smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
330 | + } |
|
303 | 331 | $replacement[$key] = sprintf('unhex(\'%1$s\')', bin2hex(inet_pton($value))); |
304 | 332 | } |
305 | 333 | |
306 | 334 | return implode(', ', $replacement); |
335 | + } else { |
|
336 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
307 | 337 | } |
308 | - else |
|
309 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
310 | 338 | break; |
311 | 339 | |
312 | 340 | default: |
@@ -382,22 +410,25 @@ discard block |
||
382 | 410 | // Are we in SSI mode? If so try that username and password first |
383 | 411 | if (SMF == 'SSI' && !empty($ssi_db_user) && !empty($ssi_db_passwd)) |
384 | 412 | { |
385 | - if (empty($db_persist)) |
|
386 | - $db_connection = @mysqli_connect($db_server, $ssi_db_user, $ssi_db_passwd); |
|
387 | - else |
|
388 | - $db_connection = @mysqli_connect('p:' . $db_server, $ssi_db_user, $ssi_db_passwd); |
|
413 | + if (empty($db_persist)) { |
|
414 | + $db_connection = @mysqli_connect($db_server, $ssi_db_user, $ssi_db_passwd); |
|
415 | + } else { |
|
416 | + $db_connection = @mysqli_connect('p:' . $db_server, $ssi_db_user, $ssi_db_passwd); |
|
417 | + } |
|
389 | 418 | } |
390 | 419 | // Fall back to the regular username and password if need be |
391 | 420 | if (!$db_connection) |
392 | 421 | { |
393 | - if (empty($db_persist)) |
|
394 | - $db_connection = @mysqli_connect($db_server, $db_user, $db_passwd); |
|
395 | - else |
|
396 | - $db_connection = @mysqli_connect('p:' . $db_server, $db_user, $db_passwd); |
|
422 | + if (empty($db_persist)) { |
|
423 | + $db_connection = @mysqli_connect($db_server, $db_user, $db_passwd); |
|
424 | + } else { |
|
425 | + $db_connection = @mysqli_connect('p:' . $db_server, $db_user, $db_passwd); |
|
426 | + } |
|
397 | 427 | } |
398 | 428 | |
399 | - if (!$db_connection || !@mysqli_select_db($db_connection, $db_name)) |
|
400 | - $db_connection = false; |
|
429 | + if (!$db_connection || !@mysqli_select_db($db_connection, $db_name)) { |
|
430 | + $db_connection = false; |
|
431 | + } |
|
401 | 432 | |
402 | 433 | $connection = $db_connection; |
403 | 434 | } |
@@ -405,18 +436,20 @@ discard block |
||
405 | 436 | // One more query.... |
406 | 437 | $db_count = !isset($db_count) ? 1 : $db_count + 1; |
407 | 438 | |
408 | - if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override'])) |
|
409 | - smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__); |
|
439 | + if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override'])) { |
|
440 | + smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__); |
|
441 | + } |
|
410 | 442 | |
411 | 443 | // Use "ORDER BY null" to prevent Mysql doing filesorts for Group By clauses without an Order By |
412 | 444 | if (strpos($db_string, 'GROUP BY') !== false && strpos($db_string, 'ORDER BY') === false && preg_match('~^\s+SELECT~i', $db_string)) |
413 | 445 | { |
414 | 446 | // Add before LIMIT |
415 | - if ($pos = strpos($db_string, 'LIMIT ')) |
|
416 | - $db_string = substr($db_string, 0, $pos) . "\t\t\tORDER BY null\n" . substr($db_string, $pos, strlen($db_string)); |
|
417 | - else |
|
418 | - // Append it. |
|
447 | + if ($pos = strpos($db_string, 'LIMIT ')) { |
|
448 | + $db_string = substr($db_string, 0, $pos) . "\t\t\tORDER BY null\n" . substr($db_string, $pos, strlen($db_string)); |
|
449 | + } else { |
|
450 | + // Append it. |
|
419 | 451 | $db_string .= "\n\t\t\tORDER BY null"; |
452 | + } |
|
420 | 453 | } |
421 | 454 | |
422 | 455 | if (empty($db_values['security_override']) && (!empty($db_values) || strpos($db_string, '{db_prefix}') !== false)) |
@@ -438,8 +471,9 @@ discard block |
||
438 | 471 | list ($file, $line) = smf_db_error_backtrace('', '', 'return', __FILE__, __LINE__); |
439 | 472 | |
440 | 473 | // Initialize $db_cache if not already initialized. |
441 | - if (!isset($db_cache)) |
|
442 | - $db_cache = array(); |
|
474 | + if (!isset($db_cache)) { |
|
475 | + $db_cache = array(); |
|
476 | + } |
|
443 | 477 | |
444 | 478 | if (!empty($_SESSION['debug_redirect'])) |
445 | 479 | { |
@@ -465,17 +499,18 @@ discard block |
||
465 | 499 | while (true) |
466 | 500 | { |
467 | 501 | $pos = strpos($db_string, '\'', $pos + 1); |
468 | - if ($pos === false) |
|
469 | - break; |
|
502 | + if ($pos === false) { |
|
503 | + break; |
|
504 | + } |
|
470 | 505 | $clean .= substr($db_string, $old_pos, $pos - $old_pos); |
471 | 506 | |
472 | 507 | while (true) |
473 | 508 | { |
474 | 509 | $pos1 = strpos($db_string, '\'', $pos + 1); |
475 | 510 | $pos2 = strpos($db_string, '\\', $pos + 1); |
476 | - if ($pos1 === false) |
|
477 | - break; |
|
478 | - elseif ($pos2 === false || $pos2 > $pos1) |
|
511 | + if ($pos1 === false) { |
|
512 | + break; |
|
513 | + } elseif ($pos2 === false || $pos2 > $pos1) |
|
479 | 514 | { |
480 | 515 | $pos = $pos1; |
481 | 516 | break; |
@@ -491,29 +526,35 @@ discard block |
||
491 | 526 | $clean = trim(strtolower(preg_replace($allowed_comments_from, $allowed_comments_to, $clean))); |
492 | 527 | |
493 | 528 | // Comments? We don't use comments in our queries, we leave 'em outside! |
494 | - if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false) |
|
495 | - $fail = true; |
|
529 | + if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false) { |
|
530 | + $fail = true; |
|
531 | + } |
|
496 | 532 | // Trying to change passwords, slow us down, or something? |
497 | - elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0) |
|
498 | - $fail = true; |
|
499 | - elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0) |
|
500 | - $fail = true; |
|
533 | + elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0) { |
|
534 | + $fail = true; |
|
535 | + } elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0) { |
|
536 | + $fail = true; |
|
537 | + } |
|
501 | 538 | |
502 | - if (!empty($fail) && function_exists('log_error')) |
|
503 | - smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__); |
|
539 | + if (!empty($fail) && function_exists('log_error')) { |
|
540 | + smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__); |
|
541 | + } |
|
504 | 542 | } |
505 | 543 | |
506 | - if (empty($db_unbuffered)) |
|
507 | - $ret = @mysqli_query($connection, $db_string); |
|
508 | - else |
|
509 | - $ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT); |
|
544 | + if (empty($db_unbuffered)) { |
|
545 | + $ret = @mysqli_query($connection, $db_string); |
|
546 | + } else { |
|
547 | + $ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT); |
|
548 | + } |
|
510 | 549 | |
511 | - if ($ret === false && empty($db_values['db_error_skip'])) |
|
512 | - $ret = smf_db_error($db_string, $connection); |
|
550 | + if ($ret === false && empty($db_values['db_error_skip'])) { |
|
551 | + $ret = smf_db_error($db_string, $connection); |
|
552 | + } |
|
513 | 553 | |
514 | 554 | // Debugging. |
515 | - if (isset($db_show_debug) && $db_show_debug === true) |
|
516 | - $db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st)); |
|
555 | + if (isset($db_show_debug) && $db_show_debug === true) { |
|
556 | + $db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st)); |
|
557 | + } |
|
517 | 558 | |
518 | 559 | return $ret; |
519 | 560 | } |
@@ -560,12 +601,13 @@ discard block |
||
560 | 601 | // Decide which connection to use |
561 | 602 | $connection = $connection === null ? $db_connection : $connection; |
562 | 603 | |
563 | - if ($type == 'begin') |
|
564 | - return @mysqli_query($connection, 'BEGIN'); |
|
565 | - elseif ($type == 'rollback') |
|
566 | - return @mysqli_query($connection, 'ROLLBACK'); |
|
567 | - elseif ($type == 'commit') |
|
568 | - return @mysqli_query($connection, 'COMMIT'); |
|
604 | + if ($type == 'begin') { |
|
605 | + return @mysqli_query($connection, 'BEGIN'); |
|
606 | + } elseif ($type == 'rollback') { |
|
607 | + return @mysqli_query($connection, 'ROLLBACK'); |
|
608 | + } elseif ($type == 'commit') { |
|
609 | + return @mysqli_query($connection, 'COMMIT'); |
|
610 | + } |
|
569 | 611 | |
570 | 612 | return false; |
571 | 613 | } |
@@ -605,8 +647,9 @@ discard block |
||
605 | 647 | // 2013: Lost connection to server during query. |
606 | 648 | |
607 | 649 | // Log the error. |
608 | - if ($query_errno != 1213 && $query_errno != 1205 && function_exists('log_error')) |
|
609 | - log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n$db_string" : ''), 'database', $file, $line); |
|
650 | + if ($query_errno != 1213 && $query_errno != 1205 && function_exists('log_error')) { |
|
651 | + log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n$db_string" : ''), 'database', $file, $line); |
|
652 | + } |
|
610 | 653 | |
611 | 654 | // Database error auto fixing ;). |
612 | 655 | if (function_exists('cache_get_data') && (!isset($modSettings['autoFixDatabase']) || $modSettings['autoFixDatabase'] == '1')) |
@@ -615,8 +658,9 @@ discard block |
||
615 | 658 | $old_cache = @$modSettings['cache_enable']; |
616 | 659 | $modSettings['cache_enable'] = '1'; |
617 | 660 | |
618 | - if (($temp = cache_get_data('db_last_error', 600)) !== null) |
|
619 | - $db_last_error = max(@$db_last_error, $temp); |
|
661 | + if (($temp = cache_get_data('db_last_error', 600)) !== null) { |
|
662 | + $db_last_error = max(@$db_last_error, $temp); |
|
663 | + } |
|
620 | 664 | |
621 | 665 | if (@$db_last_error < time() - 3600 * 24 * 3) |
622 | 666 | { |
@@ -632,8 +676,9 @@ discard block |
||
632 | 676 | foreach ($tables as $table) |
633 | 677 | { |
634 | 678 | // Now, it's still theoretically possible this could be an injection. So backtick it! |
635 | - if (trim($table) != '') |
|
636 | - $fix_tables[] = '`' . strtr(trim($table), array('`' => '')) . '`'; |
|
679 | + if (trim($table) != '') { |
|
680 | + $fix_tables[] = '`' . strtr(trim($table), array('`' => '')) . '`'; |
|
681 | + } |
|
637 | 682 | } |
638 | 683 | } |
639 | 684 | |
@@ -642,8 +687,9 @@ discard block |
||
642 | 687 | // Table crashed. Let's try to fix it. |
643 | 688 | elseif ($query_errno == 1016) |
644 | 689 | { |
645 | - if (preg_match('~\'([^\.\']+)~', $query_error, $match) != 0) |
|
646 | - $fix_tables = array('`' . $match[1] . '`'); |
|
690 | + if (preg_match('~\'([^\.\']+)~', $query_error, $match) != 0) { |
|
691 | + $fix_tables = array('`' . $match[1] . '`'); |
|
692 | + } |
|
647 | 693 | } |
648 | 694 | // Indexes crashed. Should be easy to fix! |
649 | 695 | elseif ($query_errno == 1034 || $query_errno == 1035) |
@@ -662,13 +708,15 @@ discard block |
||
662 | 708 | |
663 | 709 | // Make a note of the REPAIR... |
664 | 710 | cache_put_data('db_last_error', time(), 600); |
665 | - if (($temp = cache_get_data('db_last_error', 600)) === null) |
|
666 | - updateSettingsFile(array('db_last_error' => time())); |
|
711 | + if (($temp = cache_get_data('db_last_error', 600)) === null) { |
|
712 | + updateSettingsFile(array('db_last_error' => time())); |
|
713 | + } |
|
667 | 714 | |
668 | 715 | // Attempt to find and repair the broken table. |
669 | - foreach ($fix_tables as $table) |
|
670 | - $smcFunc['db_query']('', " |
|
716 | + foreach ($fix_tables as $table) { |
|
717 | + $smcFunc['db_query']('', " |
|
671 | 718 | REPAIR TABLE $table", false, false); |
719 | + } |
|
672 | 720 | |
673 | 721 | // And send off an email! |
674 | 722 | sendmail($webmaster_email, $txt['database_error'], $txt['tried_to_repair'], null, 'dberror'); |
@@ -677,11 +725,12 @@ discard block |
||
677 | 725 | |
678 | 726 | // Try the query again...? |
679 | 727 | $ret = $smcFunc['db_query']('', $db_string, false, false); |
680 | - if ($ret !== false) |
|
681 | - return $ret; |
|
728 | + if ($ret !== false) { |
|
729 | + return $ret; |
|
730 | + } |
|
731 | + } else { |
|
732 | + $modSettings['cache_enable'] = $old_cache; |
|
682 | 733 | } |
683 | - else |
|
684 | - $modSettings['cache_enable'] = $old_cache; |
|
685 | 734 | |
686 | 735 | // Check for the "lost connection" or "deadlock found" errors - and try it just one more time. |
687 | 736 | if (in_array($query_errno, array(1205, 1213, 2006, 2013))) |
@@ -691,22 +740,25 @@ discard block |
||
691 | 740 | // Are we in SSI mode? If so try that username and password first |
692 | 741 | if (SMF == 'SSI' && !empty($ssi_db_user) && !empty($ssi_db_passwd)) |
693 | 742 | { |
694 | - if (empty($db_persist)) |
|
695 | - $db_connection = @mysqli_connect($db_server, $ssi_db_user, $ssi_db_passwd); |
|
696 | - else |
|
697 | - $db_connection = @mysqli_connect('p:' . $db_server, $ssi_db_user, $ssi_db_passwd); |
|
743 | + if (empty($db_persist)) { |
|
744 | + $db_connection = @mysqli_connect($db_server, $ssi_db_user, $ssi_db_passwd); |
|
745 | + } else { |
|
746 | + $db_connection = @mysqli_connect('p:' . $db_server, $ssi_db_user, $ssi_db_passwd); |
|
747 | + } |
|
698 | 748 | } |
699 | 749 | // Fall back to the regular username and password if need be |
700 | 750 | if (!$db_connection) |
701 | 751 | { |
702 | - if (empty($db_persist)) |
|
703 | - $db_connection = @mysqli_connect($db_server, $db_user, $db_passwd); |
|
704 | - else |
|
705 | - $db_connection = @mysqli_connect('p:' . $db_server, $db_user, $db_passwd); |
|
752 | + if (empty($db_persist)) { |
|
753 | + $db_connection = @mysqli_connect($db_server, $db_user, $db_passwd); |
|
754 | + } else { |
|
755 | + $db_connection = @mysqli_connect('p:' . $db_server, $db_user, $db_passwd); |
|
756 | + } |
|
706 | 757 | } |
707 | 758 | |
708 | - if (!$db_connection || !@mysqli_select_db($db_connection, $db_name)) |
|
709 | - $db_connection = false; |
|
759 | + if (!$db_connection || !@mysqli_select_db($db_connection, $db_name)) { |
|
760 | + $db_connection = false; |
|
761 | + } |
|
710 | 762 | } |
711 | 763 | |
712 | 764 | if ($db_connection) |
@@ -717,24 +769,27 @@ discard block |
||
717 | 769 | $ret = $smcFunc['db_query']('', $db_string, false, false); |
718 | 770 | |
719 | 771 | $new_errno = mysqli_errno($db_connection); |
720 | - if ($ret !== false || in_array($new_errno, array(1205, 1213))) |
|
721 | - break; |
|
772 | + if ($ret !== false || in_array($new_errno, array(1205, 1213))) { |
|
773 | + break; |
|
774 | + } |
|
722 | 775 | } |
723 | 776 | |
724 | 777 | // If it failed again, shucks to be you... we're not trying it over and over. |
725 | - if ($ret !== false) |
|
726 | - return $ret; |
|
778 | + if ($ret !== false) { |
|
779 | + return $ret; |
|
780 | + } |
|
727 | 781 | } |
728 | 782 | } |
729 | 783 | // Are they out of space, perhaps? |
730 | 784 | elseif ($query_errno == 1030 && (strpos($query_error, ' -1 ') !== false || strpos($query_error, ' 28 ') !== false || strpos($query_error, ' 12 ') !== false)) |
731 | 785 | { |
732 | - if (!isset($txt)) |
|
733 | - $query_error .= ' - check database storage space.'; |
|
734 | - else |
|
786 | + if (!isset($txt)) { |
|
787 | + $query_error .= ' - check database storage space.'; |
|
788 | + } else |
|
735 | 789 | { |
736 | - if (!isset($txt['mysql_error_space'])) |
|
737 | - loadLanguage('Errors'); |
|
790 | + if (!isset($txt['mysql_error_space'])) { |
|
791 | + loadLanguage('Errors'); |
|
792 | + } |
|
738 | 793 | |
739 | 794 | $query_error .= !isset($txt['mysql_error_space']) ? ' - check database storage space.' : $txt['mysql_error_space']; |
740 | 795 | } |
@@ -742,15 +797,17 @@ discard block |
||
742 | 797 | } |
743 | 798 | |
744 | 799 | // Nothing's defined yet... just die with it. |
745 | - if (empty($context) || empty($txt)) |
|
746 | - die($query_error); |
|
800 | + if (empty($context) || empty($txt)) { |
|
801 | + die($query_error); |
|
802 | + } |
|
747 | 803 | |
748 | 804 | // Show an error message, if possible. |
749 | 805 | $context['error_title'] = $txt['database_error']; |
750 | - if (allowedTo('admin_forum')) |
|
751 | - $context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line; |
|
752 | - else |
|
753 | - $context['error_message'] = $txt['try_again']; |
|
806 | + if (allowedTo('admin_forum')) { |
|
807 | + $context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line; |
|
808 | + } else { |
|
809 | + $context['error_message'] = $txt['try_again']; |
|
810 | + } |
|
754 | 811 | |
755 | 812 | if (allowedTo('admin_forum') && isset($db_show_debug) && $db_show_debug === true) |
756 | 813 | { |
@@ -780,25 +837,28 @@ discard block |
||
780 | 837 | $connection = $connection === null ? $db_connection : $connection; |
781 | 838 | |
782 | 839 | // With nothing to insert, simply return. |
783 | - if (empty($data)) |
|
784 | - return; |
|
840 | + if (empty($data)) { |
|
841 | + return; |
|
842 | + } |
|
785 | 843 | |
786 | 844 | // Replace the prefix holder with the actual prefix. |
787 | 845 | $table = str_replace('{db_prefix}', $db_prefix, $table); |
788 | 846 | |
789 | 847 | // Inserting data as a single row can be done as a single array. |
790 | - if (!is_array($data[array_rand($data)])) |
|
791 | - $data = array($data); |
|
848 | + if (!is_array($data[array_rand($data)])) { |
|
849 | + $data = array($data); |
|
850 | + } |
|
792 | 851 | |
793 | 852 | // Create the mold for a single row insert. |
794 | 853 | $insertData = '('; |
795 | 854 | foreach ($columns as $columnName => $type) |
796 | 855 | { |
797 | 856 | // Are we restricting the length? |
798 | - if (strpos($type, 'string-') !== false) |
|
799 | - $insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName); |
|
800 | - else |
|
801 | - $insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName); |
|
857 | + if (strpos($type, 'string-') !== false) { |
|
858 | + $insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName); |
|
859 | + } else { |
|
860 | + $insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName); |
|
861 | + } |
|
802 | 862 | } |
803 | 863 | $insertData = substr($insertData, 0, -2) . ')'; |
804 | 864 | |
@@ -807,8 +867,9 @@ discard block |
||
807 | 867 | |
808 | 868 | // Here's where the variables are injected to the query. |
809 | 869 | $insertRows = array(); |
810 | - foreach ($data as $dataRow) |
|
811 | - $insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection); |
|
870 | + foreach ($data as $dataRow) { |
|
871 | + $insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection); |
|
872 | + } |
|
812 | 873 | |
813 | 874 | // Determine the method of insertion. |
814 | 875 | $queryTitle = $method == 'replace' ? 'REPLACE' : ($method == 'ignore' ? 'INSERT IGNORE' : 'INSERT'); |
@@ -828,15 +889,16 @@ discard block |
||
828 | 889 | |
829 | 890 | if(!empty($keys) && (count($keys) > 0) && $method == '' && $returnmode > 0) |
830 | 891 | { |
831 | - if ($returnmode == 1) |
|
832 | - $return_var = smf_db_insert_id($table, $keys[0]) + count($insertRows) - 1; |
|
833 | - else if ($returnmode == 2) |
|
892 | + if ($returnmode == 1) { |
|
893 | + $return_var = smf_db_insert_id($table, $keys[0]) + count($insertRows) - 1; |
|
894 | + } else if ($returnmode == 2) |
|
834 | 895 | { |
835 | 896 | $return_var = array(); |
836 | 897 | $count = count($insertRows); |
837 | 898 | $start = smf_db_insert_id($table, $keys[0]); |
838 | - for ($i = 0; $i < $count; $i++ ) |
|
839 | - $return_var[] = $start + $i; |
|
899 | + for ($i = 0; $i < $count; $i++ ) { |
|
900 | + $return_var[] = $start + $i; |
|
901 | + } |
|
840 | 902 | } |
841 | 903 | return $return_var; |
842 | 904 | } |
@@ -854,8 +916,9 @@ discard block |
||
854 | 916 | */ |
855 | 917 | function smf_db_error_backtrace($error_message, $log_message = '', $error_type = false, $file = null, $line = null) |
856 | 918 | { |
857 | - if (empty($log_message)) |
|
858 | - $log_message = $error_message; |
|
919 | + if (empty($log_message)) { |
|
920 | + $log_message = $error_message; |
|
921 | + } |
|
859 | 922 | |
860 | 923 | foreach (debug_backtrace() as $step) |
861 | 924 | { |
@@ -874,12 +937,14 @@ discard block |
||
874 | 937 | } |
875 | 938 | |
876 | 939 | // A special case - we want the file and line numbers for debugging. |
877 | - if ($error_type == 'return') |
|
878 | - return array($file, $line); |
|
940 | + if ($error_type == 'return') { |
|
941 | + return array($file, $line); |
|
942 | + } |
|
879 | 943 | |
880 | 944 | // Is always a critical error. |
881 | - if (function_exists('log_error')) |
|
882 | - log_error($log_message, 'critical', $file, $line); |
|
945 | + if (function_exists('log_error')) { |
|
946 | + log_error($log_message, 'critical', $file, $line); |
|
947 | + } |
|
883 | 948 | |
884 | 949 | if (function_exists('fatal_error')) |
885 | 950 | { |
@@ -887,12 +952,12 @@ discard block |
||
887 | 952 | |
888 | 953 | // Cannot continue... |
889 | 954 | exit; |
955 | + } elseif ($error_type) { |
|
956 | + trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type); |
|
957 | + } else { |
|
958 | + trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : '')); |
|
959 | + } |
|
890 | 960 | } |
891 | - elseif ($error_type) |
|
892 | - trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type); |
|
893 | - else |
|
894 | - trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : '')); |
|
895 | -} |
|
896 | 961 | |
897 | 962 | /** |
898 | 963 | * Escape the LIKE wildcards so that they match the character and not the wildcard. |
@@ -909,10 +974,11 @@ discard block |
||
909 | 974 | '\\' => '\\\\', |
910 | 975 | ); |
911 | 976 | |
912 | - if ($translate_human_wildcards) |
|
913 | - $replacements += array( |
|
977 | + if ($translate_human_wildcards) { |
|
978 | + $replacements += array( |
|
914 | 979 | '*' => '%', |
915 | 980 | ); |
981 | + } |
|
916 | 982 | |
917 | 983 | return strtr($string, $replacements); |
918 | 984 | } |
@@ -926,8 +992,9 @@ discard block |
||
926 | 992 | */ |
927 | 993 | function smf_is_resource($result) |
928 | 994 | { |
929 | - if ($result instanceof mysqli_result) |
|
930 | - return true; |
|
995 | + if ($result instanceof mysqli_result) { |
|
996 | + return true; |
|
997 | + } |
|
931 | 998 | |
932 | 999 | return false; |
933 | 1000 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 3 |
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 |
||
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', |
@@ -61,11 +62,13 @@ discard block |
||
61 | 62 | 'db_mb4' => true, |
62 | 63 | 'db_ping' => 'pg_ping', |
63 | 64 | ); |
65 | + } |
|
64 | 66 | |
65 | - if (!empty($db_options['persist'])) |
|
66 | - $connection = @pg_pconnect('host=' . $db_server . ' dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\'')); |
|
67 | - else |
|
68 | - $connection = @pg_connect('host=' . $db_server . ' dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\'')); |
|
67 | + if (!empty($db_options['persist'])) { |
|
68 | + $connection = @pg_pconnect('host=' . $db_server . ' dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\'')); |
|
69 | + } else { |
|
70 | + $connection = @pg_connect('host=' . $db_server . ' dbname=' . $db_name . ' user=\'' . $db_user . '\' password=\'' . $db_passwd . '\'' . (empty($db_options['port']) ? '' : ' port=\'' . $db_options['port'] . '\'')); |
|
71 | + } |
|
69 | 72 | |
70 | 73 | // Something's wrong, show an error if its fatal (which we assume it is) |
71 | 74 | if (!$connection) |
@@ -73,8 +76,7 @@ discard block |
||
73 | 76 | if (!empty($db_options['non_fatal'])) |
74 | 77 | { |
75 | 78 | return null; |
76 | - } |
|
77 | - else |
|
79 | + } else |
|
78 | 80 | { |
79 | 81 | display_db_error(); |
80 | 82 | } |
@@ -125,35 +127,42 @@ discard block |
||
125 | 127 | |
126 | 128 | list ($values, $connection) = $db_callback; |
127 | 129 | |
128 | - if ($matches[1] === 'db_prefix') |
|
129 | - return $db_prefix; |
|
130 | + if ($matches[1] === 'db_prefix') { |
|
131 | + return $db_prefix; |
|
132 | + } |
|
130 | 133 | |
131 | 134 | if (!empty($user_info)) |
132 | 135 | { |
133 | - foreach (array_keys($user_info) as $key) |
|
134 | - if (strpos($key, 'query_') !== false && $key === $matches[1]) |
|
136 | + foreach (array_keys($user_info) as $key) { |
|
137 | + if (strpos($key, 'query_') !== false && $key === $matches[1]) |
|
135 | 138 | return $user_info[$matches[1]]; |
139 | + } |
|
136 | 140 | } |
137 | 141 | |
138 | - if ($matches[1] === 'empty') |
|
139 | - return '\'\''; |
|
142 | + if ($matches[1] === 'empty') { |
|
143 | + return '\'\''; |
|
144 | + } |
|
140 | 145 | |
141 | - if (!isset($matches[2])) |
|
142 | - smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__); |
|
146 | + if (!isset($matches[2])) { |
|
147 | + smf_db_error_backtrace('Invalid value inserted or no type specified.', '', E_USER_ERROR, __FILE__, __LINE__); |
|
148 | + } |
|
143 | 149 | |
144 | - if ($matches[1] === 'literal') |
|
145 | - return '\'' . pg_escape_string($matches[2]) . '\''; |
|
150 | + if ($matches[1] === 'literal') { |
|
151 | + return '\'' . pg_escape_string($matches[2]) . '\''; |
|
152 | + } |
|
146 | 153 | |
147 | - if (!isset($values[$matches[2]])) |
|
148 | - 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__); |
|
154 | + if (!isset($values[$matches[2]])) { |
|
155 | + 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__); |
|
156 | + } |
|
149 | 157 | |
150 | 158 | $replacement = $values[$matches[2]]; |
151 | 159 | |
152 | 160 | switch ($matches[1]) |
153 | 161 | { |
154 | 162 | case 'int': |
155 | - if (!is_numeric($replacement) || (string) $replacement !== (string) (int) $replacement) |
|
156 | - smf_db_error_backtrace('Wrong value type sent to the database. Integer expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
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__); |
|
165 | + } |
|
157 | 166 | return (string) (int) $replacement; |
158 | 167 | break; |
159 | 168 | |
@@ -165,65 +174,73 @@ discard block |
||
165 | 174 | case 'array_int': |
166 | 175 | if (is_array($replacement)) |
167 | 176 | { |
168 | - if (empty($replacement)) |
|
169 | - smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
177 | + if (empty($replacement)) { |
|
178 | + smf_db_error_backtrace('Database error, given array of integer values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
179 | + } |
|
170 | 180 | |
171 | 181 | foreach ($replacement as $key => $value) |
172 | 182 | { |
173 | - if (!is_numeric($value) || (string) $value !== (string) (int) $value) |
|
174 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
183 | + if (!is_numeric($value) || (string) $value !== (string) (int) $value) { |
|
184 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
185 | + } |
|
175 | 186 | |
176 | 187 | $replacement[$key] = (string) (int) $value; |
177 | 188 | } |
178 | 189 | |
179 | 190 | return implode(', ', $replacement); |
191 | + } else { |
|
192 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
180 | 193 | } |
181 | - else |
|
182 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of integers expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
183 | 194 | |
184 | 195 | break; |
185 | 196 | |
186 | 197 | case 'array_string': |
187 | 198 | if (is_array($replacement)) |
188 | 199 | { |
189 | - if (empty($replacement)) |
|
190 | - smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
200 | + if (empty($replacement)) { |
|
201 | + smf_db_error_backtrace('Database error, given array of string values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
202 | + } |
|
191 | 203 | |
192 | - foreach ($replacement as $key => $value) |
|
193 | - $replacement[$key] = sprintf('\'%1$s\'', pg_escape_string($value)); |
|
204 | + foreach ($replacement as $key => $value) { |
|
205 | + $replacement[$key] = sprintf('\'%1$s\'', pg_escape_string($value)); |
|
206 | + } |
|
194 | 207 | |
195 | 208 | return implode(', ', $replacement); |
209 | + } else { |
|
210 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
196 | 211 | } |
197 | - else |
|
198 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of strings expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
199 | 212 | break; |
200 | 213 | |
201 | 214 | case 'date': |
202 | - if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1) |
|
203 | - return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]).'::date'; |
|
204 | - else |
|
205 | - smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
215 | + if (preg_match('~^(\d{4})-([0-1]?\d)-([0-3]?\d)$~', $replacement, $date_matches) === 1) { |
|
216 | + return sprintf('\'%04d-%02d-%02d\'', $date_matches[1], $date_matches[2], $date_matches[3]).'::date'; |
|
217 | + } else { |
|
218 | + smf_db_error_backtrace('Wrong value type sent to the database. Date expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
219 | + } |
|
206 | 220 | break; |
207 | 221 | |
208 | 222 | case 'time': |
209 | - if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1) |
|
210 | - return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]).'::time'; |
|
211 | - else |
|
212 | - smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
223 | + if (preg_match('~^([0-1]?\d|2[0-3]):([0-5]\d):([0-5]\d)$~', $replacement, $time_matches) === 1) { |
|
224 | + return sprintf('\'%02d:%02d:%02d\'', $time_matches[1], $time_matches[2], $time_matches[3]).'::time'; |
|
225 | + } else { |
|
226 | + smf_db_error_backtrace('Wrong value type sent to the database. Time expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
227 | + } |
|
213 | 228 | break; |
214 | 229 | |
215 | 230 | case 'datetime': |
216 | - 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) |
|
217 | - return 'to_timestamp('. |
|
231 | + 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) { |
|
232 | + return 'to_timestamp('. |
|
218 | 233 | 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]). |
219 | 234 | ',\'YYYY-MM-DD HH24:MI:SS\')'; |
220 | - else |
|
221 | - smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
235 | + } else { |
|
236 | + smf_db_error_backtrace('Wrong value type sent to the database. Datetime expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
237 | + } |
|
222 | 238 | break; |
223 | 239 | |
224 | 240 | case 'float': |
225 | - if (!is_numeric($replacement)) |
|
226 | - smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
241 | + if (!is_numeric($replacement)) { |
|
242 | + smf_db_error_backtrace('Wrong value type sent to the database. Floating point number expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
243 | + } |
|
227 | 244 | return (string) (float) $replacement; |
228 | 245 | break; |
229 | 246 | |
@@ -236,31 +253,36 @@ discard block |
||
236 | 253 | break; |
237 | 254 | |
238 | 255 | case 'inet': |
239 | - if ($replacement == 'null' || $replacement == '') |
|
240 | - return 'null'; |
|
241 | - if (inet_pton($replacement) === false) |
|
242 | - smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
256 | + if ($replacement == 'null' || $replacement == '') { |
|
257 | + return 'null'; |
|
258 | + } |
|
259 | + if (inet_pton($replacement) === false) { |
|
260 | + smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
261 | + } |
|
243 | 262 | return sprintf('\'%1$s\'::inet', pg_escape_string($replacement)); |
244 | 263 | |
245 | 264 | case 'array_inet': |
246 | 265 | if (is_array($replacement)) |
247 | 266 | { |
248 | - if (empty($replacement)) |
|
249 | - smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
267 | + if (empty($replacement)) { |
|
268 | + smf_db_error_backtrace('Database error, given array of IPv4 or IPv6 values is empty. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
269 | + } |
|
250 | 270 | |
251 | 271 | foreach ($replacement as $key => $value) |
252 | 272 | { |
253 | - if ($replacement == 'null' || $replacement == '') |
|
254 | - $replacement[$key] = 'null'; |
|
255 | - if (!isValidIP($value)) |
|
256 | - smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
273 | + if ($replacement == 'null' || $replacement == '') { |
|
274 | + $replacement[$key] = 'null'; |
|
275 | + } |
|
276 | + if (!isValidIP($value)) { |
|
277 | + smf_db_error_backtrace('Wrong value type sent to the database. IPv4 or IPv6 expected.(' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
278 | + } |
|
257 | 279 | $replacement[$key] = sprintf('\'%1$s\'::inet', pg_escape_string($value)); |
258 | 280 | } |
259 | 281 | |
260 | 282 | return implode(', ', $replacement); |
283 | + } else { |
|
284 | + smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
261 | 285 | } |
262 | - else |
|
263 | - smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__); |
|
264 | 286 | break; |
265 | 287 | |
266 | 288 | default: |
@@ -344,14 +366,16 @@ discard block |
||
344 | 366 | ), |
345 | 367 | ); |
346 | 368 | |
347 | - if (isset($replacements[$identifier])) |
|
348 | - $db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string); |
|
369 | + if (isset($replacements[$identifier])) { |
|
370 | + $db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string); |
|
371 | + } |
|
349 | 372 | |
350 | 373 | // Limits need to be a little different. |
351 | 374 | $db_string = preg_replace('~\sLIMIT\s(\d+|{int:.+}),\s*(\d+|{int:.+})\s*$~i', 'LIMIT $2 OFFSET $1', $db_string); |
352 | 375 | |
353 | - if (trim($db_string) == '') |
|
354 | - return false; |
|
376 | + if (trim($db_string) == '') { |
|
377 | + return false; |
|
378 | + } |
|
355 | 379 | |
356 | 380 | // Comments that are allowed in a query are preg_removed. |
357 | 381 | static $allowed_comments_from = array( |
@@ -371,8 +395,9 @@ discard block |
||
371 | 395 | $db_count = !isset($db_count) ? 1 : $db_count + 1; |
372 | 396 | $db_replace_result = 0; |
373 | 397 | |
374 | - if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override'])) |
|
375 | - smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__); |
|
398 | + if (empty($modSettings['disableQueryCheck']) && strpos($db_string, '\'') !== false && empty($db_values['security_override'])) { |
|
399 | + smf_db_error_backtrace('Hacking attempt...', 'Illegal character (\') used in query...', true, __FILE__, __LINE__); |
|
400 | + } |
|
376 | 401 | |
377 | 402 | if (empty($db_values['security_override']) && (!empty($db_values) || strpos($db_string, '{db_prefix}') !== false)) |
378 | 403 | { |
@@ -393,8 +418,9 @@ discard block |
||
393 | 418 | list ($file, $line) = smf_db_error_backtrace('', '', 'return', __FILE__, __LINE__); |
394 | 419 | |
395 | 420 | // Initialize $db_cache if not already initialized. |
396 | - if (!isset($db_cache)) |
|
397 | - $db_cache = array(); |
|
421 | + if (!isset($db_cache)) { |
|
422 | + $db_cache = array(); |
|
423 | + } |
|
398 | 424 | |
399 | 425 | if (!empty($_SESSION['debug_redirect'])) |
400 | 426 | { |
@@ -420,17 +446,18 @@ discard block |
||
420 | 446 | while (true) |
421 | 447 | { |
422 | 448 | $pos = strpos($db_string, '\'', $pos + 1); |
423 | - if ($pos === false) |
|
424 | - break; |
|
449 | + if ($pos === false) { |
|
450 | + break; |
|
451 | + } |
|
425 | 452 | $clean .= substr($db_string, $old_pos, $pos - $old_pos); |
426 | 453 | |
427 | 454 | while (true) |
428 | 455 | { |
429 | 456 | $pos1 = strpos($db_string, '\'', $pos + 1); |
430 | 457 | $pos2 = strpos($db_string, '\\', $pos + 1); |
431 | - if ($pos1 === false) |
|
432 | - break; |
|
433 | - elseif ($pos2 === false || $pos2 > $pos1) |
|
458 | + if ($pos1 === false) { |
|
459 | + break; |
|
460 | + } elseif ($pos2 === false || $pos2 > $pos1) |
|
434 | 461 | { |
435 | 462 | $pos = $pos1; |
436 | 463 | break; |
@@ -446,26 +473,31 @@ discard block |
||
446 | 473 | $clean = trim(strtolower(preg_replace($allowed_comments_from, $allowed_comments_to, $clean))); |
447 | 474 | |
448 | 475 | // Comments? We don't use comments in our queries, we leave 'em outside! |
449 | - if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false) |
|
450 | - $fail = true; |
|
476 | + if (strpos($clean, '/*') > 2 || strpos($clean, '--') !== false || strpos($clean, ';') !== false) { |
|
477 | + $fail = true; |
|
478 | + } |
|
451 | 479 | // Trying to change passwords, slow us down, or something? |
452 | - elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0) |
|
453 | - $fail = true; |
|
454 | - elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0) |
|
455 | - $fail = true; |
|
480 | + elseif (strpos($clean, 'sleep') !== false && preg_match('~(^|[^a-z])sleep($|[^[_a-z])~s', $clean) != 0) { |
|
481 | + $fail = true; |
|
482 | + } elseif (strpos($clean, 'benchmark') !== false && preg_match('~(^|[^a-z])benchmark($|[^[a-z])~s', $clean) != 0) { |
|
483 | + $fail = true; |
|
484 | + } |
|
456 | 485 | |
457 | - if (!empty($fail) && function_exists('log_error')) |
|
458 | - smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__); |
|
486 | + if (!empty($fail) && function_exists('log_error')) { |
|
487 | + smf_db_error_backtrace('Hacking attempt...', 'Hacking attempt...' . "\n" . $db_string, E_USER_ERROR, __FILE__, __LINE__); |
|
488 | + } |
|
459 | 489 | } |
460 | 490 | |
461 | 491 | $db_last_result = @pg_query($connection, $db_string); |
462 | 492 | |
463 | - if ($db_last_result === false && empty($db_values['db_error_skip'])) |
|
464 | - $db_last_result = smf_db_error($db_string, $connection); |
|
493 | + if ($db_last_result === false && empty($db_values['db_error_skip'])) { |
|
494 | + $db_last_result = smf_db_error($db_string, $connection); |
|
495 | + } |
|
465 | 496 | |
466 | 497 | // Debugging. |
467 | - if (isset($db_show_debug) && $db_show_debug === true) |
|
468 | - $db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st)); |
|
498 | + if (isset($db_show_debug) && $db_show_debug === true) { |
|
499 | + $db_cache[$db_count]['t'] = array_sum(explode(' ', microtime())) - array_sum(explode(' ', $st)); |
|
500 | + } |
|
469 | 501 | |
470 | 502 | return $db_last_result; |
471 | 503 | } |
@@ -478,10 +510,11 @@ discard block |
||
478 | 510 | { |
479 | 511 | global $db_last_result, $db_replace_result; |
480 | 512 | |
481 | - if ($db_replace_result) |
|
482 | - return $db_replace_result; |
|
483 | - elseif ($result === null && !$db_last_result) |
|
484 | - return 0; |
|
513 | + if ($db_replace_result) { |
|
514 | + return $db_replace_result; |
|
515 | + } elseif ($result === null && !$db_last_result) { |
|
516 | + return 0; |
|
517 | + } |
|
485 | 518 | |
486 | 519 | return pg_affected_rows($result === null ? $db_last_result : $result); |
487 | 520 | } |
@@ -505,8 +538,9 @@ discard block |
||
505 | 538 | array( |
506 | 539 | ) |
507 | 540 | ); |
508 | - if (!$request) |
|
509 | - return false; |
|
541 | + if (!$request) { |
|
542 | + return false; |
|
543 | + } |
|
510 | 544 | list ($lastID) = $smcFunc['db_fetch_row']($request); |
511 | 545 | $smcFunc['db_free_result']($request); |
512 | 546 | |
@@ -527,12 +561,13 @@ discard block |
||
527 | 561 | // Decide which connection to use |
528 | 562 | $connection = $connection === null ? $db_connection : $connection; |
529 | 563 | |
530 | - if ($type == 'begin') |
|
531 | - return @pg_query($connection, 'BEGIN'); |
|
532 | - elseif ($type == 'rollback') |
|
533 | - return @pg_query($connection, 'ROLLBACK'); |
|
534 | - elseif ($type == 'commit') |
|
535 | - return @pg_query($connection, 'COMMIT'); |
|
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'); |
|
570 | + } |
|
536 | 571 | |
537 | 572 | return false; |
538 | 573 | } |
@@ -560,19 +595,22 @@ discard block |
||
560 | 595 | $query_error = @pg_last_error($connection); |
561 | 596 | |
562 | 597 | // Log the error. |
563 | - if (function_exists('log_error')) |
|
564 | - log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n" . $db_string : ''), 'database', $file, $line); |
|
598 | + if (function_exists('log_error')) { |
|
599 | + log_error($txt['database_error'] . ': ' . $query_error . (!empty($modSettings['enableErrorQueryLogging']) ? "\n\n" . $db_string : ''), 'database', $file, $line); |
|
600 | + } |
|
565 | 601 | |
566 | 602 | // Nothing's defined yet... just die with it. |
567 | - if (empty($context) || empty($txt)) |
|
568 | - die($query_error); |
|
603 | + if (empty($context) || empty($txt)) { |
|
604 | + die($query_error); |
|
605 | + } |
|
569 | 606 | |
570 | 607 | // Show an error message, if possible. |
571 | 608 | $context['error_title'] = $txt['database_error']; |
572 | - if (allowedTo('admin_forum')) |
|
573 | - $context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line; |
|
574 | - else |
|
575 | - $context['error_message'] = $txt['try_again']; |
|
609 | + if (allowedTo('admin_forum')) { |
|
610 | + $context['error_message'] = nl2br($query_error) . '<br>' . $txt['file'] . ': ' . $file . '<br>' . $txt['line'] . ': ' . $line; |
|
611 | + } else { |
|
612 | + $context['error_message'] = $txt['try_again']; |
|
613 | + } |
|
576 | 614 | |
577 | 615 | if (allowedTo('admin_forum') && isset($db_show_debug) && $db_show_debug === true) |
578 | 616 | { |
@@ -594,12 +632,14 @@ discard block |
||
594 | 632 | { |
595 | 633 | global $db_row_count; |
596 | 634 | |
597 | - if ($counter !== false) |
|
598 | - return pg_fetch_row($request, $counter); |
|
635 | + if ($counter !== false) { |
|
636 | + return pg_fetch_row($request, $counter); |
|
637 | + } |
|
599 | 638 | |
600 | 639 | // Reset the row counter... |
601 | - if (!isset($db_row_count[(int) $request])) |
|
602 | - $db_row_count[(int) $request] = 0; |
|
640 | + if (!isset($db_row_count[(int) $request])) { |
|
641 | + $db_row_count[(int) $request] = 0; |
|
642 | + } |
|
603 | 643 | |
604 | 644 | // Return the right row. |
605 | 645 | return @pg_fetch_row($request, $db_row_count[(int) $request]++); |
@@ -616,12 +656,14 @@ discard block |
||
616 | 656 | { |
617 | 657 | global $db_row_count; |
618 | 658 | |
619 | - if ($counter !== false) |
|
620 | - return pg_fetch_assoc($request, $counter); |
|
659 | + if ($counter !== false) { |
|
660 | + return pg_fetch_assoc($request, $counter); |
|
661 | + } |
|
621 | 662 | |
622 | 663 | // Reset the row counter... |
623 | - if (!isset($db_row_count[(int) $request])) |
|
624 | - $db_row_count[(int) $request] = 0; |
|
664 | + if (!isset($db_row_count[(int) $request])) { |
|
665 | + $db_row_count[(int) $request] = 0; |
|
666 | + } |
|
625 | 667 | |
626 | 668 | // Return the right row. |
627 | 669 | return @pg_fetch_assoc($request, $db_row_count[(int) $request]++); |
@@ -674,11 +716,13 @@ discard block |
||
674 | 716 | |
675 | 717 | $replace = ''; |
676 | 718 | |
677 | - if (empty($data)) |
|
678 | - return; |
|
719 | + if (empty($data)) { |
|
720 | + return; |
|
721 | + } |
|
679 | 722 | |
680 | - if (!is_array($data[array_rand($data)])) |
|
681 | - $data = array($data); |
|
723 | + if (!is_array($data[array_rand($data)])) { |
|
724 | + $data = array($data); |
|
725 | + } |
|
682 | 726 | |
683 | 727 | // Replace the prefix holder with the actual prefix. |
684 | 728 | $table = str_replace('{db_prefix}', $db_prefix, $table); |
@@ -697,11 +741,13 @@ discard block |
||
697 | 741 | //pg 9.5 got replace support |
698 | 742 | $pg_version = $smcFunc['db_get_version'](); |
699 | 743 | // if we got a Beta Version |
700 | - if (stripos($pg_version, 'beta') !== false) |
|
701 | - $pg_version = substr($pg_version, 0, stripos($pg_version, 'beta')) . '.0'; |
|
744 | + if (stripos($pg_version, 'beta') !== false) { |
|
745 | + $pg_version = substr($pg_version, 0, stripos($pg_version, 'beta')) . '.0'; |
|
746 | + } |
|
702 | 747 | // or RC |
703 | - if (stripos($pg_version, 'rc') !== false) |
|
704 | - $pg_version = substr($pg_version, 0, stripos($pg_version, 'rc')) . '.0'; |
|
748 | + if (stripos($pg_version, 'rc') !== false) { |
|
749 | + $pg_version = substr($pg_version, 0, stripos($pg_version, 'rc')) . '.0'; |
|
750 | + } |
|
705 | 751 | |
706 | 752 | $replace_support = (version_compare($pg_version, '9.5.0', '>=') ? true : false); |
707 | 753 | } |
@@ -720,8 +766,7 @@ discard block |
||
720 | 766 | $key_str .= ($count_pk > 0 ? ',' : ''); |
721 | 767 | $key_str .= $columnName; |
722 | 768 | $count_pk++; |
723 | - } |
|
724 | - else //normal field |
|
769 | + } else //normal field |
|
725 | 770 | { |
726 | 771 | $col_str .= ($count > 0 ? ',' : ''); |
727 | 772 | $col_str .= $columnName . ' = EXCLUDED.' . $columnName; |
@@ -729,20 +774,21 @@ discard block |
||
729 | 774 | } |
730 | 775 | } |
731 | 776 | $replace = ' ON CONFLICT (' . $key_str . ') DO UPDATE SET ' . $col_str; |
732 | - } |
|
733 | - else |
|
777 | + } else |
|
734 | 778 | { |
735 | 779 | foreach ($columns as $columnName => $type) |
736 | 780 | { |
737 | 781 | // Are we restricting the length? |
738 | - if (strpos($type, 'string-') !== false) |
|
739 | - $actualType = sprintf($columnName . ' = SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $count); |
|
740 | - else |
|
741 | - $actualType = sprintf($columnName . ' = {%1$s:%2$s}, ', $type, $count); |
|
782 | + if (strpos($type, 'string-') !== false) { |
|
783 | + $actualType = sprintf($columnName . ' = SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $count); |
|
784 | + } else { |
|
785 | + $actualType = sprintf($columnName . ' = {%1$s:%2$s}, ', $type, $count); |
|
786 | + } |
|
742 | 787 | |
743 | 788 | // A key? That's what we were looking for. |
744 | - if (in_array($columnName, $keys)) |
|
745 | - $where .= (empty($where) ? '' : ' AND ') . substr($actualType, 0, -2); |
|
789 | + if (in_array($columnName, $keys)) { |
|
790 | + $where .= (empty($where) ? '' : ' AND ') . substr($actualType, 0, -2); |
|
791 | + } |
|
746 | 792 | $count++; |
747 | 793 | } |
748 | 794 | |
@@ -778,10 +824,11 @@ discard block |
||
778 | 824 | foreach ($columns as $columnName => $type) |
779 | 825 | { |
780 | 826 | // Are we restricting the length? |
781 | - if (strpos($type, 'string-') !== false) |
|
782 | - $insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName); |
|
783 | - else |
|
784 | - $insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName); |
|
827 | + if (strpos($type, 'string-') !== false) { |
|
828 | + $insertData .= sprintf('SUBSTRING({string:%1$s}, 1, ' . substr($type, 7) . '), ', $columnName); |
|
829 | + } else { |
|
830 | + $insertData .= sprintf('{%1$s:%2$s}, ', $type, $columnName); |
|
831 | + } |
|
785 | 832 | } |
786 | 833 | $insertData = substr($insertData, 0, -2) . ')'; |
787 | 834 | |
@@ -790,8 +837,9 @@ discard block |
||
790 | 837 | |
791 | 838 | // Here's where the variables are injected to the query. |
792 | 839 | $insertRows = array(); |
793 | - foreach ($data as $dataRow) |
|
794 | - $insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection); |
|
840 | + foreach ($data as $dataRow) { |
|
841 | + $insertRows[] = smf_db_quote($insertData, array_combine($indexed_columns, $dataRow), $connection); |
|
842 | + } |
|
795 | 843 | |
796 | 844 | // Do the insert. |
797 | 845 | $request = $smcFunc['db_query']('', ' |
@@ -808,19 +856,21 @@ discard block |
||
808 | 856 | |
809 | 857 | if ($with_returning && $request !== false) |
810 | 858 | { |
811 | - if ($returnmode === 2) |
|
812 | - $return_var = array(); |
|
859 | + if ($returnmode === 2) { |
|
860 | + $return_var = array(); |
|
861 | + } |
|
813 | 862 | |
814 | 863 | while(($row = $smcFunc['db_fetch_row']($request)) && $with_returning) |
815 | 864 | { |
816 | - if (is_numeric($row[0])) // try to emulate mysql limitation |
|
865 | + if (is_numeric($row[0])) { |
|
866 | + // try to emulate mysql limitation |
|
817 | 867 | { |
818 | 868 | if ($returnmode === 1) |
819 | 869 | $return_var = $row[0]; |
820 | - elseif ($returnmode === 2) |
|
821 | - $return_var[] = $row[0]; |
|
822 | - } |
|
823 | - else |
|
870 | + } elseif ($returnmode === 2) { |
|
871 | + $return_var[] = $row[0]; |
|
872 | + } |
|
873 | + } else |
|
824 | 874 | { |
825 | 875 | $with_returning = false; |
826 | 876 | trigger_error('trying to returning ID Field which is not a Int field', E_USER_ERROR); |
@@ -829,9 +879,10 @@ discard block |
||
829 | 879 | } |
830 | 880 | } |
831 | 881 | |
832 | - if ($with_returning && !empty($return_var)) |
|
833 | - return $return_var; |
|
834 | -} |
|
882 | + if ($with_returning && !empty($return_var)) { |
|
883 | + return $return_var; |
|
884 | + } |
|
885 | + } |
|
835 | 886 | |
836 | 887 | /** |
837 | 888 | * Dummy function really. Doesn't do anything on PostgreSQL. |
@@ -868,8 +919,9 @@ discard block |
||
868 | 919 | */ |
869 | 920 | function smf_db_error_backtrace($error_message, $log_message = '', $error_type = false, $file = null, $line = null) |
870 | 921 | { |
871 | - if (empty($log_message)) |
|
872 | - $log_message = $error_message; |
|
922 | + if (empty($log_message)) { |
|
923 | + $log_message = $error_message; |
|
924 | + } |
|
873 | 925 | |
874 | 926 | foreach (debug_backtrace() as $step) |
875 | 927 | { |
@@ -888,12 +940,14 @@ discard block |
||
888 | 940 | } |
889 | 941 | |
890 | 942 | // A special case - we want the file and line numbers for debugging. |
891 | - if ($error_type == 'return') |
|
892 | - return array($file, $line); |
|
943 | + if ($error_type == 'return') { |
|
944 | + return array($file, $line); |
|
945 | + } |
|
893 | 946 | |
894 | 947 | // Is always a critical error. |
895 | - if (function_exists('log_error')) |
|
896 | - log_error($log_message, 'critical', $file, $line); |
|
948 | + if (function_exists('log_error')) { |
|
949 | + log_error($log_message, 'critical', $file, $line); |
|
950 | + } |
|
897 | 951 | |
898 | 952 | if (function_exists('fatal_error')) |
899 | 953 | { |
@@ -901,12 +955,12 @@ discard block |
||
901 | 955 | |
902 | 956 | // Cannot continue... |
903 | 957 | exit; |
958 | + } elseif ($error_type) { |
|
959 | + trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type); |
|
960 | + } else { |
|
961 | + trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : '')); |
|
962 | + } |
|
904 | 963 | } |
905 | - elseif ($error_type) |
|
906 | - trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : ''), $error_type); |
|
907 | - else |
|
908 | - trigger_error($error_message . ($line !== null ? '<em>(' . basename($file) . '-' . $line . ')</em>' : '')); |
|
909 | -} |
|
910 | 964 | |
911 | 965 | /** |
912 | 966 | * Escape the LIKE wildcards so that they match the character and not the wildcard. |
@@ -923,10 +977,11 @@ discard block |
||
923 | 977 | '\\' => '\\\\', |
924 | 978 | ); |
925 | 979 | |
926 | - if ($translate_human_wildcards) |
|
927 | - $replacements += array( |
|
980 | + if ($translate_human_wildcards) { |
|
981 | + $replacements += array( |
|
928 | 982 | '*' => '%', |
929 | 983 | ); |
984 | + } |
|
930 | 985 | |
931 | 986 | return strtr($string, $replacements); |
932 | 987 | } |