@@ -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['cur_table_num'] == $upcontext['table_count'] && $upcontext['dropping_index']) |
|
| 4300 | - echo ' |
|
| 4516 | + if ($upcontext['cur_table_num'] == $upcontext['table_count'] && $upcontext['dropping_index']) { |
|
| 4517 | + echo ' |
|
| 4301 | 4518 | <br><span style="display:inline;">Please note that your fulltext index was dropped to facilitate the conversion and will need to be recreated.</span>'; |
| 4519 | + } |
|
| 4302 | 4520 | |
| 4303 | 4521 | echo ' |
| 4304 | 4522 | <br><span id="commess" style="font-weight: bold; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Conversion Complete! Click Continue to Proceed.</span>'; |
@@ -4334,12 +4552,13 @@ discard block |
||
| 4334 | 4552 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4335 | 4553 | |
| 4336 | 4554 | // If debug flood the screen. |
| 4337 | - if ($is_debug) |
|
| 4338 | - echo ' |
|
| 4555 | + if ($is_debug) { |
|
| 4556 | + echo ' |
|
| 4339 | 4557 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4340 | 4558 | |
| 4341 | 4559 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4342 | 4560 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4561 | + } |
|
| 4343 | 4562 | |
| 4344 | 4563 | echo ' |
| 4345 | 4564 | // Get the next update... |
@@ -4384,19 +4603,21 @@ discard block |
||
| 4384 | 4603 | </div>'; |
| 4385 | 4604 | |
| 4386 | 4605 | // Dont any tables so far? |
| 4387 | - if (!empty($upcontext['previous_tables'])) |
|
| 4388 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4606 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4607 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 4389 | 4608 | echo ' |
| 4390 | 4609 | <br>Completed Table: "', $table, '".'; |
| 4610 | + } |
|
| 4391 | 4611 | |
| 4392 | 4612 | echo ' |
| 4393 | 4613 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
| 4394 | 4614 | <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>'; |
| 4395 | 4615 | |
| 4396 | 4616 | // Try to make sure substep was reset. |
| 4397 | - if ($upcontext['cur_table_num'] == $upcontext['table_count']) |
|
| 4398 | - echo ' |
|
| 4617 | + if ($upcontext['cur_table_num'] == $upcontext['table_count']) { |
|
| 4618 | + echo ' |
|
| 4399 | 4619 | <input type="hidden" name="substep" id="substep" value="0">'; |
| 4620 | + } |
|
| 4400 | 4621 | |
| 4401 | 4622 | // Continue please! |
| 4402 | 4623 | $upcontext['continue'] = $support_js ? 2 : 1; |
@@ -4429,12 +4650,13 @@ discard block |
||
| 4429 | 4650 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4430 | 4651 | |
| 4431 | 4652 | // If debug flood the screen. |
| 4432 | - if ($is_debug) |
|
| 4433 | - echo ' |
|
| 4653 | + if ($is_debug) { |
|
| 4654 | + echo ' |
|
| 4434 | 4655 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4435 | 4656 | |
| 4436 | 4657 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4437 | 4658 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4659 | + } |
|
| 4438 | 4660 | |
| 4439 | 4661 | echo ' |
| 4440 | 4662 | // Get the next update... |
@@ -4470,8 +4692,8 @@ discard block |
||
| 4470 | 4692 | <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> |
| 4471 | 4693 | <form action="', $boardurl, '/index.php">'; |
| 4472 | 4694 | |
| 4473 | - if (!empty($upcontext['can_delete_script'])) |
|
| 4474 | - echo ' |
|
| 4695 | + if (!empty($upcontext['can_delete_script'])) { |
|
| 4696 | + echo ' |
|
| 4475 | 4697 | <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> |
| 4476 | 4698 | <script> |
| 4477 | 4699 | function doTheDelete(theCheck) |
@@ -4483,6 +4705,7 @@ discard block |
||
| 4483 | 4705 | } |
| 4484 | 4706 | </script> |
| 4485 | 4707 | <img src="', $settings['default_theme_url'], '/images/blank.png" alt="" id="delete_upgrader"><br>'; |
| 4708 | + } |
|
| 4486 | 4709 | |
| 4487 | 4710 | $active = time() - $upcontext['started']; |
| 4488 | 4711 | $hours = floor($active / 3600); |
@@ -4492,16 +4715,20 @@ discard block |
||
| 4492 | 4715 | if ($is_debug) |
| 4493 | 4716 | { |
| 4494 | 4717 | $totalTime = ''; |
| 4495 | - if ($hours > 0) |
|
| 4496 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4497 | - if ($minutes > 0) |
|
| 4498 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4499 | - if ($seconds > 0) |
|
| 4500 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4718 | + if ($hours > 0) { |
|
| 4719 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4720 | + } |
|
| 4721 | + if ($minutes > 0) { |
|
| 4722 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4723 | + } |
|
| 4724 | + if ($seconds > 0) { |
|
| 4725 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4726 | + } |
|
| 4501 | 4727 | } |
| 4502 | 4728 | |
| 4503 | - if ($is_debug && !empty($totalTime)) |
|
| 4504 | - echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
| 4729 | + if ($is_debug && !empty($totalTime)) { |
|
| 4730 | + echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
| 4731 | + } |
|
| 4505 | 4732 | |
| 4506 | 4733 | echo '<br> |
| 4507 | 4734 | 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> |
@@ -4528,8 +4755,9 @@ discard block |
||
| 4528 | 4755 | |
| 4529 | 4756 | $current_substep = $_GET['substep']; |
| 4530 | 4757 | |
| 4531 | - if (empty($_GET['a'])) |
|
| 4532 | - $_GET['a'] = 0; |
|
| 4758 | + if (empty($_GET['a'])) { |
|
| 4759 | + $_GET['a'] = 0; |
|
| 4760 | + } |
|
| 4533 | 4761 | $step_progress['name'] = 'Converting ips'; |
| 4534 | 4762 | $step_progress['current'] = $_GET['a']; |
| 4535 | 4763 | |
@@ -4572,16 +4800,19 @@ discard block |
||
| 4572 | 4800 | 'empty' => '', |
| 4573 | 4801 | 'limit' => $limit, |
| 4574 | 4802 | )); |
| 4575 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 4576 | - $arIp[] = $row[$oldCol]; |
|
| 4803 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 4804 | + $arIp[] = $row[$oldCol]; |
|
| 4805 | + } |
|
| 4577 | 4806 | $smcFunc['db_free_result']($request); |
| 4578 | 4807 | |
| 4579 | 4808 | // Special case, null ip could keep us in a loop. |
| 4580 | - if (is_null($arIp[0])) |
|
| 4581 | - unset($arIp[0]); |
|
| 4809 | + if (is_null($arIp[0])) { |
|
| 4810 | + unset($arIp[0]); |
|
| 4811 | + } |
|
| 4582 | 4812 | |
| 4583 | - if (empty($arIp)) |
|
| 4584 | - $is_done = true; |
|
| 4813 | + if (empty($arIp)) { |
|
| 4814 | + $is_done = true; |
|
| 4815 | + } |
|
| 4585 | 4816 | |
| 4586 | 4817 | $updates = array(); |
| 4587 | 4818 | $cases = array(); |
@@ -4590,16 +4821,18 @@ discard block |
||
| 4590 | 4821 | { |
| 4591 | 4822 | $arIp[$i] = trim($arIp[$i]); |
| 4592 | 4823 | |
| 4593 | - if (empty($arIp[$i])) |
|
| 4594 | - continue; |
|
| 4824 | + if (empty($arIp[$i])) { |
|
| 4825 | + continue; |
|
| 4826 | + } |
|
| 4595 | 4827 | |
| 4596 | 4828 | $updates['ip' . $i] = $arIp[$i]; |
| 4597 | 4829 | $cases[$arIp[$i]] = 'WHEN ' . $oldCol . ' = {string:ip' . $i . '} THEN {inet:ip' . $i . '}'; |
| 4598 | 4830 | |
| 4599 | 4831 | if ($setSize > 0 && $i % $setSize === 0) |
| 4600 | 4832 | { |
| 4601 | - if (count($updates) == 1) |
|
| 4602 | - continue; |
|
| 4833 | + if (count($updates) == 1) { |
|
| 4834 | + continue; |
|
| 4835 | + } |
|
| 4603 | 4836 | |
| 4604 | 4837 | $updates['whereSet'] = array_values($updates); |
| 4605 | 4838 | $smcFunc['db_query']('', ' |
@@ -4633,8 +4866,7 @@ discard block |
||
| 4633 | 4866 | 'ip' => $ip |
| 4634 | 4867 | )); |
| 4635 | 4868 | } |
| 4636 | - } |
|
| 4637 | - else |
|
| 4869 | + } else |
|
| 4638 | 4870 | { |
| 4639 | 4871 | $updates['whereSet'] = array_values($updates); |
| 4640 | 4872 | $smcFunc['db_query']('', ' |
@@ -4648,9 +4880,9 @@ discard block |
||
| 4648 | 4880 | $updates |
| 4649 | 4881 | ); |
| 4650 | 4882 | } |
| 4883 | + } else { |
|
| 4884 | + $is_done = true; |
|
| 4651 | 4885 | } |
| 4652 | - else |
|
| 4653 | - $is_done = true; |
|
| 4654 | 4886 | |
| 4655 | 4887 | $_GET['a'] += $limit; |
| 4656 | 4888 | $step_progress['current'] = $_GET['a']; |
@@ -4676,10 +4908,11 @@ discard block |
||
| 4676 | 4908 | |
| 4677 | 4909 | $columns = $smcFunc['db_list_columns']($targetTable, true); |
| 4678 | 4910 | |
| 4679 | - if (isset($columns[$column])) |
|
| 4680 | - return $columns[$column]; |
|
| 4681 | - else |
|
| 4682 | - return null; |
|
| 4683 | -} |
|
| 4911 | + if (isset($columns[$column])) { |
|
| 4912 | + return $columns[$column]; |
|
| 4913 | + } else { |
|
| 4914 | + return null; |
|
| 4915 | + } |
|
| 4916 | + } |
|
| 4684 | 4917 | |
| 4685 | 4918 | ?> |
| 4686 | 4919 | \ No newline at end of file |