@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -34,8 +35,9 @@ discard block |
||
| 34 | 35 | |
| 35 | 36 | $supported = class_exists('memcache'); |
| 36 | 37 | |
| 37 | - if ($test) |
|
| 38 | - return $supported; |
|
| 38 | + if ($test) { |
|
| 39 | + return $supported; |
|
| 40 | + } |
|
| 39 | 41 | return parent::isSupported() && $supported && !empty($cache_memcached); |
| 40 | 42 | } |
| 41 | 43 | |
@@ -61,9 +63,9 @@ discard block |
||
| 61 | 63 | $server = trim($servers[array_rand($servers)]); |
| 62 | 64 | |
| 63 | 65 | // Normal host names do not contain slashes, while e.g. unix sockets do. Assume alternative transport pipe with port 0. |
| 64 | - if (strpos($server,'/') !== false) |
|
| 65 | - $host = $server; |
|
| 66 | - else |
|
| 66 | + if (strpos($server,'/') !== false) { |
|
| 67 | + $host = $server; |
|
| 68 | + } else |
|
| 67 | 69 | { |
| 68 | 70 | $server = explode(':', $server); |
| 69 | 71 | $host = $server[0]; |
@@ -71,10 +73,11 @@ discard block |
||
| 71 | 73 | } |
| 72 | 74 | |
| 73 | 75 | // Don't wait too long: yes, we want the server, but we might be able to run the query faster! |
| 74 | - if (empty($db_persist)) |
|
| 75 | - $connected = $this->memcache->connect($host, $port); |
|
| 76 | - else |
|
| 77 | - $connected = $this->memcache->pconnect($host, $port); |
|
| 76 | + if (empty($db_persist)) { |
|
| 77 | + $connected = $this->memcache->connect($host, $port); |
|
| 78 | + } else { |
|
| 79 | + $connected = $this->memcache->pconnect($host, $port); |
|
| 80 | + } |
|
| 78 | 81 | } |
| 79 | 82 | |
| 80 | 83 | return $connected; |
@@ -90,8 +93,9 @@ discard block |
||
| 90 | 93 | $value = $this->memcache->get($key); |
| 91 | 94 | |
| 92 | 95 | // $value should return either data or false (from failure, key not found or empty array). |
| 93 | - if ($value === false) |
|
| 94 | - return null; |
|
| 96 | + if ($value === false) { |
|
| 97 | + return null; |
|
| 98 | + } |
|
| 95 | 99 | return $value; |
| 96 | 100 | } |
| 97 | 101 | |
@@ -132,8 +136,9 @@ discard block |
||
| 132 | 136 | $config_vars[] = $txt['cache_memcache_settings']; |
| 133 | 137 | $config_vars[] = array('cache_memcached', $txt['cache_memcache_servers'], 'file', 'text', 0, 'cache_memcached', 'postinput' => '<br><div class="smalltext"><em>' . $txt['cache_memcache_servers_subtext'] . '</em></div>'); |
| 134 | 138 | |
| 135 | - if (!isset($context['settings_post_javascript'])) |
|
| 136 | - $context['settings_post_javascript'] = ''; |
|
| 139 | + if (!isset($context['settings_post_javascript'])) { |
|
| 140 | + $context['settings_post_javascript'] = ''; |
|
| 141 | + } |
|
| 137 | 142 | |
| 138 | 143 | $context['settings_post_javascript'] .= ' |
| 139 | 144 | $("#cache_accelerator").change(function (e) { |
@@ -32,16 +32,18 @@ discard block |
||
| 32 | 32 | ob_start(); |
| 33 | 33 | |
| 34 | 34 | // Do some cleaning, just in case. |
| 35 | -foreach (array('db_character_set', 'cachedir') as $variable) |
|
| 35 | +foreach (array('db_character_set', 'cachedir') as $variable) { |
|
| 36 | 36 | if (isset($GLOBALS[$variable])) |
| 37 | 37 | unset($GLOBALS[$variable], $GLOBALS[$variable]); |
| 38 | +} |
|
| 38 | 39 | |
| 39 | 40 | // Load the settings... |
| 40 | 41 | require_once(dirname(__FILE__) . '/Settings.php'); |
| 41 | 42 | |
| 42 | 43 | // Make absolutely sure the cache directory is defined. |
| 43 | -if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) |
|
| 44 | +if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) { |
|
| 44 | 45 | $cachedir = $boarddir . '/cache'; |
| 46 | +} |
|
| 45 | 47 | |
| 46 | 48 | // Without those we can't go anywhere |
| 47 | 49 | require_once($sourcedir . '/QueryString.php'); |
@@ -51,8 +53,9 @@ discard block |
||
| 51 | 53 | require_once($sourcedir . '/Load.php'); |
| 52 | 54 | |
| 53 | 55 | // If $maintenance is set specifically to 2, then we're upgrading or something. |
| 54 | -if (!empty($maintenance) && $maintenance == 2) |
|
| 56 | +if (!empty($maintenance) && $maintenance == 2) { |
|
| 55 | 57 | display_maintenance_message(); |
| 58 | +} |
|
| 56 | 59 | |
| 57 | 60 | // Create a variable to store some SMF specific functions in. |
| 58 | 61 | $smcFunc = array(); |
@@ -67,8 +70,9 @@ discard block |
||
| 67 | 70 | cleanRequest(); |
| 68 | 71 | |
| 69 | 72 | // Seed the random generator. |
| 70 | -if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) |
|
| 73 | +if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) { |
|
| 71 | 74 | smf_seed_generator(); |
| 75 | +} |
|
| 72 | 76 | |
| 73 | 77 | // Before we get carried away, are we doing a scheduled task? If so save CPU cycles by jumping out! |
| 74 | 78 | if (isset($_GET['scheduled'])) |
@@ -88,9 +92,9 @@ discard block |
||
| 88 | 92 | if (!empty($modSettings['enableCompressedOutput']) && !headers_sent()) |
| 89 | 93 | { |
| 90 | 94 | // If zlib is being used, turn off output compression. |
| 91 | - if (ini_get('zlib.output_compression') >= 1 || ini_get('output_handler') == 'ob_gzhandler') |
|
| 92 | - $modSettings['enableCompressedOutput'] = '0'; |
|
| 93 | - else |
|
| 95 | + if (ini_get('zlib.output_compression') >= 1 || ini_get('output_handler') == 'ob_gzhandler') { |
|
| 96 | + $modSettings['enableCompressedOutput'] = '0'; |
|
| 97 | + } else |
|
| 94 | 98 | { |
| 95 | 99 | ob_end_clean(); |
| 96 | 100 | ob_start('ob_gzhandler'); |
@@ -182,18 +186,21 @@ discard block |
||
| 182 | 186 | loadPermissions(); |
| 183 | 187 | |
| 184 | 188 | // Attachments don't require the entire theme to be loaded. |
| 185 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach') |
|
| 186 | - detectBrowser(); |
|
| 189 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach') { |
|
| 190 | + detectBrowser(); |
|
| 191 | + } |
|
| 187 | 192 | // Load the current theme. (note that ?theme=1 will also work, may be used for guest theming.) |
| 188 | - else |
|
| 189 | - loadTheme(); |
|
| 193 | + else { |
|
| 194 | + loadTheme(); |
|
| 195 | + } |
|
| 190 | 196 | |
| 191 | 197 | // Check if the user should be disallowed access. |
| 192 | 198 | is_not_banned(); |
| 193 | 199 | |
| 194 | 200 | // If we are in a topic and don't have permission to approve it then duck out now. |
| 195 | - if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest'])) |
|
| 196 | - fatal_lang_error('not_a_topic', false); |
|
| 201 | + if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest'])) { |
|
| 202 | + fatal_lang_error('not_a_topic', false); |
|
| 203 | + } |
|
| 197 | 204 | |
| 198 | 205 | $no_stat_actions = array('clock', 'dlattach', 'findmember', 'jsoption', 'likes', 'loadeditorlocale', 'modifycat', 'requestmembers', 'smstats', 'suggest', 'about:unknown', '.xml', 'xmlhttp', 'verificationcode', 'viewquery', 'viewsmfile'); |
| 199 | 206 | call_integration_hook('integrate_pre_log_stats', array(&$no_stat_actions)); |
@@ -204,8 +211,9 @@ discard block |
||
| 204 | 211 | writeLog(); |
| 205 | 212 | |
| 206 | 213 | // Track forum statistics and hits...? |
| 207 | - if (!empty($modSettings['hitStats'])) |
|
| 208 | - trackStats(array('hits' => '+')); |
|
| 214 | + if (!empty($modSettings['hitStats'])) { |
|
| 215 | + trackStats(array('hits' => '+')); |
|
| 216 | + } |
|
| 209 | 217 | } |
| 210 | 218 | unset($no_stat_actions); |
| 211 | 219 | |
@@ -219,13 +227,14 @@ discard block |
||
| 219 | 227 | return ($_REQUEST['action'] == 'login2' ? 'Login2' : ($_REQUEST['action'] == 'logintfa' ? 'LoginTFA' : 'Logout')); |
| 220 | 228 | } |
| 221 | 229 | // Don't even try it, sonny. |
| 222 | - else |
|
| 223 | - return 'InMaintenance'; |
|
| 230 | + else { |
|
| 231 | + return 'InMaintenance'; |
|
| 232 | + } |
|
| 224 | 233 | } |
| 225 | 234 | // If guest access is off, a guest can only do one of the very few following actions. |
| 226 | - elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'logintfa', 'reminder', 'activate', 'help', 'helpadmin', 'smstats', 'verificationcode', 'signup', 'signup2')))) |
|
| 227 | - return 'KickGuest'; |
|
| 228 | - elseif (empty($_REQUEST['action'])) |
|
| 235 | + elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'logintfa', 'reminder', 'activate', 'help', 'helpadmin', 'smstats', 'verificationcode', 'signup', 'signup2')))) { |
|
| 236 | + return 'KickGuest'; |
|
| 237 | + } elseif (empty($_REQUEST['action'])) |
|
| 229 | 238 | { |
| 230 | 239 | // Action and board are both empty... BoardIndex! Unless someone else wants to do something different. |
| 231 | 240 | if (empty($board) && empty($topic)) |
@@ -239,8 +248,9 @@ discard block |
||
| 239 | 248 | |
| 240 | 249 | $call = call_helper($defaultAction, true); |
| 241 | 250 | |
| 242 | - if (!empty($call)) |
|
| 243 | - return $call; |
|
| 251 | + if (!empty($call)) { |
|
| 252 | + return $call; |
|
| 253 | + } |
|
| 244 | 254 | } |
| 245 | 255 | |
| 246 | 256 | // No default action huh? then go to our good old BoardIndex. |
@@ -370,8 +380,9 @@ discard block |
||
| 370 | 380 | |
| 371 | 381 | $call = call_helper($fallbackAction, true); |
| 372 | 382 | |
| 373 | - if (!empty($call)) |
|
| 374 | - return $call; |
|
| 383 | + if (!empty($call)) { |
|
| 384 | + return $call; |
|
| 385 | + } |
|
| 375 | 386 | } |
| 376 | 387 | |
| 377 | 388 | // No fallback action, huh? |
@@ -382,8 +393,9 @@ discard block |
||
| 382 | 393 | } |
| 383 | 394 | |
| 384 | 395 | // Otherwise, it was set - so let's go to that action. |
| 385 | - if (!empty($actionArray[$_REQUEST['action']][0])) |
|
| 386 | - require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]); |
|
| 396 | + if (!empty($actionArray[$_REQUEST['action']][0])) { |
|
| 397 | + require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]); |
|
| 398 | + } |
|
| 387 | 399 | |
| 388 | 400 | // Do the right thing. |
| 389 | 401 | return call_helper($actionArray[$_REQUEST['action']][1], true); |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | // This won't be dedicated without this - this must exist in each gateway! |
| 15 | 15 | // SMF Payment Gateway: paypal |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Class for returning available form data for this gateway |
@@ -118,8 +119,7 @@ discard block |
||
| 118 | 119 | { |
| 119 | 120 | $return_data['hidden']['p3'] = 1; |
| 120 | 121 | $return_data['hidden']['t3'] = strtoupper(substr($period, 0, 1)); |
| 121 | - } |
|
| 122 | - else |
|
| 122 | + } else |
|
| 123 | 123 | { |
| 124 | 124 | preg_match('~(\d*)(\w)~', $sub_data['real_length'], $match); |
| 125 | 125 | $unit = $match[1]; |
@@ -130,14 +130,15 @@ discard block |
||
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | // If it's repeatable do some javascript to respect this idea. |
| 133 | - if (!empty($sub_data['repeatable'])) |
|
| 134 | - $return_data['javascript'] = ' |
|
| 133 | + if (!empty($sub_data['repeatable'])) { |
|
| 134 | + $return_data['javascript'] = ' |
|
| 135 | 135 | document.write(\'<label for="do_paypal_recur"><input type="checkbox" name="do_paypal_recur" id="do_paypal_recur" checked onclick="switchPaypalRecur();">' . $txt['paid_make_recurring'] . '</label><br>\'); |
| 136 | 136 | |
| 137 | 137 | function switchPaypalRecur() |
| 138 | 138 | { |
| 139 | 139 | document.getElementById("paypal_cmd").value = document.getElementById("do_paypal_recur").checked ? "_xclick-subscriptions" : "_xclick"; |
| 140 | 140 | }'; |
| 141 | + } |
|
| 141 | 142 | |
| 142 | 143 | return $return_data; |
| 143 | 144 | } |
@@ -160,20 +161,24 @@ discard block |
||
| 160 | 161 | global $modSettings; |
| 161 | 162 | |
| 162 | 163 | // Has the user set up an email address? |
| 163 | - if ((empty($modSettings['paidsubs_test']) && empty($modSettings['paypal_email'])) || (!empty($modSettings['paidsubs_test']) && empty($modSettings['paypal_sandbox_email']))) |
|
| 164 | - return false; |
|
| 164 | + if ((empty($modSettings['paidsubs_test']) && empty($modSettings['paypal_email'])) || (!empty($modSettings['paidsubs_test']) && empty($modSettings['paypal_sandbox_email']))) { |
|
| 165 | + return false; |
|
| 166 | + } |
|
| 165 | 167 | // Check the correct transaction types are even here. |
| 166 | - if ((!isset($_POST['txn_type']) && !isset($_POST['payment_status'])) || (!isset($_POST['business']) && !isset($_POST['receiver_email']))) |
|
| 167 | - return false; |
|
| 168 | + if ((!isset($_POST['txn_type']) && !isset($_POST['payment_status'])) || (!isset($_POST['business']) && !isset($_POST['receiver_email']))) { |
|
| 169 | + return false; |
|
| 170 | + } |
|
| 168 | 171 | // Correct email address? |
| 169 | - if (!isset($_POST['business'])) |
|
| 170 | - $_POST['business'] = $_POST['receiver_email']; |
|
| 172 | + if (!isset($_POST['business'])) { |
|
| 173 | + $_POST['business'] = $_POST['receiver_email']; |
|
| 174 | + } |
|
| 171 | 175 | |
| 172 | 176 | // Are we testing? |
| 173 | - if (empty($modSettings['paidsubs_test']) && strtolower($modSettings['paypal_sandbox_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', strtolower($modSettings['paypal_additional_emails']))))) |
|
| 174 | - return false; |
|
| 175 | - elseif (strtolower($modSettings['paypal_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', $modSettings['paypal_additional_emails'])))) |
|
| 176 | - return false; |
|
| 177 | + if (empty($modSettings['paidsubs_test']) && strtolower($modSettings['paypal_sandbox_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', strtolower($modSettings['paypal_additional_emails']))))) { |
|
| 178 | + return false; |
|
| 179 | + } elseif (strtolower($modSettings['paypal_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', $modSettings['paypal_additional_emails'])))) { |
|
| 180 | + return false; |
|
| 181 | + } |
|
| 177 | 182 | return true; |
| 178 | 183 | } |
| 179 | 184 | |
@@ -192,15 +197,17 @@ discard block |
||
| 192 | 197 | global $modSettings, $txt; |
| 193 | 198 | |
| 194 | 199 | // Put this to some default value. |
| 195 | - if (!isset($_POST['txn_type'])) |
|
| 196 | - $_POST['txn_type'] = ''; |
|
| 200 | + if (!isset($_POST['txn_type'])) { |
|
| 201 | + $_POST['txn_type'] = ''; |
|
| 202 | + } |
|
| 197 | 203 | |
| 198 | 204 | // Build the request string - starting with the minimum requirement. |
| 199 | 205 | $requestString = 'cmd=_notify-validate'; |
| 200 | 206 | |
| 201 | 207 | // Now my dear, add all the posted bits in the order we got them |
| 202 | - foreach ($_POST as $k => $v) |
|
| 203 | - $requestString .= '&' . $k . '=' . urlencode($v); |
|
| 208 | + foreach ($_POST as $k => $v) { |
|
| 209 | + $requestString .= '&' . $k . '=' . urlencode($v); |
|
| 210 | + } |
|
| 204 | 211 | |
| 205 | 212 | // Can we use curl? |
| 206 | 213 | if (function_exists('curl_init') && $curl = curl_init((!empty($modSettings['paidsubs_test']) ? 'https://www.sandbox.' : 'https://www.') . 'paypal.com/cgi-bin/webscr')) |
@@ -240,14 +247,16 @@ discard block |
||
| 240 | 247 | $header .= 'Connection: close' . "\r\n\r\n"; |
| 241 | 248 | |
| 242 | 249 | // Open the connection. |
| 243 | - if (!empty($modSettings['paidsubs_test'])) |
|
| 244 | - $fp = fsockopen('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30); |
|
| 245 | - else |
|
| 246 | - $fp = fsockopen('www.paypal.com', 80, $errno, $errstr, 30); |
|
| 250 | + if (!empty($modSettings['paidsubs_test'])) { |
|
| 251 | + $fp = fsockopen('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30); |
|
| 252 | + } else { |
|
| 253 | + $fp = fsockopen('www.paypal.com', 80, $errno, $errstr, 30); |
|
| 254 | + } |
|
| 247 | 255 | |
| 248 | 256 | // Did it work? |
| 249 | - if (!$fp) |
|
| 250 | - generateSubscriptionError($txt['paypal_could_not_connect']); |
|
| 257 | + if (!$fp) { |
|
| 258 | + generateSubscriptionError($txt['paypal_could_not_connect']); |
|
| 259 | + } |
|
| 251 | 260 | |
| 252 | 261 | // Put the data to the port. |
| 253 | 262 | fputs($fp, $header . $requestString); |
@@ -256,8 +265,9 @@ discard block |
||
| 256 | 265 | while (!feof($fp)) |
| 257 | 266 | { |
| 258 | 267 | $this->return_data = fgets($fp, 1024); |
| 259 | - if (strcmp(trim($this->return_data), 'VERIFIED') === 0) |
|
| 260 | - break; |
|
| 268 | + if (strcmp(trim($this->return_data), 'VERIFIED') === 0) { |
|
| 269 | + break; |
|
| 270 | + } |
|
| 261 | 271 | } |
| 262 | 272 | |
| 263 | 273 | // Clean up. |
@@ -265,28 +275,34 @@ discard block |
||
| 265 | 275 | } |
| 266 | 276 | |
| 267 | 277 | // If this isn't verified then give up... |
| 268 | - if (strcmp(trim($this->return_data), 'VERIFIED') !== 0) |
|
| 269 | - exit; |
|
| 278 | + if (strcmp(trim($this->return_data), 'VERIFIED') !== 0) { |
|
| 279 | + exit; |
|
| 280 | + } |
|
| 270 | 281 | |
| 271 | 282 | // Check that this is intended for us. |
| 272 | - if (strtolower($modSettings['paypal_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', strtolower($modSettings['paypal_additional_emails']))))) |
|
| 273 | - exit; |
|
| 283 | + if (strtolower($modSettings['paypal_email']) != strtolower($_POST['business']) && (empty($modSettings['paypal_additional_emails']) || !in_array(strtolower($_POST['business']), explode(',', strtolower($modSettings['paypal_additional_emails']))))) { |
|
| 284 | + exit; |
|
| 285 | + } |
|
| 274 | 286 | |
| 275 | 287 | // Is this a subscription - and if so is it a secondary payment that we need to process? |
| 276 | 288 | // If so, make sure we get it in the expected format. Seems PayPal sometimes sends it without urlencoding. |
| 277 | - if (!empty($_POST['item_number']) && strpos($_POST['item_number'], ' ') !== false) |
|
| 278 | - $_POST['item_number'] = str_replace(' ', '+', $_POST['item_number']); |
|
| 279 | - if ($this->isSubscription() && (empty($_POST['item_number']) || strpos($_POST['item_number'], '+') === false)) |
|
| 280 | - // Calculate the subscription it relates to! |
|
| 289 | + if (!empty($_POST['item_number']) && strpos($_POST['item_number'], ' ') !== false) { |
|
| 290 | + $_POST['item_number'] = str_replace(' ', '+', $_POST['item_number']); |
|
| 291 | + } |
|
| 292 | + if ($this->isSubscription() && (empty($_POST['item_number']) || strpos($_POST['item_number'], '+') === false)) { |
|
| 293 | + // Calculate the subscription it relates to! |
|
| 281 | 294 | $this->_findSubscription(); |
| 295 | + } |
|
| 282 | 296 | |
| 283 | 297 | // Verify the currency! |
| 284 | - if (strtolower($_POST['mc_currency']) !== strtolower($modSettings['paid_currency_code'])) |
|
| 285 | - exit; |
|
| 298 | + if (strtolower($_POST['mc_currency']) !== strtolower($modSettings['paid_currency_code'])) { |
|
| 299 | + exit; |
|
| 300 | + } |
|
| 286 | 301 | |
| 287 | 302 | // Can't exist if it doesn't contain anything. |
| 288 | - if (empty($_POST['item_number'])) |
|
| 289 | - exit; |
|
| 303 | + if (empty($_POST['item_number'])) { |
|
| 304 | + exit; |
|
| 305 | + } |
|
| 290 | 306 | |
| 291 | 307 | // Return the id_sub and id_member |
| 292 | 308 | return explode('+', $_POST['item_number']); |
@@ -299,10 +315,11 @@ discard block |
||
| 299 | 315 | */ |
| 300 | 316 | public function isRefund() |
| 301 | 317 | { |
| 302 | - if ($_POST['payment_status'] === 'Refunded' || $_POST['payment_status'] === 'Reversed' || $_POST['txn_type'] === 'Refunded' || ($_POST['txn_type'] === 'reversal' && $_POST['payment_status'] === 'Completed')) |
|
| 303 | - return true; |
|
| 304 | - else |
|
| 305 | - return false; |
|
| 318 | + if ($_POST['payment_status'] === 'Refunded' || $_POST['payment_status'] === 'Reversed' || $_POST['txn_type'] === 'Refunded' || ($_POST['txn_type'] === 'reversal' && $_POST['payment_status'] === 'Completed')) { |
|
| 319 | + return true; |
|
| 320 | + } else { |
|
| 321 | + return false; |
|
| 322 | + } |
|
| 306 | 323 | } |
| 307 | 324 | |
| 308 | 325 | /** |
@@ -312,10 +329,11 @@ discard block |
||
| 312 | 329 | */ |
| 313 | 330 | public function isSubscription() |
| 314 | 331 | { |
| 315 | - if (substr($_POST['txn_type'], 0, 14) === 'subscr_payment' && $_POST['payment_status'] === 'Completed') |
|
| 316 | - return true; |
|
| 317 | - else |
|
| 318 | - return false; |
|
| 332 | + if (substr($_POST['txn_type'], 0, 14) === 'subscr_payment' && $_POST['payment_status'] === 'Completed') { |
|
| 333 | + return true; |
|
| 334 | + } else { |
|
| 335 | + return false; |
|
| 336 | + } |
|
| 319 | 337 | } |
| 320 | 338 | |
| 321 | 339 | /** |
@@ -325,10 +343,11 @@ discard block |
||
| 325 | 343 | */ |
| 326 | 344 | public function isPayment() |
| 327 | 345 | { |
| 328 | - if ($_POST['payment_status'] === 'Completed' && $_POST['txn_type'] === 'web_accept') |
|
| 329 | - return true; |
|
| 330 | - else |
|
| 331 | - return false; |
|
| 346 | + if ($_POST['payment_status'] === 'Completed' && $_POST['txn_type'] === 'web_accept') { |
|
| 347 | + return true; |
|
| 348 | + } else { |
|
| 349 | + return false; |
|
| 350 | + } |
|
| 332 | 351 | } |
| 333 | 352 | |
| 334 | 353 | /** |
@@ -341,10 +360,11 @@ discard block |
||
| 341 | 360 | // subscr_cancel is sent when the user cancels, subscr_eot is sent when the subscription reaches final payment |
| 342 | 361 | // Neither require us to *do* anything as per performCancel(). |
| 343 | 362 | // subscr_eot, if sent, indicates an end of payments term. |
| 344 | - if (substr($_POST['txn_type'], 0, 13) === 'subscr_cancel' || substr($_POST['txn_type'], 0, 10) === 'subscr_eot') |
|
| 345 | - return true; |
|
| 346 | - else |
|
| 347 | - return false; |
|
| 363 | + if (substr($_POST['txn_type'], 0, 13) === 'subscr_cancel' || substr($_POST['txn_type'], 0, 10) === 'subscr_eot') { |
|
| 364 | + return true; |
|
| 365 | + } else { |
|
| 366 | + return false; |
|
| 367 | + } |
|
| 348 | 368 | } |
| 349 | 369 | |
| 350 | 370 | /** |
@@ -408,8 +428,9 @@ discard block |
||
| 408 | 428 | global $smcFunc; |
| 409 | 429 | |
| 410 | 430 | // Assume we have this? |
| 411 | - if (empty($_POST['subscr_id'])) |
|
| 412 | - return false; |
|
| 431 | + if (empty($_POST['subscr_id'])) { |
|
| 432 | + return false; |
|
| 433 | + } |
|
| 413 | 434 | |
| 414 | 435 | // Do we have this in the database? |
| 415 | 436 | $request = $smcFunc['db_query']('', ' |
@@ -438,11 +459,12 @@ discard block |
||
| 438 | 459 | 'payer_email' => $_POST['payer_email'], |
| 439 | 460 | ) |
| 440 | 461 | ); |
| 441 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 442 | - return false; |
|
| 462 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 463 | + return false; |
|
| 464 | + } |
|
| 465 | + } else { |
|
| 466 | + return false; |
|
| 443 | 467 | } |
| 444 | - else |
|
| 445 | - return false; |
|
| 446 | 468 | } |
| 447 | 469 | list ($member_id, $subscription_id) = $smcFunc['db_fetch_row']($request); |
| 448 | 470 | $_POST['item_number'] = $member_id . '+' . $subscription_id; |
@@ -11,8 +11,9 @@ |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('No direct access...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Converts the given UTF-8 string into lowercase. |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Create a menu. |
@@ -64,22 +65,26 @@ discard block |
||
| 64 | 65 | $menu_context['current_action'] = isset($menuOptions['action']) ? $menuOptions['action'] : $context['current_action']; |
| 65 | 66 | |
| 66 | 67 | // Allow extend *any* menu with a single hook |
| 67 | - if (!empty($menu_context['current_action'])) |
|
| 68 | - call_integration_hook('integrate_' . $menu_context['current_action'] . '_areas', array(&$menuData)); |
|
| 68 | + if (!empty($menu_context['current_action'])) { |
|
| 69 | + call_integration_hook('integrate_' . $menu_context['current_action'] . '_areas', array(&$menuData)); |
|
| 70 | + } |
|
| 69 | 71 | |
| 70 | 72 | // What is the current area selected? |
| 71 | - if (isset($menuOptions['current_area']) || isset($_GET['area'])) |
|
| 72 | - $menu_context['current_area'] = isset($menuOptions['current_area']) ? $menuOptions['current_area'] : $_GET['area']; |
|
| 73 | + if (isset($menuOptions['current_area']) || isset($_GET['area'])) { |
|
| 74 | + $menu_context['current_area'] = isset($menuOptions['current_area']) ? $menuOptions['current_area'] : $_GET['area']; |
|
| 75 | + } |
|
| 73 | 76 | |
| 74 | 77 | // Build a list of additional parameters that should go in the URL. |
| 75 | 78 | $menu_context['extra_parameters'] = ''; |
| 76 | - if (!empty($menuOptions['extra_url_parameters'])) |
|
| 77 | - foreach ($menuOptions['extra_url_parameters'] as $key => $value) |
|
| 79 | + if (!empty($menuOptions['extra_url_parameters'])) { |
|
| 80 | + foreach ($menuOptions['extra_url_parameters'] as $key => $value) |
|
| 78 | 81 | $menu_context['extra_parameters'] .= ';' . $key . '=' . $value; |
| 82 | + } |
|
| 79 | 83 | |
| 80 | 84 | // Only include the session ID in the URL if it's strictly necessary. |
| 81 | - if (empty($menuOptions['disable_url_session_check'])) |
|
| 82 | - $menu_context['extra_parameters'] .= ';' . $context['session_var'] . '=' . $context['session_id']; |
|
| 85 | + if (empty($menuOptions['disable_url_session_check'])) { |
|
| 86 | + $menu_context['extra_parameters'] .= ';' . $context['session_var'] . '=' . $context['session_id']; |
|
| 87 | + } |
|
| 83 | 88 | |
| 84 | 89 | $include_data = array(); |
| 85 | 90 | |
@@ -87,8 +92,9 @@ discard block |
||
| 87 | 92 | foreach ($menuData as $section_id => $section) |
| 88 | 93 | { |
| 89 | 94 | // Is this enabled - or has as permission check - which fails? |
| 90 | - if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($section['permission']) && !allowedTo($section['permission']))) |
|
| 91 | - continue; |
|
| 95 | + if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($section['permission']) && !allowedTo($section['permission']))) { |
|
| 96 | + continue; |
|
| 97 | + } |
|
| 92 | 98 | |
| 93 | 99 | // Now we cycle through the sections to pick the right area. |
| 94 | 100 | foreach ($section['areas'] as $area_id => $area) |
@@ -110,59 +116,57 @@ discard block |
||
| 110 | 116 | if (empty($area['hidden'])) |
| 111 | 117 | { |
| 112 | 118 | // First time this section? |
| 113 | - if (!isset($menu_context['sections'][$section_id])) |
|
| 114 | - $menu_context['sections'][$section_id]['title'] = $section['title']; |
|
| 119 | + if (!isset($menu_context['sections'][$section_id])) { |
|
| 120 | + $menu_context['sections'][$section_id]['title'] = $section['title']; |
|
| 121 | + } |
|
| 115 | 122 | |
| 116 | 123 | $menu_context['sections'][$section_id]['areas'][$area_id] = array('label' => isset($area['label']) ? $area['label'] : $txt[$area_id]); |
| 117 | 124 | // We'll need the ID as well... |
| 118 | 125 | $menu_context['sections'][$section_id]['id'] = $section_id; |
| 119 | 126 | // Does it have a custom URL? |
| 120 | - if (isset($area['custom_url'])) |
|
| 121 | - $menu_context['sections'][$section_id]['areas'][$area_id]['url'] = $area['custom_url']; |
|
| 127 | + if (isset($area['custom_url'])) { |
|
| 128 | + $menu_context['sections'][$section_id]['areas'][$area_id]['url'] = $area['custom_url']; |
|
| 129 | + } |
|
| 122 | 130 | |
| 123 | 131 | // Does this area have its own icon? |
| 124 | 132 | if (!isset($area['force_menu_into_arms_of_another_menu']) && $user_info['name'] == 'iamanoompaloompa') |
| 125 | 133 | { |
| 126 | 134 | $menu_context['sections'][$section_id]['areas'][$area_id] = $smcFunc['json_decode'](base64_decode('eyJsYWJlbCI6Ik9vbXBhIExvb21wYSIsInVybCI6Imh0dHBzOlwvXC9lbi53aWtpcGVkaWEub3JnXC93aWtpXC9Pb21wYV9Mb29tcGFzPyIsImljb24iOiI8aW1nIHNyYz1cImh0dHBzOlwvXC93d3cuc2ltcGxlbWFjaGluZXMub3JnXC9pbWFnZXNcL29vbXBhLmdpZlwiIGFsdD1cIkknbSBhbiBPb21wYSBMb29tcGFcIiBcLz4ifQ=='), true); |
| 127 | - } |
|
| 128 | - elseif (isset($area['icon'])) |
|
| 135 | + } elseif (isset($area['icon'])) |
|
| 129 | 136 | { |
| 130 | 137 | if (file_exists($settings['theme_dir'] . '/images/admin/' . $area['icon'])) |
| 131 | 138 | { |
| 132 | 139 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<img src="' . $settings['images_url'] . '/admin/' . $area['icon'] . '" alt="">'; |
| 133 | - } |
|
| 134 | - elseif (file_exists($settings['default_theme_dir'] . '/images/admin/' . $area['icon'])) |
|
| 140 | + } elseif (file_exists($settings['default_theme_dir'] . '/images/admin/' . $area['icon'])) |
|
| 135 | 141 | { |
| 136 | 142 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<img src="' . $settings['default_images_url'] . '/admin/' . $area['icon'] . '" alt="">'; |
| 143 | + } else { |
|
| 144 | + $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<span class="generic_icons ' . $area['icon'] . '"></span>'; |
|
| 137 | 145 | } |
| 138 | - else |
|
| 139 | - $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<span class="generic_icons ' . $area['icon'] . '"></span>'; |
|
| 146 | + } else { |
|
| 147 | + $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<span class="generic_icons ' . $area_id . '"></span>'; |
|
| 140 | 148 | } |
| 141 | - else |
|
| 142 | - $menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<span class="generic_icons ' . $area_id . '"></span>'; |
|
| 143 | 149 | |
| 144 | 150 | if (isset($area['icon_class']) && empty($menu_context['sections'][$section_id]['areas'][$area_id]['icon'])) |
| 145 | 151 | { |
| 146 | 152 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon_class'] = $menu_context['current_action'] . '_menu_icon ' . $area['icon_class']; |
| 147 | - } |
|
| 148 | - elseif (isset($area['icon'])) |
|
| 153 | + } elseif (isset($area['icon'])) |
|
| 149 | 154 | { |
| 150 | 155 | if (substr($area['icon'], -4) === '.png' || substr($area['icon'], -4) === '.gif') |
| 151 | 156 | { |
| 152 | 157 | if (file_exists($settings['theme_dir'] . '/images/admin/big/' . $area['icon'])) |
| 153 | 158 | { |
| 154 | 159 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon_file'] = $settings['theme_url'] . '/images/admin/big/' . $area['icon']; |
| 155 | - } |
|
| 156 | - elseif (file_exists($settings['default_theme_dir'] . '/images/admin/big/' . $area['icon'])) |
|
| 160 | + } elseif (file_exists($settings['default_theme_dir'] . '/images/admin/big/' . $area['icon'])) |
|
| 157 | 161 | { |
| 158 | 162 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon_file'] = $settings['default_theme_url'] . '/images/admin/big/' . $area['icon']; |
| 159 | 163 | } |
| 160 | 164 | } |
| 161 | 165 | |
| 162 | 166 | $menu_context['sections'][$section_id]['areas'][$area_id]['icon_class'] = $menu_context['current_action'] . '_menu_icon ' . str_replace(array('.png', '.gif'), '', $area['icon']); |
| 167 | + } else { |
|
| 168 | + $menu_context['sections'][$section_id]['areas'][$area_id]['icon_class'] = $menu_context['current_action'] . '_menu_icon ' . str_replace(array('.png', '.gif'), '', $area_id); |
|
| 163 | 169 | } |
| 164 | - else |
|
| 165 | - $menu_context['sections'][$section_id]['areas'][$area_id]['icon_class'] = $menu_context['current_action'] . '_menu_icon ' . str_replace(array('.png', '.gif'), '', $area_id); |
|
| 166 | 170 | |
| 167 | 171 | // This is a shortcut for Font-Icon users so they don't have to re-do whole CSS. |
| 168 | 172 | $menu_context['sections'][$section_id]['areas'][$area_id]['plain_class'] = !empty($area['icon']) ? $area['icon'] : ''; |
@@ -179,35 +183,41 @@ discard block |
||
| 179 | 183 | { |
| 180 | 184 | if ((empty($sub[1]) || allowedTo($sub[1])) && (!isset($sub['enabled']) || !empty($sub['enabled']))) |
| 181 | 185 | { |
| 182 | - if ($first_sa == null) |
|
| 183 | - $first_sa = $sa; |
|
| 186 | + if ($first_sa == null) { |
|
| 187 | + $first_sa = $sa; |
|
| 188 | + } |
|
| 184 | 189 | |
| 185 | 190 | $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$sa] = array('label' => $sub[0]); |
| 186 | 191 | // Custom URL? |
| 187 | - if (isset($sub['url'])) |
|
| 188 | - $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$sa]['url'] = $sub['url']; |
|
| 192 | + if (isset($sub['url'])) { |
|
| 193 | + $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$sa]['url'] = $sub['url']; |
|
| 194 | + } |
|
| 189 | 195 | |
| 190 | 196 | // A bit complicated - but is this set? |
| 191 | 197 | if ($menu_context['current_area'] == $area_id) |
| 192 | 198 | { |
| 193 | 199 | // Save which is the first... |
| 194 | - if (empty($first_sa)) |
|
| 195 | - $first_sa = $sa; |
|
| 200 | + if (empty($first_sa)) { |
|
| 201 | + $first_sa = $sa; |
|
| 202 | + } |
|
| 196 | 203 | |
| 197 | 204 | // Is this the current subsection? |
| 198 | - if (isset($_REQUEST['sa']) && $_REQUEST['sa'] == $sa) |
|
| 199 | - $menu_context['current_subsection'] = $sa; |
|
| 205 | + if (isset($_REQUEST['sa']) && $_REQUEST['sa'] == $sa) { |
|
| 206 | + $menu_context['current_subsection'] = $sa; |
|
| 207 | + } |
|
| 200 | 208 | // Otherwise is it the default? |
| 201 | - elseif (!isset($menu_context['current_subsection']) && !empty($sub[2])) |
|
| 202 | - $menu_context['current_subsection'] = $sa; |
|
| 209 | + elseif (!isset($menu_context['current_subsection']) && !empty($sub[2])) { |
|
| 210 | + $menu_context['current_subsection'] = $sa; |
|
| 211 | + } |
|
| 203 | 212 | } |
| 204 | 213 | |
| 205 | 214 | // Let's assume this is the last, for now. |
| 206 | 215 | $last_sa = $sa; |
| 207 | 216 | } |
| 208 | 217 | // Mark it as disabled... |
| 209 | - else |
|
| 210 | - $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$sa]['disabled'] = true; |
|
| 218 | + else { |
|
| 219 | + $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$sa]['disabled'] = true; |
|
| 220 | + } |
|
| 211 | 221 | } |
| 212 | 222 | |
| 213 | 223 | // Set which one is first, last and selected in the group. |
@@ -216,8 +226,9 @@ discard block |
||
| 216 | 226 | $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$context['right_to_left'] ? $last_sa : $first_sa]['is_first'] = true; |
| 217 | 227 | $menu_context['sections'][$section_id]['areas'][$area_id]['subsections'][$context['right_to_left'] ? $first_sa : $last_sa]['is_last'] = true; |
| 218 | 228 | |
| 219 | - if ($menu_context['current_area'] == $area_id && !isset($menu_context['current_subsection'])) |
|
| 220 | - $menu_context['current_subsection'] = $first_sa; |
|
| 229 | + if ($menu_context['current_area'] == $area_id && !isset($menu_context['current_subsection'])) { |
|
| 230 | + $menu_context['current_subsection'] = $first_sa; |
|
| 231 | + } |
|
| 221 | 232 | } |
| 222 | 233 | } |
| 223 | 234 | } |
@@ -251,23 +262,26 @@ discard block |
||
| 251 | 262 | $menu_context['base_url'] = isset($menuOptions['base_url']) ? $menuOptions['base_url'] : $scripturl . '?action=' . $menu_context['current_action']; |
| 252 | 263 | |
| 253 | 264 | // If we didn't find the area we were looking for go to a default one. |
| 254 | - if (isset($backup_area) && empty($found_section)) |
|
| 255 | - $menu_context['current_area'] = $backup_area; |
|
| 265 | + if (isset($backup_area) && empty($found_section)) { |
|
| 266 | + $menu_context['current_area'] = $backup_area; |
|
| 267 | + } |
|
| 256 | 268 | |
| 257 | 269 | // If there are sections quickly goes through all the sections to check if the base menu has an url |
| 258 | 270 | if (!empty($menu_context['current_section'])) |
| 259 | 271 | { |
| 260 | 272 | $menu_context['sections'][$menu_context['current_section']]['selected'] = true; |
| 261 | 273 | $menu_context['sections'][$menu_context['current_section']]['areas'][$menu_context['current_area']]['selected'] = true; |
| 262 | - if (!empty($menu_context['sections'][$menu_context['current_section']]['areas'][$menu_context['current_area']]['subsections'][$context['current_subaction']])) |
|
| 263 | - $menu_context['sections'][$menu_context['current_section']]['areas'][$menu_context['current_area']]['subsections'][$context['current_subaction']]['selected'] = true; |
|
| 274 | + if (!empty($menu_context['sections'][$menu_context['current_section']]['areas'][$menu_context['current_area']]['subsections'][$context['current_subaction']])) { |
|
| 275 | + $menu_context['sections'][$menu_context['current_section']]['areas'][$menu_context['current_area']]['subsections'][$context['current_subaction']]['selected'] = true; |
|
| 276 | + } |
|
| 264 | 277 | |
| 265 | - foreach ($menu_context['sections'] as $section_id => $section) |
|
| 266 | - foreach ($section['areas'] as $area_id => $area) |
|
| 278 | + foreach ($menu_context['sections'] as $section_id => $section) { |
|
| 279 | + foreach ($section['areas'] as $area_id => $area) |
|
| 267 | 280 | { |
| 268 | 281 | if (!isset($menu_context['sections'][$section_id]['url'])) |
| 269 | 282 | { |
| 270 | 283 | $menu_context['sections'][$section_id]['url'] = isset($area['url']) ? $area['url'] : $menu_context['base_url'] . ';area=' . $area_id; |
| 284 | + } |
|
| 271 | 285 | break; |
| 272 | 286 | } |
| 273 | 287 | } |
@@ -278,8 +292,9 @@ discard block |
||
| 278 | 292 | { |
| 279 | 293 | // Never happened! |
| 280 | 294 | $context['max_menu_id']--; |
| 281 | - if ($context['max_menu_id'] == 0) |
|
| 282 | - unset($context['max_menu_id']); |
|
| 295 | + if ($context['max_menu_id'] == 0) { |
|
| 296 | + unset($context['max_menu_id']); |
|
| 297 | + } |
|
| 283 | 298 | |
| 284 | 299 | return false; |
| 285 | 300 | } |
@@ -290,8 +305,9 @@ discard block |
||
| 290 | 305 | $context['template_layers'][] = $menu_context['layer_name']; |
| 291 | 306 | |
| 292 | 307 | // Check we had something - for sanity sake. |
| 293 | - if (empty($include_data)) |
|
| 294 | - return false; |
|
| 308 | + if (empty($include_data)) { |
|
| 309 | + return false; |
|
| 310 | + } |
|
| 295 | 311 | |
| 296 | 312 | // Finally - return information on the selected item. |
| 297 | 313 | $include_data += array( |
@@ -314,12 +330,14 @@ discard block |
||
| 314 | 330 | global $context; |
| 315 | 331 | |
| 316 | 332 | $menu_name = $menu_id == 'last' && isset($context['max_menu_id']) && isset($context['menu_data_' . $context['max_menu_id']]) ? 'menu_data_' . $context['max_menu_id'] : 'menu_data_' . $menu_id; |
| 317 | - if (!isset($context[$menu_name])) |
|
| 318 | - return false; |
|
| 333 | + if (!isset($context[$menu_name])) { |
|
| 334 | + return false; |
|
| 335 | + } |
|
| 319 | 336 | |
| 320 | 337 | $layer_index = array_search($context[$menu_name]['layer_name'], $context['template_layers']); |
| 321 | - if ($layer_index !== false) |
|
| 322 | - unset($context['template_layers'][$layer_index]); |
|
| 338 | + if ($layer_index !== false) { |
|
| 339 | + unset($context['template_layers'][$layer_index]); |
|
| 340 | + } |
|
| 323 | 341 | |
| 324 | 342 | unset($context[$menu_name]); |
| 325 | 343 | } |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * The main entrance point for the Manage Members screen. |
@@ -62,16 +63,18 @@ discard block |
||
| 62 | 63 | $context['activation_numbers'] = array(); |
| 63 | 64 | $context['awaiting_activation'] = 0; |
| 64 | 65 | $context['awaiting_approval'] = 0; |
| 65 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 66 | - $context['activation_numbers'][$row['is_activated']] = $row['total_members']; |
|
| 66 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 67 | + $context['activation_numbers'][$row['is_activated']] = $row['total_members']; |
|
| 68 | + } |
|
| 67 | 69 | $smcFunc['db_free_result']($request); |
| 68 | 70 | |
| 69 | 71 | foreach ($context['activation_numbers'] as $activation_type => $total_members) |
| 70 | 72 | { |
| 71 | - if (in_array($activation_type, array(0, 2))) |
|
| 72 | - $context['awaiting_activation'] += $total_members; |
|
| 73 | - elseif (in_array($activation_type, array(3, 4, 5))) |
|
| 74 | - $context['awaiting_approval'] += $total_members; |
|
| 73 | + if (in_array($activation_type, array(0, 2))) { |
|
| 74 | + $context['awaiting_activation'] += $total_members; |
|
| 75 | + } elseif (in_array($activation_type, array(3, 4, 5))) { |
|
| 76 | + $context['awaiting_approval'] += $total_members; |
|
| 77 | + } |
|
| 75 | 78 | } |
| 76 | 79 | |
| 77 | 80 | // For the page header... do we show activation? |
@@ -124,8 +127,9 @@ discard block |
||
| 124 | 127 | } |
| 125 | 128 | if (!$context['show_approve'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'approve')) |
| 126 | 129 | { |
| 127 | - if (!$context['show_activate'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'activate')) |
|
| 128 | - $context['tabs']['search']['is_last'] = true; |
|
| 130 | + if (!$context['show_activate'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'activate')) { |
|
| 131 | + $context['tabs']['search']['is_last'] = true; |
|
| 132 | + } |
|
| 129 | 133 | unset($context['tabs']['approve']); |
| 130 | 134 | } |
| 131 | 135 | |
@@ -157,8 +161,9 @@ discard block |
||
| 157 | 161 | foreach ($_POST['delete'] as $key => $value) |
| 158 | 162 | { |
| 159 | 163 | // Don't delete yourself, idiot. |
| 160 | - if ($value != $user_info['id']) |
|
| 161 | - $delete[$key] = (int) $value; |
|
| 164 | + if ($value != $user_info['id']) { |
|
| 165 | + $delete[$key] = (int) $value; |
|
| 166 | + } |
|
| 162 | 167 | } |
| 163 | 168 | |
| 164 | 169 | if (!empty($delete)) |
@@ -194,17 +199,18 @@ discard block |
||
| 194 | 199 | ); |
| 195 | 200 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 196 | 201 | { |
| 197 | - if ($row['min_posts'] == -1) |
|
| 198 | - $context['membergroups'][] = array( |
|
| 202 | + if ($row['min_posts'] == -1) { |
|
| 203 | + $context['membergroups'][] = array( |
|
| 199 | 204 | 'id' => $row['id_group'], |
| 200 | 205 | 'name' => $row['group_name'], |
| 201 | 206 | 'can_be_additional' => true |
| 202 | 207 | ); |
| 203 | - else |
|
| 204 | - $context['postgroups'][] = array( |
|
| 208 | + } else { |
|
| 209 | + $context['postgroups'][] = array( |
|
| 205 | 210 | 'id' => $row['id_group'], |
| 206 | 211 | 'name' => $row['group_name'] |
| 207 | 212 | ); |
| 213 | + } |
|
| 208 | 214 | } |
| 209 | 215 | $smcFunc['db_free_result']($request); |
| 210 | 216 | |
@@ -268,14 +274,15 @@ discard block |
||
| 268 | 274 | call_integration_hook('integrate_view_members_params', array(&$params)); |
| 269 | 275 | |
| 270 | 276 | $search_params = array(); |
| 271 | - if ($context['sub_action'] == 'query' && !empty($_REQUEST['params']) && empty($_POST['types'])) |
|
| 272 | - $search_params = $smcFunc['json_decode'](base64_decode($_REQUEST['params']), true); |
|
| 273 | - elseif (!empty($_POST)) |
|
| 277 | + if ($context['sub_action'] == 'query' && !empty($_REQUEST['params']) && empty($_POST['types'])) { |
|
| 278 | + $search_params = $smcFunc['json_decode'](base64_decode($_REQUEST['params']), true); |
|
| 279 | + } elseif (!empty($_POST)) |
|
| 274 | 280 | { |
| 275 | 281 | $search_params['types'] = $_POST['types']; |
| 276 | - foreach ($params as $param_name => $param_info) |
|
| 277 | - if (isset($_POST[$param_name])) |
|
| 282 | + foreach ($params as $param_name => $param_info) { |
|
| 283 | + if (isset($_POST[$param_name])) |
|
| 278 | 284 | $search_params[$param_name] = $_POST[$param_name]; |
| 285 | + } |
|
| 279 | 286 | } |
| 280 | 287 | |
| 281 | 288 | $search_url_params = isset($search_params) ? base64_encode($smcFunc['json_encode']($search_params)) : null; |
@@ -288,18 +295,21 @@ discard block |
||
| 288 | 295 | foreach ($params as $param_name => $param_info) |
| 289 | 296 | { |
| 290 | 297 | // Not filled in? |
| 291 | - if (!isset($search_params[$param_name]) || $search_params[$param_name] === '') |
|
| 292 | - continue; |
|
| 298 | + if (!isset($search_params[$param_name]) || $search_params[$param_name] === '') { |
|
| 299 | + continue; |
|
| 300 | + } |
|
| 293 | 301 | |
| 294 | 302 | // Make sure numeric values are really numeric. |
| 295 | - if (in_array($param_info['type'], array('int', 'age'))) |
|
| 296 | - $search_params[$param_name] = (int) $search_params[$param_name]; |
|
| 303 | + if (in_array($param_info['type'], array('int', 'age'))) { |
|
| 304 | + $search_params[$param_name] = (int) $search_params[$param_name]; |
|
| 305 | + } |
|
| 297 | 306 | // Date values have to match the specified format. |
| 298 | 307 | elseif ($param_info['type'] == 'date') |
| 299 | 308 | { |
| 300 | 309 | // Check if this date format is valid. |
| 301 | - if (preg_match('/^\d{4}-\d{1,2}-\d{1,2}$/', $search_params[$param_name]) == 0) |
|
| 302 | - continue; |
|
| 310 | + if (preg_match('/^\d{4}-\d{1,2}-\d{1,2}$/', $search_params[$param_name]) == 0) { |
|
| 311 | + continue; |
|
| 312 | + } |
|
| 303 | 313 | |
| 304 | 314 | $search_params[$param_name] = strtotime($search_params[$param_name]); |
| 305 | 315 | } |
@@ -308,8 +318,9 @@ discard block |
||
| 308 | 318 | if (!empty($param_info['range'])) |
| 309 | 319 | { |
| 310 | 320 | // Default to '=', just in case... |
| 311 | - if (empty($range_trans[$search_params['types'][$param_name]])) |
|
| 312 | - $search_params['types'][$param_name] = '='; |
|
| 321 | + if (empty($range_trans[$search_params['types'][$param_name]])) { |
|
| 322 | + $search_params['types'][$param_name] = '='; |
|
| 323 | + } |
|
| 313 | 324 | |
| 314 | 325 | // Handle special case 'age'. |
| 315 | 326 | if ($param_info['type'] == 'age') |
@@ -337,29 +348,30 @@ discard block |
||
| 337 | 348 | elseif ($param_info['type'] == 'date' && $search_params['types'][$param_name] == '=') |
| 338 | 349 | { |
| 339 | 350 | $query_parts[] = $param_info['db_fields'][0] . ' > ' . $search_params[$param_name] . ' AND ' . $param_info['db_fields'][0] . ' < ' . ($search_params[$param_name] + 86400); |
| 351 | + } else { |
|
| 352 | + $query_parts[] = $param_info['db_fields'][0] . ' ' . $range_trans[$search_params['types'][$param_name]] . ' ' . $search_params[$param_name]; |
|
| 340 | 353 | } |
| 341 | - else |
|
| 342 | - $query_parts[] = $param_info['db_fields'][0] . ' ' . $range_trans[$search_params['types'][$param_name]] . ' ' . $search_params[$param_name]; |
|
| 343 | 354 | } |
| 344 | 355 | // Checkboxes. |
| 345 | 356 | elseif ($param_info['type'] == 'checkbox') |
| 346 | 357 | { |
| 347 | 358 | // Each checkbox or no checkbox at all is checked -> ignore. |
| 348 | - if (!is_array($search_params[$param_name]) || count($search_params[$param_name]) == 0 || count($search_params[$param_name]) == count($param_info['values'])) |
|
| 349 | - continue; |
|
| 359 | + if (!is_array($search_params[$param_name]) || count($search_params[$param_name]) == 0 || count($search_params[$param_name]) == count($param_info['values'])) { |
|
| 360 | + continue; |
|
| 361 | + } |
|
| 350 | 362 | |
| 351 | 363 | $query_parts[] = ($param_info['db_fields'][0]) . ' IN ({array_string:' . $param_name . '_check})'; |
| 352 | 364 | $where_params[$param_name . '_check'] = $search_params[$param_name]; |
| 353 | - } |
|
| 354 | - else |
|
| 365 | + } else |
|
| 355 | 366 | { |
| 356 | 367 | // Replace the wildcard characters ('*' and '?') into MySQL ones. |
| 357 | 368 | $parameter = strtolower(strtr($smcFunc['htmlspecialchars']($search_params[$param_name], ENT_QUOTES), array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_'))); |
| 358 | 369 | |
| 359 | - if ($smcFunc['db_case_sensitive']) |
|
| 360 | - $query_parts[] = '(LOWER(' . implode(') LIKE {string:' . $param_name . '_normal} OR LOWER(', $param_info['db_fields']) . ') LIKE {string:' . $param_name . '_normal})'; |
|
| 361 | - else |
|
| 362 | - $query_parts[] = '(' . implode(' LIKE {string:' . $param_name . '_normal} OR ', $param_info['db_fields']) . ' LIKE {string:' . $param_name . '_normal})'; |
|
| 370 | + if ($smcFunc['db_case_sensitive']) { |
|
| 371 | + $query_parts[] = '(LOWER(' . implode(') LIKE {string:' . $param_name . '_normal} OR LOWER(', $param_info['db_fields']) . ') LIKE {string:' . $param_name . '_normal})'; |
|
| 372 | + } else { |
|
| 373 | + $query_parts[] = '(' . implode(' LIKE {string:' . $param_name . '_normal} OR ', $param_info['db_fields']) . ' LIKE {string:' . $param_name . '_normal})'; |
|
| 374 | + } |
|
| 363 | 375 | $where_params[$param_name . '_normal'] = '%' . $parameter . '%'; |
| 364 | 376 | } |
| 365 | 377 | } |
@@ -375,16 +387,18 @@ discard block |
||
| 375 | 387 | } |
| 376 | 388 | |
| 377 | 389 | // Additional membergroups (these are only relevant if not all primary groups where selected!). |
| 378 | - if (!empty($search_params['membergroups'][2]) && (empty($search_params['membergroups'][1]) || count($context['membergroups']) != count($search_params['membergroups'][1]))) |
|
| 379 | - foreach ($search_params['membergroups'][2] as $mg) |
|
| 390 | + if (!empty($search_params['membergroups'][2]) && (empty($search_params['membergroups'][1]) || count($context['membergroups']) != count($search_params['membergroups'][1]))) { |
|
| 391 | + foreach ($search_params['membergroups'][2] as $mg) |
|
| 380 | 392 | { |
| 381 | 393 | $mg_query_parts[] = 'FIND_IN_SET({int:add_group_' . $mg . '}, mem.additional_groups) != 0'; |
| 394 | + } |
|
| 382 | 395 | $where_params['add_group_' . $mg] = $mg; |
| 383 | 396 | } |
| 384 | 397 | |
| 385 | 398 | // Combine the one or two membergroup parts into one query part linked with an OR. |
| 386 | - if (!empty($mg_query_parts)) |
|
| 387 | - $query_parts[] = '(' . implode(' OR ', $mg_query_parts) . ')'; |
|
| 399 | + if (!empty($mg_query_parts)) { |
|
| 400 | + $query_parts[] = '(' . implode(' OR ', $mg_query_parts) . ')'; |
|
| 401 | + } |
|
| 388 | 402 | |
| 389 | 403 | // Get all selected post count related membergroups. |
| 390 | 404 | if (!empty($search_params['postgroups']) && count($search_params['postgroups']) != count($context['postgroups'])) |
@@ -396,9 +410,9 @@ discard block |
||
| 396 | 410 | // Construct the where part of the query. |
| 397 | 411 | $where = empty($query_parts) ? '1=1' : implode(' |
| 398 | 412 | AND ', $query_parts); |
| 413 | + } else { |
|
| 414 | + $search_url_params = null; |
|
| 399 | 415 | } |
| 400 | - else |
|
| 401 | - $search_url_params = null; |
|
| 402 | 416 | |
| 403 | 417 | // Construct the additional URL part with the query info in it. |
| 404 | 418 | $context['params_url'] = $context['sub_action'] == 'query' ? ';sa=query;params=' . $search_url_params : ''; |
@@ -521,28 +535,32 @@ discard block |
||
| 521 | 535 | 'function' => function($rowData) use ($txt) |
| 522 | 536 | { |
| 523 | 537 | // Calculate number of days since last online. |
| 524 | - if (empty($rowData['last_login'])) |
|
| 525 | - $difference = $txt['never']; |
|
| 526 | - else |
|
| 538 | + if (empty($rowData['last_login'])) { |
|
| 539 | + $difference = $txt['never']; |
|
| 540 | + } else |
|
| 527 | 541 | { |
| 528 | 542 | $num_days_difference = jeffsdatediff($rowData['last_login']); |
| 529 | 543 | |
| 530 | 544 | // Today. |
| 531 | - if (empty($num_days_difference)) |
|
| 532 | - $difference = $txt['viewmembers_today']; |
|
| 545 | + if (empty($num_days_difference)) { |
|
| 546 | + $difference = $txt['viewmembers_today']; |
|
| 547 | + } |
|
| 533 | 548 | |
| 534 | 549 | // Yesterday. |
| 535 | - elseif ($num_days_difference == 1) |
|
| 536 | - $difference = sprintf('1 %1$s', $txt['viewmembers_day_ago']); |
|
| 550 | + elseif ($num_days_difference == 1) { |
|
| 551 | + $difference = sprintf('1 %1$s', $txt['viewmembers_day_ago']); |
|
| 552 | + } |
|
| 537 | 553 | |
| 538 | 554 | // X days ago. |
| 539 | - else |
|
| 540 | - $difference = sprintf('%1$d %2$s', $num_days_difference, $txt['viewmembers_days_ago']); |
|
| 555 | + else { |
|
| 556 | + $difference = sprintf('%1$d %2$s', $num_days_difference, $txt['viewmembers_days_ago']); |
|
| 557 | + } |
|
| 541 | 558 | } |
| 542 | 559 | |
| 543 | 560 | // Show it in italics if they're not activated... |
| 544 | - if ($rowData['is_activated'] % 10 != 1) |
|
| 545 | - $difference = sprintf('<em title="%1$s">%2$s</em>', $txt['not_activated'], $difference); |
|
| 561 | + if ($rowData['is_activated'] % 10 != 1) { |
|
| 562 | + $difference = sprintf('<em title="%1$s">%2$s</em>', $txt['not_activated'], $difference); |
|
| 563 | + } |
|
| 546 | 564 | |
| 547 | 565 | return $difference; |
| 548 | 566 | }, |
@@ -594,8 +612,9 @@ discard block |
||
| 594 | 612 | ); |
| 595 | 613 | |
| 596 | 614 | // Without enough permissions, don't show 'delete members' checkboxes. |
| 597 | - if (!allowedTo('profile_remove_any')) |
|
| 598 | - unset($listOptions['cols']['check'], $listOptions['form'], $listOptions['additional_rows']); |
|
| 615 | + if (!allowedTo('profile_remove_any')) { |
|
| 616 | + unset($listOptions['cols']['check'], $listOptions['form'], $listOptions['additional_rows']); |
|
| 617 | + } |
|
| 599 | 618 | |
| 600 | 619 | require_once($sourcedir . '/Subs-List.php'); |
| 601 | 620 | createList($listOptions); |
@@ -638,17 +657,18 @@ discard block |
||
| 638 | 657 | ); |
| 639 | 658 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 640 | 659 | { |
| 641 | - if ($row['min_posts'] == -1) |
|
| 642 | - $context['membergroups'][] = array( |
|
| 660 | + if ($row['min_posts'] == -1) { |
|
| 661 | + $context['membergroups'][] = array( |
|
| 643 | 662 | 'id' => $row['id_group'], |
| 644 | 663 | 'name' => $row['group_name'], |
| 645 | 664 | 'can_be_additional' => true |
| 646 | 665 | ); |
| 647 | - else |
|
| 648 | - $context['postgroups'][] = array( |
|
| 666 | + } else { |
|
| 667 | + $context['postgroups'][] = array( |
|
| 649 | 668 | 'id' => $row['id_group'], |
| 650 | 669 | 'name' => $row['group_name'] |
| 651 | 670 | ); |
| 671 | + } |
|
| 652 | 672 | } |
| 653 | 673 | $smcFunc['db_free_result']($request); |
| 654 | 674 | |
@@ -675,8 +695,9 @@ discard block |
||
| 675 | 695 | $context['page_title'] = $txt['admin_members']; |
| 676 | 696 | $context['sub_template'] = 'admin_browse'; |
| 677 | 697 | $context['browse_type'] = isset($_REQUEST['type']) ? $_REQUEST['type'] : (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == 1 ? 'activate' : 'approve'); |
| 678 | - if (isset($context['tabs'][$context['browse_type']])) |
|
| 679 | - $context['tabs'][$context['browse_type']]['is_selected'] = true; |
|
| 698 | + if (isset($context['tabs'][$context['browse_type']])) { |
|
| 699 | + $context['tabs'][$context['browse_type']]['is_selected'] = true; |
|
| 700 | + } |
|
| 680 | 701 | |
| 681 | 702 | // Allowed filters are those we can have, in theory. |
| 682 | 703 | $context['allowed_filters'] = $context['browse_type'] == 'approve' ? array(3, 4, 5) : array(0, 2); |
@@ -687,18 +708,20 @@ discard block |
||
| 687 | 708 | foreach ($context['activation_numbers'] as $type => $amount) |
| 688 | 709 | { |
| 689 | 710 | // We have some of these... |
| 690 | - if (in_array($type, $context['allowed_filters']) && $amount > 0) |
|
| 691 | - $context['available_filters'][] = array( |
|
| 711 | + if (in_array($type, $context['allowed_filters']) && $amount > 0) { |
|
| 712 | + $context['available_filters'][] = array( |
|
| 692 | 713 | 'type' => $type, |
| 693 | 714 | 'amount' => $amount, |
| 694 | 715 | 'desc' => isset($txt['admin_browse_filter_type_' . $type]) ? $txt['admin_browse_filter_type_' . $type] : '?', |
| 695 | 716 | 'selected' => $type == $context['current_filter'] |
| 696 | 717 | ); |
| 718 | + } |
|
| 697 | 719 | } |
| 698 | 720 | |
| 699 | 721 | // If the filter was not sent, set it to whatever has people in it! |
| 700 | - if ($context['current_filter'] == -1 && !empty($context['available_filters'][0]['amount'])) |
|
| 701 | - $context['current_filter'] = $context['available_filters'][0]['type']; |
|
| 722 | + if ($context['current_filter'] == -1 && !empty($context['available_filters'][0]['amount'])) { |
|
| 723 | + $context['current_filter'] = $context['available_filters'][0]['type']; |
|
| 724 | + } |
|
| 702 | 725 | |
| 703 | 726 | // This little variable is used to determine if we should flag where we are looking. |
| 704 | 727 | $context['show_filter'] = ($context['current_filter'] != 0 && $context['current_filter'] != 3) || count($context['available_filters']) > 1; |
@@ -713,44 +736,47 @@ discard block |
||
| 713 | 736 | ); |
| 714 | 737 | |
| 715 | 738 | // Are we showing duplicate information? |
| 716 | - if (isset($_GET['showdupes'])) |
|
| 717 | - $_SESSION['showdupes'] = (int) $_GET['showdupes']; |
|
| 739 | + if (isset($_GET['showdupes'])) { |
|
| 740 | + $_SESSION['showdupes'] = (int) $_GET['showdupes']; |
|
| 741 | + } |
|
| 718 | 742 | $context['show_duplicates'] = !empty($_SESSION['showdupes']); |
| 719 | 743 | |
| 720 | 744 | // Determine which actions we should allow on this page. |
| 721 | 745 | if ($context['browse_type'] == 'approve') |
| 722 | 746 | { |
| 723 | 747 | // If we are approving deleted accounts we have a slightly different list... actually a mirror ;) |
| 724 | - if ($context['current_filter'] == 4) |
|
| 725 | - $context['allowed_actions'] = array( |
|
| 748 | + if ($context['current_filter'] == 4) { |
|
| 749 | + $context['allowed_actions'] = array( |
|
| 726 | 750 | 'reject' => $txt['admin_browse_w_approve_deletion'], |
| 727 | 751 | 'ok' => $txt['admin_browse_w_reject'], |
| 728 | 752 | ); |
| 729 | - else |
|
| 730 | - $context['allowed_actions'] = array( |
|
| 753 | + } else { |
|
| 754 | + $context['allowed_actions'] = array( |
|
| 731 | 755 | 'ok' => $txt['admin_browse_w_approve'], |
| 732 | 756 | 'okemail' => $txt['admin_browse_w_approve'] . ' ' . $txt['admin_browse_w_email'], |
| 733 | 757 | 'require_activation' => $txt['admin_browse_w_approve_require_activate'], |
| 734 | 758 | 'reject' => $txt['admin_browse_w_reject'], |
| 735 | 759 | 'rejectemail' => $txt['admin_browse_w_reject'] . ' ' . $txt['admin_browse_w_email'], |
| 736 | 760 | ); |
| 737 | - } |
|
| 738 | - elseif ($context['browse_type'] == 'activate') |
|
| 739 | - $context['allowed_actions'] = array( |
|
| 761 | + } |
|
| 762 | + } elseif ($context['browse_type'] == 'activate') { |
|
| 763 | + $context['allowed_actions'] = array( |
|
| 740 | 764 | 'ok' => $txt['admin_browse_w_activate'], |
| 741 | 765 | 'okemail' => $txt['admin_browse_w_activate'] . ' ' . $txt['admin_browse_w_email'], |
| 742 | 766 | 'delete' => $txt['admin_browse_w_delete'], |
| 743 | 767 | 'deleteemail' => $txt['admin_browse_w_delete'] . ' ' . $txt['admin_browse_w_email'], |
| 744 | 768 | 'remind' => $txt['admin_browse_w_remind'] . ' ' . $txt['admin_browse_w_email'], |
| 745 | 769 | ); |
| 770 | + } |
|
| 746 | 771 | |
| 747 | 772 | // Create an option list for actions allowed to be done with selected members. |
| 748 | 773 | $allowed_actions = ' |
| 749 | 774 | <option selected value="">' . $txt['admin_browse_with_selected'] . ':</option> |
| 750 | 775 | <option value="" disabled>-----------------------------</option>'; |
| 751 | - foreach ($context['allowed_actions'] as $key => $desc) |
|
| 752 | - $allowed_actions .= ' |
|
| 776 | + foreach ($context['allowed_actions'] as $key => $desc) { |
|
| 777 | + $allowed_actions .= ' |
|
| 753 | 778 | <option value="' . $key . '">' . $desc . '</option>'; |
| 779 | + } |
|
| 754 | 780 | |
| 755 | 781 | // Setup the Javascript function for selecting an action for the list. |
| 756 | 782 | $javascript = ' |
@@ -762,15 +788,16 @@ discard block |
||
| 762 | 788 | var message = "";'; |
| 763 | 789 | |
| 764 | 790 | // We have special messages for approving deletion of accounts - it's surprisingly logical - honest. |
| 765 | - if ($context['current_filter'] == 4) |
|
| 766 | - $javascript .= ' |
|
| 791 | + if ($context['current_filter'] == 4) { |
|
| 792 | + $javascript .= ' |
|
| 767 | 793 | if (document.forms.postForm.todo.value.indexOf("reject") != -1) |
| 768 | 794 | message = "' . $txt['admin_browse_w_delete'] . '"; |
| 769 | 795 | else |
| 770 | 796 | message = "' . $txt['admin_browse_w_reject'] . '";'; |
| 797 | + } |
|
| 771 | 798 | // Otherwise a nice standard message. |
| 772 | - else |
|
| 773 | - $javascript .= ' |
|
| 799 | + else { |
|
| 800 | + $javascript .= ' |
|
| 774 | 801 | if (document.forms.postForm.todo.value.indexOf("delete") != -1) |
| 775 | 802 | message = "' . $txt['admin_browse_w_delete'] . '"; |
| 776 | 803 | else if (document.forms.postForm.todo.value.indexOf("reject") != -1) |
@@ -779,6 +806,7 @@ discard block |
||
| 779 | 806 | message = "' . $txt['admin_browse_w_remind'] . '"; |
| 780 | 807 | else |
| 781 | 808 | message = "' . ($context['browse_type'] == 'approve' ? $txt['admin_browse_w_approve'] : $txt['admin_browse_w_activate']) . '";'; |
| 809 | + } |
|
| 782 | 810 | $javascript .= ' |
| 783 | 811 | if (confirm(message + " ' . $txt['admin_browse_warn'] . '")) |
| 784 | 812 | document.forms.postForm.submit(); |
@@ -911,10 +939,11 @@ discard block |
||
| 911 | 939 | $member_links = array(); |
| 912 | 940 | foreach ($rowData['duplicate_members'] as $member) |
| 913 | 941 | { |
| 914 | - if ($member['id']) |
|
| 915 | - $member_links[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '" ' . (!empty($member['is_banned']) ? 'class="red"' : '') . '>' . $member['name'] . '</a>'; |
|
| 916 | - else |
|
| 917 | - $member_links[] = $member['name'] . ' (' . $txt['guest'] . ')'; |
|
| 942 | + if ($member['id']) { |
|
| 943 | + $member_links[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '" ' . (!empty($member['is_banned']) ? 'class="red"' : '') . '>' . $member['name'] . '</a>'; |
|
| 944 | + } else { |
|
| 945 | + $member_links[] = $member['name'] . ' (' . $txt['guest'] . ')'; |
|
| 946 | + } |
|
| 918 | 947 | } |
| 919 | 948 | return implode(', ', $member_links); |
| 920 | 949 | }, |
@@ -963,14 +992,16 @@ discard block |
||
| 963 | 992 | ); |
| 964 | 993 | |
| 965 | 994 | // Pick what column to actually include if we're showing duplicates. |
| 966 | - if ($context['show_duplicates']) |
|
| 967 | - unset($listOptions['columns']['email']); |
|
| 968 | - else |
|
| 969 | - unset($listOptions['columns']['duplicates']); |
|
| 995 | + if ($context['show_duplicates']) { |
|
| 996 | + unset($listOptions['columns']['email']); |
|
| 997 | + } else { |
|
| 998 | + unset($listOptions['columns']['duplicates']); |
|
| 999 | + } |
|
| 970 | 1000 | |
| 971 | 1001 | // Only show hostname on duplicates as it takes a lot of time. |
| 972 | - if (!$context['show_duplicates'] || !empty($modSettings['disableHostnameLookup'])) |
|
| 973 | - unset($listOptions['columns']['hostname']); |
|
| 1002 | + if (!$context['show_duplicates'] || !empty($modSettings['disableHostnameLookup'])) { |
|
| 1003 | + unset($listOptions['columns']['hostname']); |
|
| 1004 | + } |
|
| 974 | 1005 | |
| 975 | 1006 | // Is there any need to show filters? |
| 976 | 1007 | if (isset($context['available_filters']) && count($context['available_filters']) > 1) |
@@ -978,9 +1009,10 @@ discard block |
||
| 978 | 1009 | $filterOptions = ' |
| 979 | 1010 | <strong>' . $txt['admin_browse_filter_by'] . ':</strong> |
| 980 | 1011 | <select name="filter" onchange="this.form.submit();">'; |
| 981 | - foreach ($context['available_filters'] as $filter) |
|
| 982 | - $filterOptions .= ' |
|
| 1012 | + foreach ($context['available_filters'] as $filter) { |
|
| 1013 | + $filterOptions .= ' |
|
| 983 | 1014 | <option value="' . $filter['type'] . '"' . ($filter['selected'] ? ' selected' : '') . '>' . $filter['desc'] . ' - ' . $filter['amount'] . ' ' . ($filter['amount'] == 1 ? $txt['user'] : $txt['users']) . '</option>'; |
| 1015 | + } |
|
| 984 | 1016 | $filterOptions .= ' |
| 985 | 1017 | </select> |
| 986 | 1018 | <noscript><input type="submit" value="' . $txt['go'] . '" name="filter" class="button"></noscript>'; |
@@ -992,12 +1024,13 @@ discard block |
||
| 992 | 1024 | } |
| 993 | 1025 | |
| 994 | 1026 | // What about if we only have one filter, but it's not the "standard" filter - show them what they are looking at. |
| 995 | - if (!empty($context['show_filter']) && !empty($context['available_filters'])) |
|
| 996 | - $listOptions['additional_rows'][] = array( |
|
| 1027 | + if (!empty($context['show_filter']) && !empty($context['available_filters'])) { |
|
| 1028 | + $listOptions['additional_rows'][] = array( |
|
| 997 | 1029 | 'position' => 'above_column_headers', |
| 998 | 1030 | 'value' => '<strong>' . $txt['admin_browse_filter_show'] . ':</strong> ' . $context['available_filters'][0]['desc'], |
| 999 | 1031 | 'class' => 'smalltext floatright', |
| 1000 | 1032 | ); |
| 1033 | + } |
|
| 1001 | 1034 | |
| 1002 | 1035 | // Now that we have all the options, create the list. |
| 1003 | 1036 | require_once($sourcedir . '/Subs-List.php'); |
@@ -1027,12 +1060,14 @@ discard block |
||
| 1027 | 1060 | $current_filter = (int) $_REQUEST['orig_filter']; |
| 1028 | 1061 | |
| 1029 | 1062 | // If we are applying a filter do just that - then redirect. |
| 1030 | - if (isset($_REQUEST['filter']) && $_REQUEST['filter'] != $_REQUEST['orig_filter']) |
|
| 1031 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $_REQUEST['filter'] . ';start=' . $_REQUEST['start']); |
|
| 1063 | + if (isset($_REQUEST['filter']) && $_REQUEST['filter'] != $_REQUEST['orig_filter']) { |
|
| 1064 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $_REQUEST['filter'] . ';start=' . $_REQUEST['start']); |
|
| 1065 | + } |
|
| 1032 | 1066 | |
| 1033 | 1067 | // Nothing to do? |
| 1034 | - if (!isset($_POST['todoAction']) && !isset($_POST['time_passed'])) |
|
| 1035 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
| 1068 | + if (!isset($_POST['todoAction']) && !isset($_POST['time_passed'])) { |
|
| 1069 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
| 1070 | + } |
|
| 1036 | 1071 | |
| 1037 | 1072 | // Are we dealing with members who have been waiting for > set amount of time? |
| 1038 | 1073 | if (isset($_POST['time_passed'])) |
@@ -1045,8 +1080,9 @@ discard block |
||
| 1045 | 1080 | else |
| 1046 | 1081 | { |
| 1047 | 1082 | $members = array(); |
| 1048 | - foreach ($_POST['todoAction'] as $id) |
|
| 1049 | - $members[] = (int) $id; |
|
| 1083 | + foreach ($_POST['todoAction'] as $id) { |
|
| 1084 | + $members[] = (int) $id; |
|
| 1085 | + } |
|
| 1050 | 1086 | $condition = ' |
| 1051 | 1087 | AND id_member IN ({array_int:members})'; |
| 1052 | 1088 | } |
@@ -1067,8 +1103,9 @@ discard block |
||
| 1067 | 1103 | $member_count = $smcFunc['db_num_rows']($request); |
| 1068 | 1104 | |
| 1069 | 1105 | // If no results then just return! |
| 1070 | - if ($member_count == 0) |
|
| 1071 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
| 1106 | + if ($member_count == 0) { |
|
| 1107 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
| 1108 | + } |
|
| 1072 | 1109 | |
| 1073 | 1110 | $member_info = array(); |
| 1074 | 1111 | $members = array(); |
@@ -1107,8 +1144,9 @@ discard block |
||
| 1107 | 1144 | // Do we have to let the integration code know about the activations? |
| 1108 | 1145 | if (!empty($modSettings['integrate_activate'])) |
| 1109 | 1146 | { |
| 1110 | - foreach ($member_info as $member) |
|
| 1111 | - call_integration_hook('integrate_activate', array($member['username'])); |
|
| 1147 | + foreach ($member_info as $member) { |
|
| 1148 | + call_integration_hook('integrate_activate', array($member['username'])); |
|
| 1149 | + } |
|
| 1112 | 1150 | } |
| 1113 | 1151 | |
| 1114 | 1152 | // Check for email. |
@@ -1238,20 +1276,23 @@ discard block |
||
| 1238 | 1276 | $log_action = $_POST['todo'] == 'remind' ? 'remind_member' : 'approve_member'; |
| 1239 | 1277 | |
| 1240 | 1278 | require_once($sourcedir . '/Logging.php'); |
| 1241 | - foreach ($member_info as $member) |
|
| 1242 | - logAction($log_action, array('member' => $member['id']), 'admin'); |
|
| 1279 | + foreach ($member_info as $member) { |
|
| 1280 | + logAction($log_action, array('member' => $member['id']), 'admin'); |
|
| 1281 | + } |
|
| 1243 | 1282 | } |
| 1244 | 1283 | |
| 1245 | 1284 | // Although updateStats *may* catch this, best to do it manually just in case (Doesn't always sort out unapprovedMembers). |
| 1246 | - if (in_array($current_filter, array(3, 4, 5))) |
|
| 1247 | - updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > $member_count ? $modSettings['unapprovedMembers'] - $member_count : 0))); |
|
| 1285 | + if (in_array($current_filter, array(3, 4, 5))) { |
|
| 1286 | + updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > $member_count ? $modSettings['unapprovedMembers'] - $member_count : 0))); |
|
| 1287 | + } |
|
| 1248 | 1288 | |
| 1249 | 1289 | // Update the member's stats. (but, we know the member didn't change their name.) |
| 1250 | 1290 | updateStats('member', false); |
| 1251 | 1291 | |
| 1252 | 1292 | // If they haven't been deleted, update the post group statistics on them... |
| 1253 | - if (!in_array($_POST['todo'], array('delete', 'deleteemail', 'reject', 'rejectemail', 'remind'))) |
|
| 1254 | - updateStats('postgroups', $members); |
|
| 1293 | + if (!in_array($_POST['todo'], array('delete', 'deleteemail', 'reject', 'rejectemail', 'remind'))) { |
|
| 1294 | + updateStats('postgroups', $members); |
|
| 1295 | + } |
|
| 1255 | 1296 | |
| 1256 | 1297 | redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
| 1257 | 1298 | } |
@@ -1276,10 +1317,11 @@ discard block |
||
| 1276 | 1317 | $dis = time() - $old; |
| 1277 | 1318 | |
| 1278 | 1319 | // Before midnight? |
| 1279 | - if ($dis < $sinceMidnight) |
|
| 1280 | - return 0; |
|
| 1281 | - else |
|
| 1282 | - $dis -= $sinceMidnight; |
|
| 1320 | + if ($dis < $sinceMidnight) { |
|
| 1321 | + return 0; |
|
| 1322 | + } else { |
|
| 1323 | + $dis -= $sinceMidnight; |
|
| 1324 | + } |
|
| 1283 | 1325 | |
| 1284 | 1326 | // Divide out the seconds in a day to get the number of days. |
| 1285 | 1327 | return ceil($dis / (24 * 60 * 60)); |
@@ -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']; |
@@ -197,8 +204,9 @@ discard block |
||
| 197 | 204 | 'db_error_skip' => true, |
| 198 | 205 | ) |
| 199 | 206 | ); |
| 200 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 201 | - $modSettings[$row['variable']] = $row['value']; |
|
| 207 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 208 | + $modSettings[$row['variable']] = $row['value']; |
|
| 209 | + } |
|
| 202 | 210 | $smcFunc['db_free_result']($request); |
| 203 | 211 | } |
| 204 | 212 | |
@@ -208,10 +216,12 @@ discard block |
||
| 208 | 216 | $modSettings['theme_url'] = 'Themes/default'; |
| 209 | 217 | $modSettings['images_url'] = 'Themes/default/images'; |
| 210 | 218 | } |
| 211 | -if (!isset($settings['default_theme_url'])) |
|
| 219 | +if (!isset($settings['default_theme_url'])) { |
|
| 212 | 220 | $settings['default_theme_url'] = $modSettings['theme_url']; |
| 213 | -if (!isset($settings['default_theme_dir'])) |
|
| 221 | +} |
|
| 222 | +if (!isset($settings['default_theme_dir'])) { |
|
| 214 | 223 | $settings['default_theme_dir'] = $modSettings['theme_dir']; |
| 224 | +} |
|
| 215 | 225 | |
| 216 | 226 | $upcontext['is_large_forum'] = (empty($modSettings['smfVersion']) || $modSettings['smfVersion'] <= '1.1 RC1') && !empty($modSettings['totalMessages']) && $modSettings['totalMessages'] > 75000; |
| 217 | 227 | // Default title... |
@@ -229,13 +239,15 @@ discard block |
||
| 229 | 239 | $support_js = $upcontext['upgrade_status']['js']; |
| 230 | 240 | |
| 231 | 241 | // Only set this if the upgrader status says so. |
| 232 | - if (empty($is_debug)) |
|
| 233 | - $is_debug = $upcontext['upgrade_status']['debug']; |
|
| 242 | + if (empty($is_debug)) { |
|
| 243 | + $is_debug = $upcontext['upgrade_status']['debug']; |
|
| 244 | + } |
|
| 234 | 245 | |
| 235 | 246 | // Load the language. |
| 236 | - if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 237 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 238 | -} |
|
| 247 | + if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 248 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 249 | + } |
|
| 250 | + } |
|
| 239 | 251 | // Set the defaults. |
| 240 | 252 | else |
| 241 | 253 | { |
@@ -253,15 +265,18 @@ discard block |
||
| 253 | 265 | } |
| 254 | 266 | |
| 255 | 267 | // If this isn't the first stage see whether they are logging in and resuming. |
| 256 | -if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) |
|
| 268 | +if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) { |
|
| 257 | 269 | checkLogin(); |
| 270 | +} |
|
| 258 | 271 | |
| 259 | -if ($command_line) |
|
| 272 | +if ($command_line) { |
|
| 260 | 273 | cmdStep0(); |
| 274 | +} |
|
| 261 | 275 | |
| 262 | 276 | // Don't error if we're using xml. |
| 263 | -if (isset($_GET['xml'])) |
|
| 277 | +if (isset($_GET['xml'])) { |
|
| 264 | 278 | $upcontext['return_error'] = true; |
| 279 | +} |
|
| 265 | 280 | |
| 266 | 281 | // Loop through all the steps doing each one as required. |
| 267 | 282 | $upcontext['overall_percent'] = 0; |
@@ -282,9 +297,9 @@ discard block |
||
| 282 | 297 | } |
| 283 | 298 | |
| 284 | 299 | // Call the step and if it returns false that means pause! |
| 285 | - if (function_exists($step[2]) && $step[2]() === false) |
|
| 286 | - break; |
|
| 287 | - elseif (function_exists($step[2])) { |
|
| 300 | + if (function_exists($step[2]) && $step[2]() === false) { |
|
| 301 | + break; |
|
| 302 | + } elseif (function_exists($step[2])) { |
|
| 288 | 303 | //Start each new step with this unset, so the 'normal' template is called first |
| 289 | 304 | unset($_GET['xml']); |
| 290 | 305 | //Clear out warnings at the start of each step |
@@ -330,17 +345,18 @@ discard block |
||
| 330 | 345 | // This should not happen my dear... HELP ME DEVELOPERS!! |
| 331 | 346 | if (!empty($command_line)) |
| 332 | 347 | { |
| 333 | - if (function_exists('debug_print_backtrace')) |
|
| 334 | - debug_print_backtrace(); |
|
| 348 | + if (function_exists('debug_print_backtrace')) { |
|
| 349 | + debug_print_backtrace(); |
|
| 350 | + } |
|
| 335 | 351 | |
| 336 | 352 | 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.'; |
| 337 | 353 | flush(); |
| 338 | 354 | die(); |
| 339 | 355 | } |
| 340 | 356 | |
| 341 | - if (!isset($_GET['xml'])) |
|
| 342 | - template_upgrade_above(); |
|
| 343 | - else |
|
| 357 | + if (!isset($_GET['xml'])) { |
|
| 358 | + template_upgrade_above(); |
|
| 359 | + } else |
|
| 344 | 360 | { |
| 345 | 361 | header('Content-Type: text/xml; charset=UTF-8'); |
| 346 | 362 | // Sadly we need to retain the $_GET data thanks to the old upgrade scripts. |
@@ -362,25 +378,29 @@ discard block |
||
| 362 | 378 | $upcontext['form_url'] = $upgradeurl . '?step=' . $upcontext['current_step'] . '&substep=' . $_GET['substep'] . '&data=' . base64_encode(json_encode($upcontext['upgrade_status'])); |
| 363 | 379 | |
| 364 | 380 | // Custom stuff to pass back? |
| 365 | - if (!empty($upcontext['query_string'])) |
|
| 366 | - $upcontext['form_url'] .= $upcontext['query_string']; |
|
| 381 | + if (!empty($upcontext['query_string'])) { |
|
| 382 | + $upcontext['form_url'] .= $upcontext['query_string']; |
|
| 383 | + } |
|
| 367 | 384 | |
| 368 | 385 | // Call the appropriate subtemplate |
| 369 | - if (is_callable('template_' . $upcontext['sub_template'])) |
|
| 370 | - call_user_func('template_' . $upcontext['sub_template']); |
|
| 371 | - else |
|
| 372 | - die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
| 386 | + if (is_callable('template_' . $upcontext['sub_template'])) { |
|
| 387 | + call_user_func('template_' . $upcontext['sub_template']); |
|
| 388 | + } else { |
|
| 389 | + die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
| 390 | + } |
|
| 373 | 391 | } |
| 374 | 392 | |
| 375 | 393 | // Was there an error? |
| 376 | - if (!empty($upcontext['forced_error_message'])) |
|
| 377 | - echo $upcontext['forced_error_message']; |
|
| 394 | + if (!empty($upcontext['forced_error_message'])) { |
|
| 395 | + echo $upcontext['forced_error_message']; |
|
| 396 | + } |
|
| 378 | 397 | |
| 379 | 398 | // Show the footer. |
| 380 | - if (!isset($_GET['xml'])) |
|
| 381 | - template_upgrade_below(); |
|
| 382 | - else |
|
| 383 | - template_xml_below(); |
|
| 399 | + if (!isset($_GET['xml'])) { |
|
| 400 | + template_upgrade_below(); |
|
| 401 | + } else { |
|
| 402 | + template_xml_below(); |
|
| 403 | + } |
|
| 384 | 404 | } |
| 385 | 405 | |
| 386 | 406 | |
@@ -392,15 +412,19 @@ discard block |
||
| 392 | 412 | $seconds = intval($active % 60); |
| 393 | 413 | |
| 394 | 414 | $totalTime = ''; |
| 395 | - if ($hours > 0) |
|
| 396 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 397 | - if ($minutes > 0) |
|
| 398 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 399 | - if ($seconds > 0) |
|
| 400 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 415 | + if ($hours > 0) { |
|
| 416 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 417 | + } |
|
| 418 | + if ($minutes > 0) { |
|
| 419 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 420 | + } |
|
| 421 | + if ($seconds > 0) { |
|
| 422 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 423 | + } |
|
| 401 | 424 | |
| 402 | - if (!empty($totalTime)) |
|
| 403 | - echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
| 425 | + if (!empty($totalTime)) { |
|
| 426 | + echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
| 427 | + } |
|
| 404 | 428 | } |
| 405 | 429 | |
| 406 | 430 | // Bang - gone! |
@@ -413,8 +437,9 @@ discard block |
||
| 413 | 437 | global $upgradeurl, $upcontext, $command_line; |
| 414 | 438 | |
| 415 | 439 | // Command line users can't be redirected. |
| 416 | - if ($command_line) |
|
| 417 | - upgradeExit(true); |
|
| 440 | + if ($command_line) { |
|
| 441 | + upgradeExit(true); |
|
| 442 | + } |
|
| 418 | 443 | |
| 419 | 444 | // Are we providing the core info? |
| 420 | 445 | if ($addForm) |
@@ -440,12 +465,14 @@ discard block |
||
| 440 | 465 | define('SMF', 1); |
| 441 | 466 | |
| 442 | 467 | // Start the session. |
| 443 | - if (@ini_get('session.save_handler') == 'user') |
|
| 444 | - @ini_set('session.save_handler', 'files'); |
|
| 468 | + if (@ini_get('session.save_handler') == 'user') { |
|
| 469 | + @ini_set('session.save_handler', 'files'); |
|
| 470 | + } |
|
| 445 | 471 | @session_start(); |
| 446 | 472 | |
| 447 | - if (empty($smcFunc)) |
|
| 448 | - $smcFunc = array(); |
|
| 473 | + if (empty($smcFunc)) { |
|
| 474 | + $smcFunc = array(); |
|
| 475 | + } |
|
| 449 | 476 | |
| 450 | 477 | // We need this for authentication and some upgrade code |
| 451 | 478 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -472,24 +499,27 @@ discard block |
||
| 472 | 499 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
| 473 | 500 | |
| 474 | 501 | // Make the connection... |
| 475 | - if (empty($db_connection)) |
|
| 476 | - $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
| 477 | - else |
|
| 478 | - // If we've returned here, ping/reconnect to be safe |
|
| 502 | + if (empty($db_connection)) { |
|
| 503 | + $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
| 504 | + } else { |
|
| 505 | + // If we've returned here, ping/reconnect to be safe |
|
| 479 | 506 | $smcFunc['db_ping']($db_connection); |
| 507 | + } |
|
| 480 | 508 | |
| 481 | 509 | // Oh dear god!! |
| 482 | - if ($db_connection === null) |
|
| 483 | - die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
| 510 | + if ($db_connection === null) { |
|
| 511 | + die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
| 512 | + } |
|
| 484 | 513 | |
| 485 | - if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) |
|
| 486 | - $smcFunc['db_query']('', ' |
|
| 514 | + if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) { |
|
| 515 | + $smcFunc['db_query']('', ' |
|
| 487 | 516 | SET NAMES {string:db_character_set}', |
| 488 | 517 | array( |
| 489 | 518 | 'db_error_skip' => true, |
| 490 | 519 | 'db_character_set' => $db_character_set, |
| 491 | 520 | ) |
| 492 | 521 | ); |
| 522 | + } |
|
| 493 | 523 | |
| 494 | 524 | // Load the modSettings data... |
| 495 | 525 | $request = $smcFunc['db_query']('', ' |
@@ -500,11 +530,11 @@ discard block |
||
| 500 | 530 | ) |
| 501 | 531 | ); |
| 502 | 532 | $modSettings = array(); |
| 503 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 504 | - $modSettings[$row['variable']] = $row['value']; |
|
| 533 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 534 | + $modSettings[$row['variable']] = $row['value']; |
|
| 535 | + } |
|
| 505 | 536 | $smcFunc['db_free_result']($request); |
| 506 | - } |
|
| 507 | - else |
|
| 537 | + } else |
|
| 508 | 538 | { |
| 509 | 539 | 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.'); |
| 510 | 540 | } |
@@ -518,9 +548,10 @@ discard block |
||
| 518 | 548 | cleanRequest(); |
| 519 | 549 | } |
| 520 | 550 | |
| 521 | - if (!isset($_GET['substep'])) |
|
| 522 | - $_GET['substep'] = 0; |
|
| 523 | -} |
|
| 551 | + if (!isset($_GET['substep'])) { |
|
| 552 | + $_GET['substep'] = 0; |
|
| 553 | + } |
|
| 554 | + } |
|
| 524 | 555 | |
| 525 | 556 | function initialize_inputs() |
| 526 | 557 | { |
@@ -550,8 +581,9 @@ discard block |
||
| 550 | 581 | $dh = opendir(dirname(__FILE__)); |
| 551 | 582 | while ($file = readdir($dh)) |
| 552 | 583 | { |
| 553 | - if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) |
|
| 554 | - @unlink(dirname(__FILE__) . '/' . $file); |
|
| 584 | + if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) { |
|
| 585 | + @unlink(dirname(__FILE__) . '/' . $file); |
|
| 586 | + } |
|
| 555 | 587 | } |
| 556 | 588 | closedir($dh); |
| 557 | 589 | |
@@ -580,8 +612,9 @@ discard block |
||
| 580 | 612 | $temp = 'upgrade_php?step'; |
| 581 | 613 | while (strlen($temp) > 4) |
| 582 | 614 | { |
| 583 | - if (isset($_GET[$temp])) |
|
| 584 | - unset($_GET[$temp]); |
|
| 615 | + if (isset($_GET[$temp])) { |
|
| 616 | + unset($_GET[$temp]); |
|
| 617 | + } |
|
| 585 | 618 | $temp = substr($temp, 1); |
| 586 | 619 | } |
| 587 | 620 | |
@@ -608,32 +641,39 @@ discard block |
||
| 608 | 641 | && @file_exists(dirname(__FILE__) . '/upgrade_2-1_' . $db_type . '.sql'); |
| 609 | 642 | |
| 610 | 643 | // Need legacy scripts? |
| 611 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) |
|
| 612 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
| 613 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) |
|
| 614 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
| 615 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) |
|
| 616 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
| 644 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) { |
|
| 645 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
| 646 | + } |
|
| 647 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) { |
|
| 648 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
| 649 | + } |
|
| 650 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) { |
|
| 651 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
| 652 | + } |
|
| 617 | 653 | |
| 618 | 654 | // We don't need "-utf8" files anymore... |
| 619 | 655 | $upcontext['language'] = str_ireplace('-utf8', '', $upcontext['language']); |
| 620 | 656 | |
| 621 | 657 | // This needs to exist! |
| 622 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 623 | - 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>]'); |
|
| 624 | - else |
|
| 625 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 658 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 659 | + 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>]'); |
|
| 660 | + } else { |
|
| 661 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 662 | + } |
|
| 626 | 663 | |
| 627 | - if (!$check) |
|
| 628 | - // 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. |
|
| 664 | + if (!$check) { |
|
| 665 | + // 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. |
|
| 629 | 666 | 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.'); |
| 667 | + } |
|
| 630 | 668 | |
| 631 | 669 | // Do they meet the install requirements? |
| 632 | - if (!php_version_check()) |
|
| 633 | - 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.'); |
|
| 670 | + if (!php_version_check()) { |
|
| 671 | + 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.'); |
|
| 672 | + } |
|
| 634 | 673 | |
| 635 | - if (!db_version_check()) |
|
| 636 | - 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.'); |
|
| 674 | + if (!db_version_check()) { |
|
| 675 | + 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.'); |
|
| 676 | + } |
|
| 637 | 677 | |
| 638 | 678 | // Do some checks to make sure they have proper privileges |
| 639 | 679 | db_extend('packages'); |
@@ -648,14 +688,16 @@ discard block |
||
| 648 | 688 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
| 649 | 689 | |
| 650 | 690 | // Sorry... we need CREATE, ALTER and DROP |
| 651 | - if (!$create || !$alter || !$drop) |
|
| 652 | - 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.'); |
|
| 691 | + if (!$create || !$alter || !$drop) { |
|
| 692 | + 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.'); |
|
| 693 | + } |
|
| 653 | 694 | |
| 654 | 695 | // Do a quick version spot check. |
| 655 | 696 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
| 656 | 697 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
| 657 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
| 658 | - 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.'); |
|
| 698 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
| 699 | + 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.'); |
|
| 700 | + } |
|
| 659 | 701 | |
| 660 | 702 | // What absolutely needs to be writable? |
| 661 | 703 | $writable_files = array( |
@@ -677,12 +719,13 @@ discard block |
||
| 677 | 719 | quickFileWritable($custom_av_dir); |
| 678 | 720 | |
| 679 | 721 | // Are we good now? |
| 680 | - if (!is_writable($custom_av_dir)) |
|
| 681 | - 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)); |
|
| 682 | - elseif ($need_settings_update) |
|
| 722 | + if (!is_writable($custom_av_dir)) { |
|
| 723 | + 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)); |
|
| 724 | + } elseif ($need_settings_update) |
|
| 683 | 725 | { |
| 684 | - if (!function_exists('cache_put_data')) |
|
| 685 | - require_once($sourcedir . '/Load.php'); |
|
| 726 | + if (!function_exists('cache_put_data')) { |
|
| 727 | + require_once($sourcedir . '/Load.php'); |
|
| 728 | + } |
|
| 686 | 729 | updateSettings(array('custom_avatar_dir' => $custom_av_dir)); |
| 687 | 730 | updateSettings(array('custom_avatar_url' => $custom_av_url)); |
| 688 | 731 | } |
@@ -691,28 +734,33 @@ discard block |
||
| 691 | 734 | |
| 692 | 735 | // Check the cache directory. |
| 693 | 736 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
| 694 | - if (!file_exists($cachedir_temp)) |
|
| 695 | - @mkdir($cachedir_temp); |
|
| 696 | - if (!file_exists($cachedir_temp)) |
|
| 697 | - 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.'); |
|
| 698 | - |
|
| 699 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
| 700 | - 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>.'); |
|
| 701 | - elseif (!isset($_GET['skiplang'])) |
|
| 737 | + if (!file_exists($cachedir_temp)) { |
|
| 738 | + @mkdir($cachedir_temp); |
|
| 739 | + } |
|
| 740 | + if (!file_exists($cachedir_temp)) { |
|
| 741 | + 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.'); |
|
| 742 | + } |
|
| 743 | + |
|
| 744 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
| 745 | + 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>.'); |
|
| 746 | + } elseif (!isset($_GET['skiplang'])) |
|
| 702 | 747 | { |
| 703 | 748 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
| 704 | 749 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 705 | 750 | |
| 706 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 707 | - 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>]'); |
|
| 751 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 752 | + 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>]'); |
|
| 753 | + } |
|
| 708 | 754 | } |
| 709 | 755 | |
| 710 | - if (!makeFilesWritable($writable_files)) |
|
| 711 | - return false; |
|
| 756 | + if (!makeFilesWritable($writable_files)) { |
|
| 757 | + return false; |
|
| 758 | + } |
|
| 712 | 759 | |
| 713 | 760 | // Check agreement.txt. (it may not exist, in which case $boarddir must be writable.) |
| 714 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
| 715 | - 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.'); |
|
| 761 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
| 762 | + 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.'); |
|
| 763 | + } |
|
| 716 | 764 | |
| 717 | 765 | // Upgrade the agreement. |
| 718 | 766 | elseif (isset($modSettings['agreement'])) |
@@ -723,8 +771,8 @@ discard block |
||
| 723 | 771 | } |
| 724 | 772 | |
| 725 | 773 | // We're going to check that their board dir setting is right in case they've been moving stuff around. |
| 726 | - if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) |
|
| 727 | - $upcontext['warning'] = ' |
|
| 774 | + if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) { |
|
| 775 | + $upcontext['warning'] = ' |
|
| 728 | 776 | 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> |
| 729 | 777 | <ul> |
| 730 | 778 | <li>Board Directory: ' . $boarddir . '</li> |
@@ -732,19 +780,23 @@ discard block |
||
| 732 | 780 | <li>Cache Directory: ' . $cachedir_temp . '</li> |
| 733 | 781 | </ul> |
| 734 | 782 | 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.'; |
| 783 | + } |
|
| 735 | 784 | |
| 736 | 785 | // Confirm mbstring is loaded... |
| 737 | - if (!extension_loaded('mbstring')) |
|
| 738 | - return throw_error($txt['install_no_mbstring']); |
|
| 786 | + if (!extension_loaded('mbstring')) { |
|
| 787 | + return throw_error($txt['install_no_mbstring']); |
|
| 788 | + } |
|
| 739 | 789 | |
| 740 | 790 | // Check for https stream support. |
| 741 | 791 | $supported_streams = stream_get_wrappers(); |
| 742 | - if (!in_array('https', $supported_streams)) |
|
| 743 | - $upcontext['custom_warning'] = $txt['install_no_https']; |
|
| 792 | + if (!in_array('https', $supported_streams)) { |
|
| 793 | + $upcontext['custom_warning'] = $txt['install_no_https']; |
|
| 794 | + } |
|
| 744 | 795 | |
| 745 | 796 | // Either we're logged in or we're going to present the login. |
| 746 | - if (checkLogin()) |
|
| 747 | - return true; |
|
| 797 | + if (checkLogin()) { |
|
| 798 | + return true; |
|
| 799 | + } |
|
| 748 | 800 | |
| 749 | 801 | $upcontext += createToken('login'); |
| 750 | 802 | |
@@ -758,15 +810,17 @@ discard block |
||
| 758 | 810 | global $smcFunc, $db_type, $support_js; |
| 759 | 811 | |
| 760 | 812 | // Don't bother if the security is disabled. |
| 761 | - if ($disable_security) |
|
| 762 | - return true; |
|
| 813 | + if ($disable_security) { |
|
| 814 | + return true; |
|
| 815 | + } |
|
| 763 | 816 | |
| 764 | 817 | // Are we trying to login? |
| 765 | 818 | if (isset($_POST['contbutt']) && (!empty($_POST['user']))) |
| 766 | 819 | { |
| 767 | 820 | // If we've disabled security pick a suitable name! |
| 768 | - if (empty($_POST['user'])) |
|
| 769 | - $_POST['user'] = 'Administrator'; |
|
| 821 | + if (empty($_POST['user'])) { |
|
| 822 | + $_POST['user'] = 'Administrator'; |
|
| 823 | + } |
|
| 770 | 824 | |
| 771 | 825 | // Before 2.0 these column names were different! |
| 772 | 826 | $oldDB = false; |
@@ -781,16 +835,17 @@ discard block |
||
| 781 | 835 | 'db_error_skip' => true, |
| 782 | 836 | ) |
| 783 | 837 | ); |
| 784 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
| 785 | - $oldDB = true; |
|
| 838 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
| 839 | + $oldDB = true; |
|
| 840 | + } |
|
| 786 | 841 | $smcFunc['db_free_result']($request); |
| 787 | 842 | } |
| 788 | 843 | |
| 789 | 844 | // Get what we believe to be their details. |
| 790 | 845 | if (!$disable_security) |
| 791 | 846 | { |
| 792 | - if ($oldDB) |
|
| 793 | - $request = $smcFunc['db_query']('', ' |
|
| 847 | + if ($oldDB) { |
|
| 848 | + $request = $smcFunc['db_query']('', ' |
|
| 794 | 849 | SELECT id_member, memberName AS member_name, passwd, id_group, |
| 795 | 850 | additionalGroups AS additional_groups, lngfile |
| 796 | 851 | FROM {db_prefix}members |
@@ -800,8 +855,8 @@ discard block |
||
| 800 | 855 | 'db_error_skip' => true, |
| 801 | 856 | ) |
| 802 | 857 | ); |
| 803 | - else |
|
| 804 | - $request = $smcFunc['db_query']('', ' |
|
| 858 | + } else { |
|
| 859 | + $request = $smcFunc['db_query']('', ' |
|
| 805 | 860 | SELECT id_member, member_name, passwd, id_group, additional_groups, lngfile |
| 806 | 861 | FROM {db_prefix}members |
| 807 | 862 | WHERE member_name = {string:member_name}', |
@@ -810,6 +865,7 @@ discard block |
||
| 810 | 865 | 'db_error_skip' => true, |
| 811 | 866 | ) |
| 812 | 867 | ); |
| 868 | + } |
|
| 813 | 869 | if ($smcFunc['db_num_rows']($request) != 0) |
| 814 | 870 | { |
| 815 | 871 | list ($id_member, $name, $password, $id_group, $addGroups, $user_language) = $smcFunc['db_fetch_row']($request); |
@@ -817,16 +873,17 @@ discard block |
||
| 817 | 873 | $groups = explode(',', $addGroups); |
| 818 | 874 | $groups[] = $id_group; |
| 819 | 875 | |
| 820 | - foreach ($groups as $k => $v) |
|
| 821 | - $groups[$k] = (int) $v; |
|
| 876 | + foreach ($groups as $k => $v) { |
|
| 877 | + $groups[$k] = (int) $v; |
|
| 878 | + } |
|
| 822 | 879 | |
| 823 | 880 | $sha_passwd = sha1(strtolower($name) . un_htmlspecialchars($_REQUEST['passwrd'])); |
| 824 | 881 | |
| 825 | 882 | // We don't use "-utf8" anymore... |
| 826 | 883 | $user_language = str_ireplace('-utf8', '', $user_language); |
| 884 | + } else { |
|
| 885 | + $upcontext['username_incorrect'] = true; |
|
| 827 | 886 | } |
| 828 | - else |
|
| 829 | - $upcontext['username_incorrect'] = true; |
|
| 830 | 887 | $smcFunc['db_free_result']($request); |
| 831 | 888 | } |
| 832 | 889 | $upcontext['username'] = $_POST['user']; |
@@ -836,13 +893,14 @@ discard block |
||
| 836 | 893 | { |
| 837 | 894 | $upcontext['upgrade_status']['js'] = 1; |
| 838 | 895 | $support_js = 1; |
| 896 | + } else { |
|
| 897 | + $support_js = 0; |
|
| 839 | 898 | } |
| 840 | - else |
|
| 841 | - $support_js = 0; |
|
| 842 | 899 | |
| 843 | 900 | // Note down the version we are coming from. |
| 844 | - if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) |
|
| 845 | - $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
| 901 | + if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) { |
|
| 902 | + $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
| 903 | + } |
|
| 846 | 904 | |
| 847 | 905 | // Didn't get anywhere? |
| 848 | 906 | 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'])) |
@@ -876,15 +934,15 @@ discard block |
||
| 876 | 934 | 'db_error_skip' => true, |
| 877 | 935 | ) |
| 878 | 936 | ); |
| 879 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 880 | - return throw_error('You need to be an admin to perform an upgrade!'); |
|
| 937 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 938 | + return throw_error('You need to be an admin to perform an upgrade!'); |
|
| 939 | + } |
|
| 881 | 940 | $smcFunc['db_free_result']($request); |
| 882 | 941 | } |
| 883 | 942 | |
| 884 | 943 | $upcontext['user']['id'] = $id_member; |
| 885 | 944 | $upcontext['user']['name'] = $name; |
| 886 | - } |
|
| 887 | - else |
|
| 945 | + } else |
|
| 888 | 946 | { |
| 889 | 947 | $upcontext['user']['id'] = 1; |
| 890 | 948 | $upcontext['user']['name'] = 'Administrator'; |
@@ -900,11 +958,11 @@ discard block |
||
| 900 | 958 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $user_language . '.php')), 0, 4096); |
| 901 | 959 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 902 | 960 | |
| 903 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 904 | - $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'] . '.'; |
|
| 905 | - elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) |
|
| 906 | - $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'] . '.'; |
|
| 907 | - else |
|
| 961 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 962 | + $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'] . '.'; |
|
| 963 | + } elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) { |
|
| 964 | + $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'] . '.'; |
|
| 965 | + } else |
|
| 908 | 966 | { |
| 909 | 967 | // Set this as the new language. |
| 910 | 968 | $upcontext['language'] = $user_language; |
@@ -948,8 +1006,9 @@ discard block |
||
| 948 | 1006 | unset($member_columns); |
| 949 | 1007 | |
| 950 | 1008 | // If we've not submitted then we're done. |
| 951 | - if (empty($_POST['upcont'])) |
|
| 952 | - return false; |
|
| 1009 | + if (empty($_POST['upcont'])) { |
|
| 1010 | + return false; |
|
| 1011 | + } |
|
| 953 | 1012 | |
| 954 | 1013 | // Firstly, if they're enabling SM stat collection just do it. |
| 955 | 1014 | if (!empty($_POST['stats']) && substr($boardurl, 0, 16) != 'http://localhost' && empty($modSettings['allow_sm_stats']) && empty($modSettings['enable_sm_stats'])) |
@@ -969,16 +1028,17 @@ discard block |
||
| 969 | 1028 | fwrite($fp, $out); |
| 970 | 1029 | |
| 971 | 1030 | $return_data = ''; |
| 972 | - while (!feof($fp)) |
|
| 973 | - $return_data .= fgets($fp, 128); |
|
| 1031 | + while (!feof($fp)) { |
|
| 1032 | + $return_data .= fgets($fp, 128); |
|
| 1033 | + } |
|
| 974 | 1034 | |
| 975 | 1035 | fclose($fp); |
| 976 | 1036 | |
| 977 | 1037 | // Get the unique site ID. |
| 978 | 1038 | preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID); |
| 979 | 1039 | |
| 980 | - if (!empty($ID[1])) |
|
| 981 | - $smcFunc['db_insert']('replace', |
|
| 1040 | + if (!empty($ID[1])) { |
|
| 1041 | + $smcFunc['db_insert']('replace', |
|
| 982 | 1042 | $db_prefix . 'settings', |
| 983 | 1043 | array('variable' => 'string', 'value' => 'string'), |
| 984 | 1044 | array( |
@@ -987,9 +1047,9 @@ discard block |
||
| 987 | 1047 | ), |
| 988 | 1048 | array('variable') |
| 989 | 1049 | ); |
| 1050 | + } |
|
| 990 | 1051 | } |
| 991 | - } |
|
| 992 | - else |
|
| 1052 | + } else |
|
| 993 | 1053 | { |
| 994 | 1054 | $smcFunc['db_insert']('replace', |
| 995 | 1055 | $db_prefix . 'settings', |
@@ -1000,8 +1060,8 @@ discard block |
||
| 1000 | 1060 | } |
| 1001 | 1061 | } |
| 1002 | 1062 | // Don't remove stat collection unless we unchecked the box for real, not from the loop. |
| 1003 | - elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) |
|
| 1004 | - $smcFunc['db_query']('', ' |
|
| 1063 | + elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) { |
|
| 1064 | + $smcFunc['db_query']('', ' |
|
| 1005 | 1065 | DELETE FROM {db_prefix}settings |
| 1006 | 1066 | WHERE variable = {string:enable_sm_stats}', |
| 1007 | 1067 | array( |
@@ -1009,6 +1069,7 @@ discard block |
||
| 1009 | 1069 | 'db_error_skip' => true, |
| 1010 | 1070 | ) |
| 1011 | 1071 | ); |
| 1072 | + } |
|
| 1012 | 1073 | |
| 1013 | 1074 | // Deleting old karma stuff? |
| 1014 | 1075 | if (!empty($_POST['delete_karma'])) |
@@ -1023,20 +1084,22 @@ discard block |
||
| 1023 | 1084 | ); |
| 1024 | 1085 | |
| 1025 | 1086 | // Cleaning up old karma member settings. |
| 1026 | - if ($upcontext['karma_installed']['good']) |
|
| 1027 | - $smcFunc['db_query']('', ' |
|
| 1087 | + if ($upcontext['karma_installed']['good']) { |
|
| 1088 | + $smcFunc['db_query']('', ' |
|
| 1028 | 1089 | ALTER TABLE {db_prefix}members |
| 1029 | 1090 | DROP karma_good', |
| 1030 | 1091 | array() |
| 1031 | 1092 | ); |
| 1093 | + } |
|
| 1032 | 1094 | |
| 1033 | 1095 | // Does karma bad was enable? |
| 1034 | - if ($upcontext['karma_installed']['bad']) |
|
| 1035 | - $smcFunc['db_query']('', ' |
|
| 1096 | + if ($upcontext['karma_installed']['bad']) { |
|
| 1097 | + $smcFunc['db_query']('', ' |
|
| 1036 | 1098 | ALTER TABLE {db_prefix}members |
| 1037 | 1099 | DROP karma_bad', |
| 1038 | 1100 | array() |
| 1039 | 1101 | ); |
| 1102 | + } |
|
| 1040 | 1103 | |
| 1041 | 1104 | // Cleaning up old karma permissions. |
| 1042 | 1105 | $smcFunc['db_query']('', ' |
@@ -1049,32 +1112,37 @@ discard block |
||
| 1049 | 1112 | } |
| 1050 | 1113 | |
| 1051 | 1114 | // Emptying the error log? |
| 1052 | - if (!empty($_POST['empty_error'])) |
|
| 1053 | - $smcFunc['db_query']('truncate_table', ' |
|
| 1115 | + if (!empty($_POST['empty_error'])) { |
|
| 1116 | + $smcFunc['db_query']('truncate_table', ' |
|
| 1054 | 1117 | TRUNCATE {db_prefix}log_errors', |
| 1055 | 1118 | array( |
| 1056 | 1119 | ) |
| 1057 | 1120 | ); |
| 1121 | + } |
|
| 1058 | 1122 | |
| 1059 | 1123 | $changes = array(); |
| 1060 | 1124 | |
| 1061 | 1125 | // Add proxy settings. |
| 1062 | - if (!isset($GLOBALS['image_proxy_maxsize'])) |
|
| 1063 | - $changes += array( |
|
| 1126 | + if (!isset($GLOBALS['image_proxy_maxsize'])) { |
|
| 1127 | + $changes += array( |
|
| 1064 | 1128 | 'image_proxy_secret' => '\'' . substr(sha1(mt_rand()), 0, 20) . '\'', |
| 1065 | 1129 | 'image_proxy_maxsize' => 5190, |
| 1066 | 1130 | 'image_proxy_enabled' => 0, |
| 1067 | 1131 | ); |
| 1132 | + } |
|
| 1068 | 1133 | |
| 1069 | 1134 | // If $boardurl reflects https, set force_ssl |
| 1070 | - if (!function_exists('cache_put_data')) |
|
| 1071 | - require_once($sourcedir . '/Load.php'); |
|
| 1072 | - if (stripos($boardurl, 'https://') !== false) |
|
| 1073 | - updateSettings(array('force_ssl' => '2')); |
|
| 1135 | + if (!function_exists('cache_put_data')) { |
|
| 1136 | + require_once($sourcedir . '/Load.php'); |
|
| 1137 | + } |
|
| 1138 | + if (stripos($boardurl, 'https://') !== false) { |
|
| 1139 | + updateSettings(array('force_ssl' => '2')); |
|
| 1140 | + } |
|
| 1074 | 1141 | |
| 1075 | 1142 | // If we're overriding the language follow it through. |
| 1076 | - if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) |
|
| 1077 | - $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
| 1143 | + if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) { |
|
| 1144 | + $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
| 1145 | + } |
|
| 1078 | 1146 | |
| 1079 | 1147 | if (!empty($_POST['maint'])) |
| 1080 | 1148 | { |
@@ -1086,26 +1154,29 @@ discard block |
||
| 1086 | 1154 | { |
| 1087 | 1155 | $changes['mtitle'] = '\'' . addslashes($_POST['maintitle']) . '\''; |
| 1088 | 1156 | $changes['mmessage'] = '\'' . addslashes($_POST['mainmessage']) . '\''; |
| 1089 | - } |
|
| 1090 | - else |
|
| 1157 | + } else |
|
| 1091 | 1158 | { |
| 1092 | 1159 | $changes['mtitle'] = '\'Upgrading the forum...\''; |
| 1093 | 1160 | $changes['mmessage'] = '\'Don\\\'t worry, we will be back shortly with an updated forum. It will only be a minute ;).\''; |
| 1094 | 1161 | } |
| 1095 | 1162 | } |
| 1096 | 1163 | |
| 1097 | - if ($command_line) |
|
| 1098 | - echo ' * Updating Settings.php...'; |
|
| 1164 | + if ($command_line) { |
|
| 1165 | + echo ' * Updating Settings.php...'; |
|
| 1166 | + } |
|
| 1099 | 1167 | |
| 1100 | 1168 | // Fix some old paths. |
| 1101 | - if (substr($boarddir, 0, 1) == '.') |
|
| 1102 | - $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
| 1169 | + if (substr($boarddir, 0, 1) == '.') { |
|
| 1170 | + $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
| 1171 | + } |
|
| 1103 | 1172 | |
| 1104 | - if (substr($sourcedir, 0, 1) == '.') |
|
| 1105 | - $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
| 1173 | + if (substr($sourcedir, 0, 1) == '.') { |
|
| 1174 | + $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
| 1175 | + } |
|
| 1106 | 1176 | |
| 1107 | - if (empty($cachedir) || substr($cachedir, 0, 1) == '.') |
|
| 1108 | - $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
| 1177 | + if (empty($cachedir) || substr($cachedir, 0, 1) == '.') { |
|
| 1178 | + $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
| 1179 | + } |
|
| 1109 | 1180 | |
| 1110 | 1181 | // If they have a "host:port" setup for the host, split that into separate values |
| 1111 | 1182 | // You should never have a : in the hostname if you're not on MySQL, but better safe than sorry |
@@ -1116,32 +1187,36 @@ discard block |
||
| 1116 | 1187 | $changes['db_server'] = '\'' . $db_server . '\''; |
| 1117 | 1188 | |
| 1118 | 1189 | // Only set this if we're not using the default port |
| 1119 | - if ($db_port != ini_get('mysqli.default_port')) |
|
| 1120 | - $changes['db_port'] = (int) $db_port; |
|
| 1121 | - } |
|
| 1122 | - elseif (!empty($db_port)) |
|
| 1190 | + if ($db_port != ini_get('mysqli.default_port')) { |
|
| 1191 | + $changes['db_port'] = (int) $db_port; |
|
| 1192 | + } |
|
| 1193 | + } elseif (!empty($db_port)) |
|
| 1123 | 1194 | { |
| 1124 | 1195 | // If db_port is set and is the same as the default, set it to '' |
| 1125 | 1196 | if ($db_type == 'mysql') |
| 1126 | 1197 | { |
| 1127 | - if ($db_port == ini_get('mysqli.default_port')) |
|
| 1128 | - $changes['db_port'] = '\'\''; |
|
| 1129 | - elseif ($db_type == 'postgresql' && $db_port == 5432) |
|
| 1130 | - $changes['db_port'] = '\'\''; |
|
| 1198 | + if ($db_port == ini_get('mysqli.default_port')) { |
|
| 1199 | + $changes['db_port'] = '\'\''; |
|
| 1200 | + } elseif ($db_type == 'postgresql' && $db_port == 5432) { |
|
| 1201 | + $changes['db_port'] = '\'\''; |
|
| 1202 | + } |
|
| 1131 | 1203 | } |
| 1132 | 1204 | } |
| 1133 | 1205 | |
| 1134 | 1206 | // Maybe we haven't had this option yet? |
| 1135 | - if (empty($packagesdir)) |
|
| 1136 | - $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
| 1207 | + if (empty($packagesdir)) { |
|
| 1208 | + $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
| 1209 | + } |
|
| 1137 | 1210 | |
| 1138 | 1211 | // Add support for $tasksdir var. |
| 1139 | - if (empty($tasksdir)) |
|
| 1140 | - $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
| 1212 | + if (empty($tasksdir)) { |
|
| 1213 | + $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
| 1214 | + } |
|
| 1141 | 1215 | |
| 1142 | 1216 | // Make sure we fix the language as well. |
| 1143 | - if (stristr($language, '-utf8')) |
|
| 1144 | - $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
| 1217 | + if (stristr($language, '-utf8')) { |
|
| 1218 | + $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
| 1219 | + } |
|
| 1145 | 1220 | |
| 1146 | 1221 | // @todo Maybe change the cookie name if going to 1.1, too? |
| 1147 | 1222 | |
@@ -1149,8 +1224,9 @@ discard block |
||
| 1149 | 1224 | require_once($sourcedir . '/Subs-Admin.php'); |
| 1150 | 1225 | updateSettingsFile($changes); |
| 1151 | 1226 | |
| 1152 | - if ($command_line) |
|
| 1153 | - echo ' Successful.' . "\n"; |
|
| 1227 | + if ($command_line) { |
|
| 1228 | + echo ' Successful.' . "\n"; |
|
| 1229 | + } |
|
| 1154 | 1230 | |
| 1155 | 1231 | // Are we doing debug? |
| 1156 | 1232 | if (isset($_POST['debug'])) |
@@ -1160,8 +1236,9 @@ discard block |
||
| 1160 | 1236 | } |
| 1161 | 1237 | |
| 1162 | 1238 | // If we're not backing up then jump one. |
| 1163 | - if (empty($_POST['backup'])) |
|
| 1164 | - $upcontext['current_step']++; |
|
| 1239 | + if (empty($_POST['backup'])) { |
|
| 1240 | + $upcontext['current_step']++; |
|
| 1241 | + } |
|
| 1165 | 1242 | |
| 1166 | 1243 | // If we've got here then let's proceed to the next step! |
| 1167 | 1244 | return true; |
@@ -1176,8 +1253,9 @@ discard block |
||
| 1176 | 1253 | $upcontext['page_title'] = 'Backup Database'; |
| 1177 | 1254 | |
| 1178 | 1255 | // Done it already - js wise? |
| 1179 | - if (!empty($_POST['backup_done'])) |
|
| 1180 | - return true; |
|
| 1256 | + if (!empty($_POST['backup_done'])) { |
|
| 1257 | + return true; |
|
| 1258 | + } |
|
| 1181 | 1259 | |
| 1182 | 1260 | // Some useful stuff here. |
| 1183 | 1261 | db_extend(); |
@@ -1191,9 +1269,10 @@ discard block |
||
| 1191 | 1269 | $tables = $smcFunc['db_list_tables']($db, $filter); |
| 1192 | 1270 | |
| 1193 | 1271 | $table_names = array(); |
| 1194 | - foreach ($tables as $table) |
|
| 1195 | - if (substr($table, 0, 7) !== 'backup_') |
|
| 1272 | + foreach ($tables as $table) { |
|
| 1273 | + if (substr($table, 0, 7) !== 'backup_') |
|
| 1196 | 1274 | $table_names[] = $table; |
| 1275 | + } |
|
| 1197 | 1276 | |
| 1198 | 1277 | $upcontext['table_count'] = count($table_names); |
| 1199 | 1278 | $upcontext['cur_table_num'] = $_GET['substep']; |
@@ -1203,12 +1282,14 @@ discard block |
||
| 1203 | 1282 | $file_steps = $upcontext['table_count']; |
| 1204 | 1283 | |
| 1205 | 1284 | // What ones have we already done? |
| 1206 | - foreach ($table_names as $id => $table) |
|
| 1207 | - if ($id < $_GET['substep']) |
|
| 1285 | + foreach ($table_names as $id => $table) { |
|
| 1286 | + if ($id < $_GET['substep']) |
|
| 1208 | 1287 | $upcontext['previous_tables'][] = $table; |
| 1288 | + } |
|
| 1209 | 1289 | |
| 1210 | - if ($command_line) |
|
| 1211 | - echo 'Backing Up Tables.'; |
|
| 1290 | + if ($command_line) { |
|
| 1291 | + echo 'Backing Up Tables.'; |
|
| 1292 | + } |
|
| 1212 | 1293 | |
| 1213 | 1294 | // If we don't support javascript we backup here. |
| 1214 | 1295 | if (!$support_js || isset($_GET['xml'])) |
@@ -1227,8 +1308,9 @@ discard block |
||
| 1227 | 1308 | backupTable($table_names[$substep]); |
| 1228 | 1309 | |
| 1229 | 1310 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 1230 | - if (isset($_GET['xml'])) |
|
| 1231 | - return upgradeExit(); |
|
| 1311 | + if (isset($_GET['xml'])) { |
|
| 1312 | + return upgradeExit(); |
|
| 1313 | + } |
|
| 1232 | 1314 | } |
| 1233 | 1315 | |
| 1234 | 1316 | if ($command_line) |
@@ -1261,9 +1343,10 @@ discard block |
||
| 1261 | 1343 | |
| 1262 | 1344 | $smcFunc['db_backup_table']($table, 'backup_' . $table); |
| 1263 | 1345 | |
| 1264 | - if ($command_line) |
|
| 1265 | - echo ' done.'; |
|
| 1266 | -} |
|
| 1346 | + if ($command_line) { |
|
| 1347 | + echo ' done.'; |
|
| 1348 | + } |
|
| 1349 | + } |
|
| 1267 | 1350 | |
| 1268 | 1351 | // Step 2: Everything. |
| 1269 | 1352 | function DatabaseChanges() |
@@ -1272,8 +1355,9 @@ discard block |
||
| 1272 | 1355 | global $upcontext, $support_js, $db_type; |
| 1273 | 1356 | |
| 1274 | 1357 | // Have we just completed this? |
| 1275 | - if (!empty($_POST['database_done'])) |
|
| 1276 | - return true; |
|
| 1358 | + if (!empty($_POST['database_done'])) { |
|
| 1359 | + return true; |
|
| 1360 | + } |
|
| 1277 | 1361 | |
| 1278 | 1362 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'database_xml' : 'database_changes'; |
| 1279 | 1363 | $upcontext['page_title'] = 'Database Changes'; |
@@ -1288,15 +1372,16 @@ discard block |
||
| 1288 | 1372 | ); |
| 1289 | 1373 | |
| 1290 | 1374 | // How many files are there in total? |
| 1291 | - if (isset($_GET['filecount'])) |
|
| 1292 | - $upcontext['file_count'] = (int) $_GET['filecount']; |
|
| 1293 | - else |
|
| 1375 | + if (isset($_GET['filecount'])) { |
|
| 1376 | + $upcontext['file_count'] = (int) $_GET['filecount']; |
|
| 1377 | + } else |
|
| 1294 | 1378 | { |
| 1295 | 1379 | $upcontext['file_count'] = 0; |
| 1296 | 1380 | foreach ($files as $file) |
| 1297 | 1381 | { |
| 1298 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) |
|
| 1299 | - $upcontext['file_count']++; |
|
| 1382 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) { |
|
| 1383 | + $upcontext['file_count']++; |
|
| 1384 | + } |
|
| 1300 | 1385 | } |
| 1301 | 1386 | } |
| 1302 | 1387 | |
@@ -1306,9 +1391,9 @@ discard block |
||
| 1306 | 1391 | $upcontext['cur_file_num'] = 0; |
| 1307 | 1392 | foreach ($files as $file) |
| 1308 | 1393 | { |
| 1309 | - if ($did_not_do) |
|
| 1310 | - $did_not_do--; |
|
| 1311 | - else |
|
| 1394 | + if ($did_not_do) { |
|
| 1395 | + $did_not_do--; |
|
| 1396 | + } else |
|
| 1312 | 1397 | { |
| 1313 | 1398 | $upcontext['cur_file_num']++; |
| 1314 | 1399 | $upcontext['cur_file_name'] = $file[0]; |
@@ -1335,12 +1420,13 @@ discard block |
||
| 1335 | 1420 | // Flag to move on to the next. |
| 1336 | 1421 | $upcontext['completed_step'] = true; |
| 1337 | 1422 | // Did we complete the whole file? |
| 1338 | - if ($nextFile) |
|
| 1339 | - $upcontext['current_debug_item_num'] = -1; |
|
| 1423 | + if ($nextFile) { |
|
| 1424 | + $upcontext['current_debug_item_num'] = -1; |
|
| 1425 | + } |
|
| 1340 | 1426 | return upgradeExit(); |
| 1427 | + } elseif ($support_js) { |
|
| 1428 | + break; |
|
| 1341 | 1429 | } |
| 1342 | - elseif ($support_js) |
|
| 1343 | - break; |
|
| 1344 | 1430 | } |
| 1345 | 1431 | // Set the progress bar to be right as if we had - even if we hadn't... |
| 1346 | 1432 | $upcontext['step_progress'] = ($upcontext['cur_file_num'] / $upcontext['file_count']) * 100; |
@@ -1365,8 +1451,9 @@ discard block |
||
| 1365 | 1451 | global $command_line, $language, $upcontext, $sourcedir, $forum_version, $user_info, $maintenance, $smcFunc, $db_type; |
| 1366 | 1452 | |
| 1367 | 1453 | // Now it's nice to have some of the basic SMF source files. |
| 1368 | - if (!isset($_GET['ssi']) && !$command_line) |
|
| 1369 | - redirectLocation('&ssi=1'); |
|
| 1454 | + if (!isset($_GET['ssi']) && !$command_line) { |
|
| 1455 | + redirectLocation('&ssi=1'); |
|
| 1456 | + } |
|
| 1370 | 1457 | |
| 1371 | 1458 | $upcontext['sub_template'] = 'upgrade_complete'; |
| 1372 | 1459 | $upcontext['page_title'] = 'Upgrade Complete'; |
@@ -1382,14 +1469,16 @@ discard block |
||
| 1382 | 1469 | // Are we in maintenance mode? |
| 1383 | 1470 | if (isset($upcontext['user']['main'])) |
| 1384 | 1471 | { |
| 1385 | - if ($command_line) |
|
| 1386 | - echo ' * '; |
|
| 1472 | + if ($command_line) { |
|
| 1473 | + echo ' * '; |
|
| 1474 | + } |
|
| 1387 | 1475 | $upcontext['removed_maintenance'] = true; |
| 1388 | 1476 | $changes['maintenance'] = $upcontext['user']['main']; |
| 1389 | 1477 | } |
| 1390 | 1478 | // Otherwise if somehow we are in 2 let's go to 1. |
| 1391 | - elseif (!empty($maintenance) && $maintenance == 2) |
|
| 1392 | - $changes['maintenance'] = 1; |
|
| 1479 | + elseif (!empty($maintenance) && $maintenance == 2) { |
|
| 1480 | + $changes['maintenance'] = 1; |
|
| 1481 | + } |
|
| 1393 | 1482 | |
| 1394 | 1483 | // Wipe this out... |
| 1395 | 1484 | $upcontext['user'] = array(); |
@@ -1404,9 +1493,9 @@ discard block |
||
| 1404 | 1493 | $upcontext['can_delete_script'] = is_writable(dirname(__FILE__)) || is_writable(__FILE__); |
| 1405 | 1494 | |
| 1406 | 1495 | // Now is the perfect time to fetch the SM files. |
| 1407 | - if ($command_line) |
|
| 1408 | - cli_scheduled_fetchSMfiles(); |
|
| 1409 | - else |
|
| 1496 | + if ($command_line) { |
|
| 1497 | + cli_scheduled_fetchSMfiles(); |
|
| 1498 | + } else |
|
| 1410 | 1499 | { |
| 1411 | 1500 | require_once($sourcedir . '/ScheduledTasks.php'); |
| 1412 | 1501 | $forum_version = SMF_VERSION; // The variable is usually defined in index.php so lets just use the constant to do it for us. |
@@ -1414,8 +1503,9 @@ discard block |
||
| 1414 | 1503 | } |
| 1415 | 1504 | |
| 1416 | 1505 | // Log what we've done. |
| 1417 | - if (empty($user_info['id'])) |
|
| 1418 | - $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
| 1506 | + if (empty($user_info['id'])) { |
|
| 1507 | + $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
| 1508 | + } |
|
| 1419 | 1509 | |
| 1420 | 1510 | // Log the action manually, so CLI still works. |
| 1421 | 1511 | $smcFunc['db_insert']('', |
@@ -1434,8 +1524,9 @@ discard block |
||
| 1434 | 1524 | |
| 1435 | 1525 | // Save the current database version. |
| 1436 | 1526 | $server_version = $smcFunc['db_server_info'](); |
| 1437 | - if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) |
|
| 1438 | - updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
| 1527 | + if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) { |
|
| 1528 | + updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
| 1529 | + } |
|
| 1439 | 1530 | |
| 1440 | 1531 | if ($command_line) |
| 1441 | 1532 | { |
@@ -1447,8 +1538,9 @@ discard block |
||
| 1447 | 1538 | |
| 1448 | 1539 | // Make sure it says we're done. |
| 1449 | 1540 | $upcontext['overall_percent'] = 100; |
| 1450 | - if (isset($upcontext['step_progress'])) |
|
| 1451 | - unset($upcontext['step_progress']); |
|
| 1541 | + if (isset($upcontext['step_progress'])) { |
|
| 1542 | + unset($upcontext['step_progress']); |
|
| 1543 | + } |
|
| 1452 | 1544 | |
| 1453 | 1545 | $_GET['substep'] = 0; |
| 1454 | 1546 | return false; |
@@ -1459,8 +1551,9 @@ discard block |
||
| 1459 | 1551 | { |
| 1460 | 1552 | global $sourcedir, $language, $forum_version, $modSettings, $smcFunc; |
| 1461 | 1553 | |
| 1462 | - if (empty($modSettings['time_format'])) |
|
| 1463 | - $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
| 1554 | + if (empty($modSettings['time_format'])) { |
|
| 1555 | + $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
| 1556 | + } |
|
| 1464 | 1557 | |
| 1465 | 1558 | // What files do we want to get |
| 1466 | 1559 | $request = $smcFunc['db_query']('', ' |
@@ -1494,8 +1587,9 @@ discard block |
||
| 1494 | 1587 | $file_data = fetch_web_data($url); |
| 1495 | 1588 | |
| 1496 | 1589 | // If we got an error - give up - the site might be down. |
| 1497 | - if ($file_data === false) |
|
| 1498 | - return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
| 1590 | + if ($file_data === false) { |
|
| 1591 | + return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
| 1592 | + } |
|
| 1499 | 1593 | |
| 1500 | 1594 | // Save the file to the database. |
| 1501 | 1595 | $smcFunc['db_query']('substring', ' |
@@ -1537,8 +1631,9 @@ discard block |
||
| 1537 | 1631 | $themeData = array(); |
| 1538 | 1632 | foreach ($values as $variable => $value) |
| 1539 | 1633 | { |
| 1540 | - if (!isset($value) || $value === null) |
|
| 1541 | - $value = 0; |
|
| 1634 | + if (!isset($value) || $value === null) { |
|
| 1635 | + $value = 0; |
|
| 1636 | + } |
|
| 1542 | 1637 | |
| 1543 | 1638 | $themeData[] = array(0, 1, $variable, $value); |
| 1544 | 1639 | } |
@@ -1567,8 +1662,9 @@ discard block |
||
| 1567 | 1662 | |
| 1568 | 1663 | foreach ($values as $variable => $value) |
| 1569 | 1664 | { |
| 1570 | - if (empty($modSettings[$value[0]])) |
|
| 1571 | - continue; |
|
| 1665 | + if (empty($modSettings[$value[0]])) { |
|
| 1666 | + continue; |
|
| 1667 | + } |
|
| 1572 | 1668 | |
| 1573 | 1669 | $smcFunc['db_query']('', ' |
| 1574 | 1670 | INSERT IGNORE INTO {db_prefix}themes |
@@ -1654,19 +1750,21 @@ discard block |
||
| 1654 | 1750 | set_error_handler( |
| 1655 | 1751 | function ($errno, $errstr, $errfile, $errline) use ($support_js) |
| 1656 | 1752 | { |
| 1657 | - if ($support_js) |
|
| 1658 | - return true; |
|
| 1659 | - else |
|
| 1660 | - echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
| 1753 | + if ($support_js) { |
|
| 1754 | + return true; |
|
| 1755 | + } else { |
|
| 1756 | + echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
| 1757 | + } |
|
| 1661 | 1758 | } |
| 1662 | 1759 | ); |
| 1663 | 1760 | |
| 1664 | 1761 | // If we're on MySQL, set {db_collation}; this approach is used throughout upgrade_2-0_mysql.php to set new tables to utf8 |
| 1665 | 1762 | // Note it is expected to be in the format: ENGINE=MyISAM{$db_collation}; |
| 1666 | - if ($db_type == 'mysql') |
|
| 1667 | - $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
| 1668 | - else |
|
| 1669 | - $db_collation = ''; |
|
| 1763 | + if ($db_type == 'mysql') { |
|
| 1764 | + $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
| 1765 | + } else { |
|
| 1766 | + $db_collation = ''; |
|
| 1767 | + } |
|
| 1670 | 1768 | |
| 1671 | 1769 | $endl = $command_line ? "\n" : '<br>' . "\n"; |
| 1672 | 1770 | |
@@ -1678,8 +1776,9 @@ discard block |
||
| 1678 | 1776 | $last_step = ''; |
| 1679 | 1777 | |
| 1680 | 1778 | // Make sure all newly created tables will have the proper characters set; this approach is used throughout upgrade_2-1_mysql.php |
| 1681 | - if (isset($db_character_set) && $db_character_set === 'utf8') |
|
| 1682 | - $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
| 1779 | + if (isset($db_character_set) && $db_character_set === 'utf8') { |
|
| 1780 | + $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
| 1781 | + } |
|
| 1683 | 1782 | |
| 1684 | 1783 | // Count the total number of steps within this file - for progress. |
| 1685 | 1784 | $file_steps = substr_count(implode('', $lines), '---#'); |
@@ -1699,15 +1798,18 @@ discard block |
||
| 1699 | 1798 | $do_current = $substep >= $_GET['substep']; |
| 1700 | 1799 | |
| 1701 | 1800 | // Get rid of any comments in the beginning of the line... |
| 1702 | - if (substr(trim($line), 0, 2) === '/*') |
|
| 1703 | - $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
| 1801 | + if (substr(trim($line), 0, 2) === '/*') { |
|
| 1802 | + $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
| 1803 | + } |
|
| 1704 | 1804 | |
| 1705 | 1805 | // Always flush. Flush, flush, flush. Flush, flush, flush, flush! FLUSH! |
| 1706 | - if ($is_debug && !$support_js && $command_line) |
|
| 1707 | - flush(); |
|
| 1806 | + if ($is_debug && !$support_js && $command_line) { |
|
| 1807 | + flush(); |
|
| 1808 | + } |
|
| 1708 | 1809 | |
| 1709 | - if (trim($line) === '') |
|
| 1710 | - continue; |
|
| 1810 | + if (trim($line) === '') { |
|
| 1811 | + continue; |
|
| 1812 | + } |
|
| 1711 | 1813 | |
| 1712 | 1814 | if (trim(substr($line, 0, 3)) === '---') |
| 1713 | 1815 | { |
@@ -1717,8 +1819,9 @@ discard block |
||
| 1717 | 1819 | if (trim($current_data) != '' && $type !== '}') |
| 1718 | 1820 | { |
| 1719 | 1821 | $upcontext['error_message'] = 'Error in upgrade script - line ' . $line_number . '!' . $endl; |
| 1720 | - if ($command_line) |
|
| 1721 | - echo $upcontext['error_message']; |
|
| 1822 | + if ($command_line) { |
|
| 1823 | + echo $upcontext['error_message']; |
|
| 1824 | + } |
|
| 1722 | 1825 | } |
| 1723 | 1826 | |
| 1724 | 1827 | if ($type == ' ') |
@@ -1736,17 +1839,18 @@ discard block |
||
| 1736 | 1839 | if ($do_current) |
| 1737 | 1840 | { |
| 1738 | 1841 | $upcontext['actioned_items'][] = $last_step; |
| 1739 | - if ($command_line) |
|
| 1740 | - echo ' * '; |
|
| 1842 | + if ($command_line) { |
|
| 1843 | + echo ' * '; |
|
| 1844 | + } |
|
| 1741 | 1845 | } |
| 1742 | - } |
|
| 1743 | - elseif ($type == '#') |
|
| 1846 | + } elseif ($type == '#') |
|
| 1744 | 1847 | { |
| 1745 | 1848 | $upcontext['step_progress'] += (100 / $upcontext['file_count']) / $file_steps; |
| 1746 | 1849 | |
| 1747 | 1850 | $upcontext['current_debug_item_num']++; |
| 1748 | - if (trim($line) != '---#') |
|
| 1749 | - $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1851 | + if (trim($line) != '---#') { |
|
| 1852 | + $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1853 | + } |
|
| 1750 | 1854 | |
| 1751 | 1855 | // Have we already done something? |
| 1752 | 1856 | if (isset($_GET['xml']) && $done_something) |
@@ -1757,34 +1861,36 @@ discard block |
||
| 1757 | 1861 | |
| 1758 | 1862 | if ($do_current) |
| 1759 | 1863 | { |
| 1760 | - if (trim($line) == '---#' && $command_line) |
|
| 1761 | - echo ' done.', $endl; |
|
| 1762 | - elseif ($command_line) |
|
| 1763 | - echo ' +++ ', rtrim(substr($line, 4)); |
|
| 1764 | - elseif (trim($line) != '---#') |
|
| 1864 | + if (trim($line) == '---#' && $command_line) { |
|
| 1865 | + echo ' done.', $endl; |
|
| 1866 | + } elseif ($command_line) { |
|
| 1867 | + echo ' +++ ', rtrim(substr($line, 4)); |
|
| 1868 | + } elseif (trim($line) != '---#') |
|
| 1765 | 1869 | { |
| 1766 | - if ($is_debug) |
|
| 1767 | - $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1870 | + if ($is_debug) { |
|
| 1871 | + $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1872 | + } |
|
| 1768 | 1873 | } |
| 1769 | 1874 | } |
| 1770 | 1875 | |
| 1771 | 1876 | if ($substep < $_GET['substep'] && $substep + 1 >= $_GET['substep']) |
| 1772 | 1877 | { |
| 1773 | - if ($command_line) |
|
| 1774 | - echo ' * '; |
|
| 1775 | - else |
|
| 1776 | - $upcontext['actioned_items'][] = $last_step; |
|
| 1878 | + if ($command_line) { |
|
| 1879 | + echo ' * '; |
|
| 1880 | + } else { |
|
| 1881 | + $upcontext['actioned_items'][] = $last_step; |
|
| 1882 | + } |
|
| 1777 | 1883 | } |
| 1778 | 1884 | |
| 1779 | 1885 | // Small step - only if we're actually doing stuff. |
| 1780 | - if ($do_current) |
|
| 1781 | - nextSubstep(++$substep); |
|
| 1782 | - else |
|
| 1783 | - $substep++; |
|
| 1784 | - } |
|
| 1785 | - elseif ($type == '{') |
|
| 1786 | - $current_type = 'code'; |
|
| 1787 | - elseif ($type == '}') |
|
| 1886 | + if ($do_current) { |
|
| 1887 | + nextSubstep(++$substep); |
|
| 1888 | + } else { |
|
| 1889 | + $substep++; |
|
| 1890 | + } |
|
| 1891 | + } elseif ($type == '{') { |
|
| 1892 | + $current_type = 'code'; |
|
| 1893 | + } elseif ($type == '}') |
|
| 1788 | 1894 | { |
| 1789 | 1895 | $current_type = 'sql'; |
| 1790 | 1896 | |
@@ -1797,8 +1903,9 @@ discard block |
||
| 1797 | 1903 | if (eval('global $db_prefix, $modSettings, $smcFunc; ' . $current_data) === false) |
| 1798 | 1904 | { |
| 1799 | 1905 | $upcontext['error_message'] = 'Error in upgrade script ' . basename($filename) . ' on line ' . $line_number . '!' . $endl; |
| 1800 | - if ($command_line) |
|
| 1801 | - echo $upcontext['error_message']; |
|
| 1906 | + if ($command_line) { |
|
| 1907 | + echo $upcontext['error_message']; |
|
| 1908 | + } |
|
| 1802 | 1909 | } |
| 1803 | 1910 | |
| 1804 | 1911 | // Done with code! |
@@ -1878,8 +1985,9 @@ discard block |
||
| 1878 | 1985 | $db_unbuffered = false; |
| 1879 | 1986 | |
| 1880 | 1987 | // Failure?! |
| 1881 | - if ($result !== false) |
|
| 1882 | - return $result; |
|
| 1988 | + if ($result !== false) { |
|
| 1989 | + return $result; |
|
| 1990 | + } |
|
| 1883 | 1991 | |
| 1884 | 1992 | $db_error_message = $smcFunc['db_error']($db_connection); |
| 1885 | 1993 | // If MySQL we do something more clever. |
@@ -1907,54 +2015,61 @@ discard block |
||
| 1907 | 2015 | { |
| 1908 | 2016 | mysqli_query($db_connection, 'REPAIR TABLE `' . $match[1] . '`'); |
| 1909 | 2017 | $result = mysqli_query($db_connection, $string); |
| 1910 | - if ($result !== false) |
|
| 1911 | - return $result; |
|
| 2018 | + if ($result !== false) { |
|
| 2019 | + return $result; |
|
| 2020 | + } |
|
| 1912 | 2021 | } |
| 1913 | - } |
|
| 1914 | - elseif ($mysqli_errno == 2013) |
|
| 2022 | + } elseif ($mysqli_errno == 2013) |
|
| 1915 | 2023 | { |
| 1916 | 2024 | $db_connection = mysqli_connect($db_server, $db_user, $db_passwd); |
| 1917 | 2025 | mysqli_select_db($db_connection, $db_name); |
| 1918 | 2026 | if ($db_connection) |
| 1919 | 2027 | { |
| 1920 | 2028 | $result = mysqli_query($db_connection, $string); |
| 1921 | - if ($result !== false) |
|
| 1922 | - return $result; |
|
| 2029 | + if ($result !== false) { |
|
| 2030 | + return $result; |
|
| 2031 | + } |
|
| 1923 | 2032 | } |
| 1924 | 2033 | } |
| 1925 | 2034 | // Duplicate column name... should be okay ;). |
| 1926 | - elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) |
|
| 1927 | - return false; |
|
| 2035 | + elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) { |
|
| 2036 | + return false; |
|
| 2037 | + } |
|
| 1928 | 2038 | // Duplicate insert... make sure it's the proper type of query ;). |
| 1929 | - elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) |
|
| 1930 | - return false; |
|
| 2039 | + elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) { |
|
| 2040 | + return false; |
|
| 2041 | + } |
|
| 1931 | 2042 | // Creating an index on a non-existent column. |
| 1932 | - elseif ($mysqli_errno == 1072) |
|
| 1933 | - return false; |
|
| 1934 | - elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') |
|
| 1935 | - return false; |
|
| 2043 | + elseif ($mysqli_errno == 1072) { |
|
| 2044 | + return false; |
|
| 2045 | + } elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') { |
|
| 2046 | + return false; |
|
| 2047 | + } |
|
| 1936 | 2048 | } |
| 1937 | 2049 | // If a table already exists don't go potty. |
| 1938 | 2050 | else |
| 1939 | 2051 | { |
| 1940 | 2052 | if (in_array(substr(trim($string), 0, 8), array('CREATE T', 'CREATE S', 'DROP TABL', 'ALTER TA', 'CREATE I', 'CREATE U'))) |
| 1941 | 2053 | { |
| 1942 | - if (strpos($db_error_message, 'exist') !== false) |
|
| 1943 | - return true; |
|
| 1944 | - } |
|
| 1945 | - elseif (strpos(trim($string), 'INSERT ') !== false) |
|
| 2054 | + if (strpos($db_error_message, 'exist') !== false) { |
|
| 2055 | + return true; |
|
| 2056 | + } |
|
| 2057 | + } elseif (strpos(trim($string), 'INSERT ') !== false) |
|
| 1946 | 2058 | { |
| 1947 | - if (strpos($db_error_message, 'duplicate') !== false) |
|
| 1948 | - return true; |
|
| 2059 | + if (strpos($db_error_message, 'duplicate') !== false) { |
|
| 2060 | + return true; |
|
| 2061 | + } |
|
| 1949 | 2062 | } |
| 1950 | 2063 | } |
| 1951 | 2064 | |
| 1952 | 2065 | // Get the query string so we pass everything. |
| 1953 | 2066 | $query_string = ''; |
| 1954 | - foreach ($_GET as $k => $v) |
|
| 1955 | - $query_string .= ';' . $k . '=' . $v; |
|
| 1956 | - if (strlen($query_string) != 0) |
|
| 1957 | - $query_string = '?' . substr($query_string, 1); |
|
| 2067 | + foreach ($_GET as $k => $v) { |
|
| 2068 | + $query_string .= ';' . $k . '=' . $v; |
|
| 2069 | + } |
|
| 2070 | + if (strlen($query_string) != 0) { |
|
| 2071 | + $query_string = '?' . substr($query_string, 1); |
|
| 2072 | + } |
|
| 1958 | 2073 | |
| 1959 | 2074 | if ($command_line) |
| 1960 | 2075 | { |
@@ -2009,16 +2124,18 @@ discard block |
||
| 2009 | 2124 | { |
| 2010 | 2125 | $found |= 1; |
| 2011 | 2126 | // Do some checks on the data if we have it set. |
| 2012 | - if (isset($change['col_type'])) |
|
| 2013 | - $found &= $change['col_type'] === $column['type']; |
|
| 2014 | - if (isset($change['null_allowed'])) |
|
| 2015 | - $found &= $column['null'] == $change['null_allowed']; |
|
| 2016 | - if (isset($change['default'])) |
|
| 2017 | - $found &= $change['default'] === $column['default']; |
|
| 2127 | + if (isset($change['col_type'])) { |
|
| 2128 | + $found &= $change['col_type'] === $column['type']; |
|
| 2129 | + } |
|
| 2130 | + if (isset($change['null_allowed'])) { |
|
| 2131 | + $found &= $column['null'] == $change['null_allowed']; |
|
| 2132 | + } |
|
| 2133 | + if (isset($change['default'])) { |
|
| 2134 | + $found &= $change['default'] === $column['default']; |
|
| 2135 | + } |
|
| 2018 | 2136 | } |
| 2019 | 2137 | } |
| 2020 | - } |
|
| 2021 | - elseif ($change['type'] === 'index') |
|
| 2138 | + } elseif ($change['type'] === 'index') |
|
| 2022 | 2139 | { |
| 2023 | 2140 | $request = upgrade_query(' |
| 2024 | 2141 | SHOW INDEX |
@@ -2027,9 +2144,10 @@ discard block |
||
| 2027 | 2144 | { |
| 2028 | 2145 | $cur_index = array(); |
| 2029 | 2146 | |
| 2030 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2031 | - if ($row['Key_name'] === $change['name']) |
|
| 2147 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2148 | + if ($row['Key_name'] === $change['name']) |
|
| 2032 | 2149 | $cur_index[(int) $row['Seq_in_index']] = $row['Column_name']; |
| 2150 | + } |
|
| 2033 | 2151 | |
| 2034 | 2152 | ksort($cur_index, SORT_NUMERIC); |
| 2035 | 2153 | $found = array_values($cur_index) === $change['target_columns']; |
@@ -2039,14 +2157,17 @@ discard block |
||
| 2039 | 2157 | } |
| 2040 | 2158 | |
| 2041 | 2159 | // If we're trying to add and it's added, we're done. |
| 2042 | - if ($found && in_array($change['method'], array('add', 'change'))) |
|
| 2043 | - return true; |
|
| 2160 | + if ($found && in_array($change['method'], array('add', 'change'))) { |
|
| 2161 | + return true; |
|
| 2162 | + } |
|
| 2044 | 2163 | // Otherwise if we're removing and it wasn't found we're also done. |
| 2045 | - elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) |
|
| 2046 | - return true; |
|
| 2164 | + elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) { |
|
| 2165 | + return true; |
|
| 2166 | + } |
|
| 2047 | 2167 | // Otherwise is it just a test? |
| 2048 | - elseif ($is_test) |
|
| 2049 | - return false; |
|
| 2168 | + elseif ($is_test) { |
|
| 2169 | + return false; |
|
| 2170 | + } |
|
| 2050 | 2171 | |
| 2051 | 2172 | // Not found it yet? Bummer! How about we see if we're currently doing it? |
| 2052 | 2173 | $running = false; |
@@ -2057,8 +2178,9 @@ discard block |
||
| 2057 | 2178 | SHOW FULL PROCESSLIST'); |
| 2058 | 2179 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 2059 | 2180 | { |
| 2060 | - if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) |
|
| 2061 | - $found = true; |
|
| 2181 | + if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) { |
|
| 2182 | + $found = true; |
|
| 2183 | + } |
|
| 2062 | 2184 | } |
| 2063 | 2185 | |
| 2064 | 2186 | // Can't find it? Then we need to run it fools! |
@@ -2070,8 +2192,9 @@ discard block |
||
| 2070 | 2192 | ALTER TABLE ' . $db_prefix . $change['table'] . ' |
| 2071 | 2193 | ' . $change['text'], true) !== false; |
| 2072 | 2194 | |
| 2073 | - if (!$success) |
|
| 2074 | - return false; |
|
| 2195 | + if (!$success) { |
|
| 2196 | + return false; |
|
| 2197 | + } |
|
| 2075 | 2198 | |
| 2076 | 2199 | // Return |
| 2077 | 2200 | $running = true; |
@@ -2113,8 +2236,9 @@ discard block |
||
| 2113 | 2236 | 'db_error_skip' => true, |
| 2114 | 2237 | ) |
| 2115 | 2238 | ); |
| 2116 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 2117 | - die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
| 2239 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 2240 | + die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
| 2241 | + } |
|
| 2118 | 2242 | $table_row = $smcFunc['db_fetch_assoc']($request); |
| 2119 | 2243 | $smcFunc['db_free_result']($request); |
| 2120 | 2244 | |
@@ -2136,18 +2260,19 @@ discard block |
||
| 2136 | 2260 | ) |
| 2137 | 2261 | ); |
| 2138 | 2262 | // No results? Just forget it all together. |
| 2139 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 2140 | - unset($table_row['Collation']); |
|
| 2141 | - else |
|
| 2142 | - $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
| 2263 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 2264 | + unset($table_row['Collation']); |
|
| 2265 | + } else { |
|
| 2266 | + $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
| 2267 | + } |
|
| 2143 | 2268 | $smcFunc['db_free_result']($request); |
| 2144 | 2269 | } |
| 2145 | 2270 | |
| 2146 | 2271 | if ($column_fix) |
| 2147 | 2272 | { |
| 2148 | 2273 | // Make sure there are no NULL's left. |
| 2149 | - if ($null_fix) |
|
| 2150 | - $smcFunc['db_query']('', ' |
|
| 2274 | + if ($null_fix) { |
|
| 2275 | + $smcFunc['db_query']('', ' |
|
| 2151 | 2276 | UPDATE {db_prefix}' . $change['table'] . ' |
| 2152 | 2277 | SET ' . $change['column'] . ' = {string:default} |
| 2153 | 2278 | WHERE ' . $change['column'] . ' IS NULL', |
@@ -2156,6 +2281,7 @@ discard block |
||
| 2156 | 2281 | 'db_error_skip' => true, |
| 2157 | 2282 | ) |
| 2158 | 2283 | ); |
| 2284 | + } |
|
| 2159 | 2285 | |
| 2160 | 2286 | // Do the actual alteration. |
| 2161 | 2287 | $smcFunc['db_query']('', ' |
@@ -2184,8 +2310,9 @@ discard block |
||
| 2184 | 2310 | } |
| 2185 | 2311 | |
| 2186 | 2312 | // Not a column we need to check on? |
| 2187 | - if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) |
|
| 2188 | - return; |
|
| 2313 | + if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) { |
|
| 2314 | + return; |
|
| 2315 | + } |
|
| 2189 | 2316 | |
| 2190 | 2317 | // Break it up you (six|seven). |
| 2191 | 2318 | $temp = explode(' ', str_replace('NOT NULL', 'NOT_NULL', $change['text'])); |
@@ -2204,13 +2331,13 @@ discard block |
||
| 2204 | 2331 | 'new_name' => $temp[2], |
| 2205 | 2332 | )); |
| 2206 | 2333 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
| 2207 | - if ($smcFunc['db_num_rows'] != 1) |
|
| 2208 | - return; |
|
| 2334 | + if ($smcFunc['db_num_rows'] != 1) { |
|
| 2335 | + return; |
|
| 2336 | + } |
|
| 2209 | 2337 | |
| 2210 | 2338 | list (, $current_type) = $smcFunc['db_fetch_assoc']($request); |
| 2211 | 2339 | $smcFunc['db_free_result']($request); |
| 2212 | - } |
|
| 2213 | - else |
|
| 2340 | + } else |
|
| 2214 | 2341 | { |
| 2215 | 2342 | // Do this the old fashion, sure method way. |
| 2216 | 2343 | $request = $smcFunc['db_query']('', ' |
@@ -2221,21 +2348,24 @@ discard block |
||
| 2221 | 2348 | )); |
| 2222 | 2349 | // Mayday! |
| 2223 | 2350 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
| 2224 | - if ($smcFunc['db_num_rows'] == 0) |
|
| 2225 | - return; |
|
| 2351 | + if ($smcFunc['db_num_rows'] == 0) { |
|
| 2352 | + return; |
|
| 2353 | + } |
|
| 2226 | 2354 | |
| 2227 | 2355 | // Oh where, oh where has my little field gone. Oh where can it be... |
| 2228 | - while ($row = $smcFunc['db_query']($request)) |
|
| 2229 | - if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
| 2356 | + while ($row = $smcFunc['db_query']($request)) { |
|
| 2357 | + if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
| 2230 | 2358 | { |
| 2231 | 2359 | $current_type = $row['Type']; |
| 2360 | + } |
|
| 2232 | 2361 | break; |
| 2233 | 2362 | } |
| 2234 | 2363 | } |
| 2235 | 2364 | |
| 2236 | 2365 | // If this doesn't match, the column may of been altered for a reason. |
| 2237 | - if (trim($current_type) != trim($temp[3])) |
|
| 2238 | - $temp[3] = $current_type; |
|
| 2366 | + if (trim($current_type) != trim($temp[3])) { |
|
| 2367 | + $temp[3] = $current_type; |
|
| 2368 | + } |
|
| 2239 | 2369 | |
| 2240 | 2370 | // Piece this back together. |
| 2241 | 2371 | $change['text'] = str_replace('NOT_NULL', 'NOT NULL', implode(' ', $temp)); |
@@ -2247,8 +2377,9 @@ discard block |
||
| 2247 | 2377 | global $start_time, $timeLimitThreshold, $command_line, $custom_warning; |
| 2248 | 2378 | global $step_progress, $is_debug, $upcontext; |
| 2249 | 2379 | |
| 2250 | - if ($_GET['substep'] < $substep) |
|
| 2251 | - $_GET['substep'] = $substep; |
|
| 2380 | + if ($_GET['substep'] < $substep) { |
|
| 2381 | + $_GET['substep'] = $substep; |
|
| 2382 | + } |
|
| 2252 | 2383 | |
| 2253 | 2384 | if ($command_line) |
| 2254 | 2385 | { |
@@ -2261,29 +2392,33 @@ discard block |
||
| 2261 | 2392 | } |
| 2262 | 2393 | |
| 2263 | 2394 | @set_time_limit(300); |
| 2264 | - if (function_exists('apache_reset_timeout')) |
|
| 2265 | - @apache_reset_timeout(); |
|
| 2395 | + if (function_exists('apache_reset_timeout')) { |
|
| 2396 | + @apache_reset_timeout(); |
|
| 2397 | + } |
|
| 2266 | 2398 | |
| 2267 | - if (time() - $start_time <= $timeLimitThreshold) |
|
| 2268 | - return; |
|
| 2399 | + if (time() - $start_time <= $timeLimitThreshold) { |
|
| 2400 | + return; |
|
| 2401 | + } |
|
| 2269 | 2402 | |
| 2270 | 2403 | // Do we have some custom step progress stuff? |
| 2271 | 2404 | if (!empty($step_progress)) |
| 2272 | 2405 | { |
| 2273 | 2406 | $upcontext['substep_progress'] = 0; |
| 2274 | 2407 | $upcontext['substep_progress_name'] = $step_progress['name']; |
| 2275 | - if ($step_progress['current'] > $step_progress['total']) |
|
| 2276 | - $upcontext['substep_progress'] = 99.9; |
|
| 2277 | - else |
|
| 2278 | - $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
| 2408 | + if ($step_progress['current'] > $step_progress['total']) { |
|
| 2409 | + $upcontext['substep_progress'] = 99.9; |
|
| 2410 | + } else { |
|
| 2411 | + $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
| 2412 | + } |
|
| 2279 | 2413 | |
| 2280 | 2414 | // Make it nicely rounded. |
| 2281 | 2415 | $upcontext['substep_progress'] = round($upcontext['substep_progress'], 1); |
| 2282 | 2416 | } |
| 2283 | 2417 | |
| 2284 | 2418 | // If this is XML we just exit right away! |
| 2285 | - if (isset($_GET['xml'])) |
|
| 2286 | - return upgradeExit(); |
|
| 2419 | + if (isset($_GET['xml'])) { |
|
| 2420 | + return upgradeExit(); |
|
| 2421 | + } |
|
| 2287 | 2422 | |
| 2288 | 2423 | // We're going to pause after this! |
| 2289 | 2424 | $upcontext['pause'] = true; |
@@ -2291,13 +2426,15 @@ discard block |
||
| 2291 | 2426 | $upcontext['query_string'] = ''; |
| 2292 | 2427 | foreach ($_GET as $k => $v) |
| 2293 | 2428 | { |
| 2294 | - if ($k != 'data' && $k != 'substep' && $k != 'step') |
|
| 2295 | - $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
| 2429 | + if ($k != 'data' && $k != 'substep' && $k != 'step') { |
|
| 2430 | + $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
| 2431 | + } |
|
| 2296 | 2432 | } |
| 2297 | 2433 | |
| 2298 | 2434 | // Custom warning? |
| 2299 | - if (!empty($custom_warning)) |
|
| 2300 | - $upcontext['custom_warning'] = $custom_warning; |
|
| 2435 | + if (!empty($custom_warning)) { |
|
| 2436 | + $upcontext['custom_warning'] = $custom_warning; |
|
| 2437 | + } |
|
| 2301 | 2438 | |
| 2302 | 2439 | upgradeExit(); |
| 2303 | 2440 | } |
@@ -2312,25 +2449,26 @@ discard block |
||
| 2312 | 2449 | ob_implicit_flush(true); |
| 2313 | 2450 | @set_time_limit(600); |
| 2314 | 2451 | |
| 2315 | - if (!isset($_SERVER['argv'])) |
|
| 2316 | - $_SERVER['argv'] = array(); |
|
| 2452 | + if (!isset($_SERVER['argv'])) { |
|
| 2453 | + $_SERVER['argv'] = array(); |
|
| 2454 | + } |
|
| 2317 | 2455 | $_GET['maint'] = 1; |
| 2318 | 2456 | |
| 2319 | 2457 | foreach ($_SERVER['argv'] as $i => $arg) |
| 2320 | 2458 | { |
| 2321 | - if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) |
|
| 2322 | - $_GET['lang'] = $match[1]; |
|
| 2323 | - elseif (preg_match('~^--path=(.+)$~', $arg) != 0) |
|
| 2324 | - continue; |
|
| 2325 | - elseif ($arg == '--no-maintenance') |
|
| 2326 | - $_GET['maint'] = 0; |
|
| 2327 | - elseif ($arg == '--debug') |
|
| 2328 | - $is_debug = true; |
|
| 2329 | - elseif ($arg == '--backup') |
|
| 2330 | - $_POST['backup'] = 1; |
|
| 2331 | - elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) |
|
| 2332 | - $_GET['conv'] = 1; |
|
| 2333 | - elseif ($i != 0) |
|
| 2459 | + if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) { |
|
| 2460 | + $_GET['lang'] = $match[1]; |
|
| 2461 | + } elseif (preg_match('~^--path=(.+)$~', $arg) != 0) { |
|
| 2462 | + continue; |
|
| 2463 | + } elseif ($arg == '--no-maintenance') { |
|
| 2464 | + $_GET['maint'] = 0; |
|
| 2465 | + } elseif ($arg == '--debug') { |
|
| 2466 | + $is_debug = true; |
|
| 2467 | + } elseif ($arg == '--backup') { |
|
| 2468 | + $_POST['backup'] = 1; |
|
| 2469 | + } elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) { |
|
| 2470 | + $_GET['conv'] = 1; |
|
| 2471 | + } elseif ($i != 0) |
|
| 2334 | 2472 | { |
| 2335 | 2473 | echo 'SMF Command-line Upgrader |
| 2336 | 2474 | Usage: /path/to/php -f ' . basename(__FILE__) . ' -- [OPTION]... |
@@ -2344,10 +2482,12 @@ discard block |
||
| 2344 | 2482 | } |
| 2345 | 2483 | } |
| 2346 | 2484 | |
| 2347 | - if (!php_version_check()) |
|
| 2348 | - print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
| 2349 | - if (!db_version_check()) |
|
| 2350 | - print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
| 2485 | + if (!php_version_check()) { |
|
| 2486 | + print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
| 2487 | + } |
|
| 2488 | + if (!db_version_check()) { |
|
| 2489 | + print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
| 2490 | + } |
|
| 2351 | 2491 | |
| 2352 | 2492 | // Do some checks to make sure they have proper privileges |
| 2353 | 2493 | db_extend('packages'); |
@@ -2362,39 +2502,45 @@ discard block |
||
| 2362 | 2502 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
| 2363 | 2503 | |
| 2364 | 2504 | // Sorry... we need CREATE, ALTER and DROP |
| 2365 | - if (!$create || !$alter || !$drop) |
|
| 2366 | - 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); |
|
| 2505 | + if (!$create || !$alter || !$drop) { |
|
| 2506 | + 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); |
|
| 2507 | + } |
|
| 2367 | 2508 | |
| 2368 | 2509 | $check = @file_exists($modSettings['theme_dir'] . '/index.template.php') |
| 2369 | 2510 | && @file_exists($sourcedir . '/QueryString.php') |
| 2370 | 2511 | && @file_exists($sourcedir . '/ManageBoards.php'); |
| 2371 | - if (!$check && !isset($modSettings['smfVersion'])) |
|
| 2372 | - print_error('Error: Some files are missing or out-of-date.', true); |
|
| 2512 | + if (!$check && !isset($modSettings['smfVersion'])) { |
|
| 2513 | + print_error('Error: Some files are missing or out-of-date.', true); |
|
| 2514 | + } |
|
| 2373 | 2515 | |
| 2374 | 2516 | // Do a quick version spot check. |
| 2375 | 2517 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
| 2376 | 2518 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
| 2377 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
| 2378 | - print_error('Error: Some files have not yet been updated properly.'); |
|
| 2519 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
| 2520 | + print_error('Error: Some files have not yet been updated properly.'); |
|
| 2521 | + } |
|
| 2379 | 2522 | |
| 2380 | 2523 | // Make sure Settings.php is writable. |
| 2381 | 2524 | quickFileWritable($boarddir . '/Settings.php'); |
| 2382 | - if (!is_writable($boarddir . '/Settings.php')) |
|
| 2383 | - print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
| 2525 | + if (!is_writable($boarddir . '/Settings.php')) { |
|
| 2526 | + print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
| 2527 | + } |
|
| 2384 | 2528 | |
| 2385 | 2529 | // Make sure Settings_bak.php is writable. |
| 2386 | 2530 | quickFileWritable($boarddir . '/Settings_bak.php'); |
| 2387 | - if (!is_writable($boarddir . '/Settings_bak.php')) |
|
| 2388 | - print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
| 2531 | + if (!is_writable($boarddir . '/Settings_bak.php')) { |
|
| 2532 | + print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
| 2533 | + } |
|
| 2389 | 2534 | |
| 2390 | 2535 | // Make sure db_last_error.php is writable. |
| 2391 | 2536 | quickFileWritable($boarddir . '/db_last_error.php'); |
| 2392 | - if (!is_writable($boarddir . '/db_last_error.php')) |
|
| 2393 | - print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
| 2537 | + if (!is_writable($boarddir . '/db_last_error.php')) { |
|
| 2538 | + print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
| 2539 | + } |
|
| 2394 | 2540 | |
| 2395 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
| 2396 | - print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
| 2397 | - elseif (isset($modSettings['agreement'])) |
|
| 2541 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
| 2542 | + print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
| 2543 | + } elseif (isset($modSettings['agreement'])) |
|
| 2398 | 2544 | { |
| 2399 | 2545 | $fp = fopen($boarddir . '/agreement.txt', 'w'); |
| 2400 | 2546 | fwrite($fp, $modSettings['agreement']); |
@@ -2404,31 +2550,36 @@ discard block |
||
| 2404 | 2550 | // Make sure Themes is writable. |
| 2405 | 2551 | quickFileWritable($modSettings['theme_dir']); |
| 2406 | 2552 | |
| 2407 | - if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) |
|
| 2408 | - print_error('Error: Unable to obtain write access to "Themes".'); |
|
| 2553 | + if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) { |
|
| 2554 | + print_error('Error: Unable to obtain write access to "Themes".'); |
|
| 2555 | + } |
|
| 2409 | 2556 | |
| 2410 | 2557 | // Make sure cache directory exists and is writable! |
| 2411 | 2558 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
| 2412 | - if (!file_exists($cachedir_temp)) |
|
| 2413 | - @mkdir($cachedir_temp); |
|
| 2559 | + if (!file_exists($cachedir_temp)) { |
|
| 2560 | + @mkdir($cachedir_temp); |
|
| 2561 | + } |
|
| 2414 | 2562 | |
| 2415 | 2563 | // Make sure the cache temp dir is writable. |
| 2416 | 2564 | quickFileWritable($cachedir_temp); |
| 2417 | 2565 | |
| 2418 | - if (!is_writable($cachedir_temp)) |
|
| 2419 | - print_error('Error: Unable to obtain write access to "cache".', true); |
|
| 2566 | + if (!is_writable($cachedir_temp)) { |
|
| 2567 | + print_error('Error: Unable to obtain write access to "cache".', true); |
|
| 2568 | + } |
|
| 2420 | 2569 | |
| 2421 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
| 2422 | - print_error('Error: Unable to find language files!', true); |
|
| 2423 | - else |
|
| 2570 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
| 2571 | + print_error('Error: Unable to find language files!', true); |
|
| 2572 | + } else |
|
| 2424 | 2573 | { |
| 2425 | 2574 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
| 2426 | 2575 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 2427 | 2576 | |
| 2428 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 2429 | - print_error('Error: Language files out of date.', true); |
|
| 2430 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 2431 | - print_error('Error: Install language is missing for selected language.', true); |
|
| 2577 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 2578 | + print_error('Error: Language files out of date.', true); |
|
| 2579 | + } |
|
| 2580 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 2581 | + print_error('Error: Install language is missing for selected language.', true); |
|
| 2582 | + } |
|
| 2432 | 2583 | |
| 2433 | 2584 | // Otherwise include it! |
| 2434 | 2585 | require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
@@ -2447,8 +2598,9 @@ discard block |
||
| 2447 | 2598 | global $upcontext, $db_character_set, $sourcedir, $smcFunc, $modSettings, $language, $db_prefix, $db_type, $command_line, $support_js; |
| 2448 | 2599 | |
| 2449 | 2600 | // Done it already? |
| 2450 | - if (!empty($_POST['utf8_done'])) |
|
| 2451 | - return true; |
|
| 2601 | + if (!empty($_POST['utf8_done'])) { |
|
| 2602 | + return true; |
|
| 2603 | + } |
|
| 2452 | 2604 | |
| 2453 | 2605 | // First make sure they aren't already on UTF-8 before we go anywhere... |
| 2454 | 2606 | if ($db_type == 'postgresql' || ($db_character_set === 'utf8' && !empty($modSettings['global_character_set']) && $modSettings['global_character_set'] === 'UTF-8')) |
@@ -2461,8 +2613,7 @@ discard block |
||
| 2461 | 2613 | ); |
| 2462 | 2614 | |
| 2463 | 2615 | return true; |
| 2464 | - } |
|
| 2465 | - else |
|
| 2616 | + } else |
|
| 2466 | 2617 | { |
| 2467 | 2618 | $upcontext['page_title'] = 'Converting to UTF8'; |
| 2468 | 2619 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'convert_xml' : 'convert_utf8'; |
@@ -2506,8 +2657,9 @@ discard block |
||
| 2506 | 2657 | ) |
| 2507 | 2658 | ); |
| 2508 | 2659 | $db_charsets = array(); |
| 2509 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2510 | - $db_charsets[] = $row['Charset']; |
|
| 2660 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2661 | + $db_charsets[] = $row['Charset']; |
|
| 2662 | + } |
|
| 2511 | 2663 | |
| 2512 | 2664 | $smcFunc['db_free_result']($request); |
| 2513 | 2665 | |
@@ -2543,13 +2695,15 @@ discard block |
||
| 2543 | 2695 | // If there's a fulltext index, we need to drop it first... |
| 2544 | 2696 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
| 2545 | 2697 | { |
| 2546 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2547 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 2698 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2699 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 2548 | 2700 | $upcontext['fulltext_index'][] = $row['Key_name']; |
| 2701 | + } |
|
| 2549 | 2702 | $smcFunc['db_free_result']($request); |
| 2550 | 2703 | |
| 2551 | - if (isset($upcontext['fulltext_index'])) |
|
| 2552 | - $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
| 2704 | + if (isset($upcontext['fulltext_index'])) { |
|
| 2705 | + $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
| 2706 | + } |
|
| 2553 | 2707 | } |
| 2554 | 2708 | |
| 2555 | 2709 | // Drop it and make a note... |
@@ -2739,8 +2893,9 @@ discard block |
||
| 2739 | 2893 | $replace = '%field%'; |
| 2740 | 2894 | |
| 2741 | 2895 | // Build a huge REPLACE statement... |
| 2742 | - foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) |
|
| 2743 | - $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
| 2896 | + foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) { |
|
| 2897 | + $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
| 2898 | + } |
|
| 2744 | 2899 | } |
| 2745 | 2900 | |
| 2746 | 2901 | // Get a list of table names ahead of time... This makes it easier to set our substep and such |
@@ -2750,9 +2905,10 @@ discard block |
||
| 2750 | 2905 | $upcontext['table_count'] = count($queryTables); |
| 2751 | 2906 | |
| 2752 | 2907 | // What ones have we already done? |
| 2753 | - foreach ($queryTables as $id => $table) |
|
| 2754 | - if ($id < $_GET['substep']) |
|
| 2908 | + foreach ($queryTables as $id => $table) { |
|
| 2909 | + if ($id < $_GET['substep']) |
|
| 2755 | 2910 | $upcontext['previous_tables'][] = $table; |
| 2911 | + } |
|
| 2756 | 2912 | |
| 2757 | 2913 | $upcontext['cur_table_num'] = $_GET['substep']; |
| 2758 | 2914 | $upcontext['cur_table_name'] = str_replace($db_prefix, '', $queryTables[$_GET['substep']]); |
@@ -2789,8 +2945,9 @@ discard block |
||
| 2789 | 2945 | nextSubstep($substep); |
| 2790 | 2946 | |
| 2791 | 2947 | // Just to make sure it doesn't time out. |
| 2792 | - if (function_exists('apache_reset_timeout')) |
|
| 2793 | - @apache_reset_timeout(); |
|
| 2948 | + if (function_exists('apache_reset_timeout')) { |
|
| 2949 | + @apache_reset_timeout(); |
|
| 2950 | + } |
|
| 2794 | 2951 | |
| 2795 | 2952 | $table_charsets = array(); |
| 2796 | 2953 | |
@@ -2813,8 +2970,9 @@ discard block |
||
| 2813 | 2970 | |
| 2814 | 2971 | // Build structure of columns to operate on organized by charset; only operate on columns not yet utf8 |
| 2815 | 2972 | if ($charset != 'utf8') { |
| 2816 | - if (!isset($table_charsets[$charset])) |
|
| 2817 | - $table_charsets[$charset] = array(); |
|
| 2973 | + if (!isset($table_charsets[$charset])) { |
|
| 2974 | + $table_charsets[$charset] = array(); |
|
| 2975 | + } |
|
| 2818 | 2976 | |
| 2819 | 2977 | $table_charsets[$charset][] = $column_info; |
| 2820 | 2978 | } |
@@ -2855,10 +3013,11 @@ discard block |
||
| 2855 | 3013 | if (isset($translation_tables[$upcontext['charset_detected']])) |
| 2856 | 3014 | { |
| 2857 | 3015 | $update = ''; |
| 2858 | - foreach ($table_charsets as $charset => $columns) |
|
| 2859 | - foreach ($columns as $column) |
|
| 3016 | + foreach ($table_charsets as $charset => $columns) { |
|
| 3017 | + foreach ($columns as $column) |
|
| 2860 | 3018 | $update .= ' |
| 2861 | 3019 | ' . $column['Field'] . ' = ' . strtr($replace, array('%field%' => $column['Field'])) . ','; |
| 3020 | + } |
|
| 2862 | 3021 | |
| 2863 | 3022 | $smcFunc['db_query']('', ' |
| 2864 | 3023 | UPDATE {raw:table_name} |
@@ -2883,8 +3042,9 @@ discard block |
||
| 2883 | 3042 | // Now do the actual conversion (if still needed). |
| 2884 | 3043 | if ($charsets[$upcontext['charset_detected']] !== 'utf8') |
| 2885 | 3044 | { |
| 2886 | - if ($command_line) |
|
| 2887 | - echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
| 3045 | + if ($command_line) { |
|
| 3046 | + echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
| 3047 | + } |
|
| 2888 | 3048 | |
| 2889 | 3049 | $smcFunc['db_query']('', ' |
| 2890 | 3050 | ALTER TABLE {raw:table_name} |
@@ -2894,12 +3054,14 @@ discard block |
||
| 2894 | 3054 | ) |
| 2895 | 3055 | ); |
| 2896 | 3056 | |
| 2897 | - if ($command_line) |
|
| 2898 | - echo " done.\n"; |
|
| 3057 | + if ($command_line) { |
|
| 3058 | + echo " done.\n"; |
|
| 3059 | + } |
|
| 2899 | 3060 | } |
| 2900 | 3061 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 2901 | - if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) |
|
| 2902 | - return upgradeExit(); |
|
| 3062 | + if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) { |
|
| 3063 | + return upgradeExit(); |
|
| 3064 | + } |
|
| 2903 | 3065 | } |
| 2904 | 3066 | |
| 2905 | 3067 | $prev_charset = empty($translation_tables[$upcontext['charset_detected']]) ? $charsets[$upcontext['charset_detected']] : $translation_tables[$upcontext['charset_detected']]; |
@@ -2928,8 +3090,8 @@ discard block |
||
| 2928 | 3090 | ); |
| 2929 | 3091 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 2930 | 3092 | { |
| 2931 | - 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) |
|
| 2932 | - $smcFunc['db_query']('', ' |
|
| 3093 | + 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) { |
|
| 3094 | + $smcFunc['db_query']('', ' |
|
| 2933 | 3095 | UPDATE {db_prefix}log_actions |
| 2934 | 3096 | SET extra = {string:extra} |
| 2935 | 3097 | WHERE id_action = {int:current_action}', |
@@ -2938,6 +3100,7 @@ discard block |
||
| 2938 | 3100 | 'extra' => $matches[1] . strlen($matches[3]) . ':"' . $matches[3] . '"' . $matches[4], |
| 2939 | 3101 | ) |
| 2940 | 3102 | ); |
| 3103 | + } |
|
| 2941 | 3104 | } |
| 2942 | 3105 | $smcFunc['db_free_result']($request); |
| 2943 | 3106 | |
@@ -2959,15 +3122,17 @@ discard block |
||
| 2959 | 3122 | // First thing's first - did we already do this? |
| 2960 | 3123 | if (!empty($modSettings['json_done'])) |
| 2961 | 3124 | { |
| 2962 | - if ($command_line) |
|
| 2963 | - return DeleteUpgrade(); |
|
| 2964 | - else |
|
| 2965 | - return true; |
|
| 3125 | + if ($command_line) { |
|
| 3126 | + return DeleteUpgrade(); |
|
| 3127 | + } else { |
|
| 3128 | + return true; |
|
| 3129 | + } |
|
| 2966 | 3130 | } |
| 2967 | 3131 | |
| 2968 | 3132 | // Done it already - js wise? |
| 2969 | - if (!empty($_POST['json_done'])) |
|
| 2970 | - return true; |
|
| 3133 | + if (!empty($_POST['json_done'])) { |
|
| 3134 | + return true; |
|
| 3135 | + } |
|
| 2971 | 3136 | |
| 2972 | 3137 | // List of tables affected by this function |
| 2973 | 3138 | // name => array('key', col1[,col2|true[,col3]]) |
@@ -2999,12 +3164,14 @@ discard block |
||
| 2999 | 3164 | $upcontext['cur_table_name'] = isset($keys[$_GET['substep']]) ? $keys[$_GET['substep']] : $keys[0]; |
| 3000 | 3165 | $upcontext['step_progress'] = (int) (($upcontext['cur_table_num'] / $upcontext['table_count']) * 100); |
| 3001 | 3166 | |
| 3002 | - foreach ($keys as $id => $table) |
|
| 3003 | - if ($id < $_GET['substep']) |
|
| 3167 | + foreach ($keys as $id => $table) { |
|
| 3168 | + if ($id < $_GET['substep']) |
|
| 3004 | 3169 | $upcontext['previous_tables'][] = $table; |
| 3170 | + } |
|
| 3005 | 3171 | |
| 3006 | - if ($command_line) |
|
| 3007 | - echo 'Converting data from serialize() to json_encode().'; |
|
| 3172 | + if ($command_line) { |
|
| 3173 | + echo 'Converting data from serialize() to json_encode().'; |
|
| 3174 | + } |
|
| 3008 | 3175 | |
| 3009 | 3176 | if (!$support_js || isset($_GET['xml'])) |
| 3010 | 3177 | { |
@@ -3044,8 +3211,9 @@ discard block |
||
| 3044 | 3211 | |
| 3045 | 3212 | // Loop through and fix these... |
| 3046 | 3213 | $new_settings = array(); |
| 3047 | - if ($command_line) |
|
| 3048 | - echo "\n" . 'Fixing some settings...'; |
|
| 3214 | + if ($command_line) { |
|
| 3215 | + echo "\n" . 'Fixing some settings...'; |
|
| 3216 | + } |
|
| 3049 | 3217 | |
| 3050 | 3218 | foreach ($serialized_settings as $var) |
| 3051 | 3219 | { |
@@ -3053,22 +3221,24 @@ discard block |
||
| 3053 | 3221 | { |
| 3054 | 3222 | // Attempt to unserialize the setting |
| 3055 | 3223 | $temp = @safe_unserialize($modSettings[$var]); |
| 3056 | - if (!$temp && $command_line) |
|
| 3057 | - echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
| 3058 | - elseif ($temp !== false) |
|
| 3059 | - $new_settings[$var] = json_encode($temp); |
|
| 3224 | + if (!$temp && $command_line) { |
|
| 3225 | + echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
| 3226 | + } elseif ($temp !== false) { |
|
| 3227 | + $new_settings[$var] = json_encode($temp); |
|
| 3228 | + } |
|
| 3060 | 3229 | } |
| 3061 | 3230 | } |
| 3062 | 3231 | |
| 3063 | 3232 | // Update everything at once |
| 3064 | - if (!function_exists('cache_put_data')) |
|
| 3065 | - require_once($sourcedir . '/Load.php'); |
|
| 3233 | + if (!function_exists('cache_put_data')) { |
|
| 3234 | + require_once($sourcedir . '/Load.php'); |
|
| 3235 | + } |
|
| 3066 | 3236 | updateSettings($new_settings, true); |
| 3067 | 3237 | |
| 3068 | - if ($command_line) |
|
| 3069 | - echo ' done.'; |
|
| 3070 | - } |
|
| 3071 | - elseif ($table == 'themes') |
|
| 3238 | + if ($command_line) { |
|
| 3239 | + echo ' done.'; |
|
| 3240 | + } |
|
| 3241 | + } elseif ($table == 'themes') |
|
| 3072 | 3242 | { |
| 3073 | 3243 | // Finally, fix the admin prefs. Unfortunately this is stored per theme, but hopefully they only have one theme installed at this point... |
| 3074 | 3244 | $query = $smcFunc['db_query']('', ' |
@@ -3087,10 +3257,11 @@ discard block |
||
| 3087 | 3257 | |
| 3088 | 3258 | if ($command_line) |
| 3089 | 3259 | { |
| 3090 | - if ($temp === false) |
|
| 3091 | - echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
| 3092 | - else |
|
| 3093 | - echo "\n" . 'Fixing admin preferences...'; |
|
| 3260 | + if ($temp === false) { |
|
| 3261 | + echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
| 3262 | + } else { |
|
| 3263 | + echo "\n" . 'Fixing admin preferences...'; |
|
| 3264 | + } |
|
| 3094 | 3265 | } |
| 3095 | 3266 | |
| 3096 | 3267 | if ($temp !== false) |
@@ -3112,15 +3283,15 @@ discard block |
||
| 3112 | 3283 | ) |
| 3113 | 3284 | ); |
| 3114 | 3285 | |
| 3115 | - if ($command_line) |
|
| 3116 | - echo ' done.'; |
|
| 3286 | + if ($command_line) { |
|
| 3287 | + echo ' done.'; |
|
| 3288 | + } |
|
| 3117 | 3289 | } |
| 3118 | 3290 | } |
| 3119 | 3291 | |
| 3120 | 3292 | $smcFunc['db_free_result']($query); |
| 3121 | 3293 | } |
| 3122 | - } |
|
| 3123 | - else |
|
| 3294 | + } else |
|
| 3124 | 3295 | { |
| 3125 | 3296 | // First item is always the key... |
| 3126 | 3297 | $key = $info[0]; |
@@ -3131,8 +3302,7 @@ discard block |
||
| 3131 | 3302 | { |
| 3132 | 3303 | $col_select = $info[1]; |
| 3133 | 3304 | $where = ' WHERE ' . $info[1] . ' != {empty}'; |
| 3134 | - } |
|
| 3135 | - else |
|
| 3305 | + } else |
|
| 3136 | 3306 | { |
| 3137 | 3307 | $col_select = implode(', ', $info); |
| 3138 | 3308 | } |
@@ -3165,8 +3335,7 @@ discard block |
||
| 3165 | 3335 | if ($temp === false && $command_line) |
| 3166 | 3336 | { |
| 3167 | 3337 | echo "\nFailed to unserialize " . $row[$col] . "... Skipping\n"; |
| 3168 | - } |
|
| 3169 | - else |
|
| 3338 | + } else |
|
| 3170 | 3339 | { |
| 3171 | 3340 | $row[$col] = json_encode($temp); |
| 3172 | 3341 | |
@@ -3191,16 +3360,18 @@ discard block |
||
| 3191 | 3360 | } |
| 3192 | 3361 | } |
| 3193 | 3362 | |
| 3194 | - if ($command_line) |
|
| 3195 | - echo ' done.'; |
|
| 3363 | + if ($command_line) { |
|
| 3364 | + echo ' done.'; |
|
| 3365 | + } |
|
| 3196 | 3366 | |
| 3197 | 3367 | // Free up some memory... |
| 3198 | 3368 | $smcFunc['db_free_result']($query); |
| 3199 | 3369 | } |
| 3200 | 3370 | } |
| 3201 | 3371 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 3202 | - if (isset($_GET['xml'])) |
|
| 3203 | - return upgradeExit(); |
|
| 3372 | + if (isset($_GET['xml'])) { |
|
| 3373 | + return upgradeExit(); |
|
| 3374 | + } |
|
| 3204 | 3375 | } |
| 3205 | 3376 | |
| 3206 | 3377 | if ($command_line) |
@@ -3215,8 +3386,9 @@ discard block |
||
| 3215 | 3386 | |
| 3216 | 3387 | $_GET['substep'] = 0; |
| 3217 | 3388 | // Make sure we move on! |
| 3218 | - if ($command_line) |
|
| 3219 | - return DeleteUpgrade(); |
|
| 3389 | + if ($command_line) { |
|
| 3390 | + return DeleteUpgrade(); |
|
| 3391 | + } |
|
| 3220 | 3392 | |
| 3221 | 3393 | return true; |
| 3222 | 3394 | } |
@@ -3236,14 +3408,16 @@ discard block |
||
| 3236 | 3408 | global $upcontext, $txt, $settings; |
| 3237 | 3409 | |
| 3238 | 3410 | // Don't call me twice! |
| 3239 | - if (!empty($upcontext['chmod_called'])) |
|
| 3240 | - return; |
|
| 3411 | + if (!empty($upcontext['chmod_called'])) { |
|
| 3412 | + return; |
|
| 3413 | + } |
|
| 3241 | 3414 | |
| 3242 | 3415 | $upcontext['chmod_called'] = true; |
| 3243 | 3416 | |
| 3244 | 3417 | // Nothing? |
| 3245 | - if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) |
|
| 3246 | - return; |
|
| 3418 | + if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) { |
|
| 3419 | + return; |
|
| 3420 | + } |
|
| 3247 | 3421 | |
| 3248 | 3422 | // Was it a problem with Windows? |
| 3249 | 3423 | if (!empty($upcontext['chmod']['ftp_error']) && $upcontext['chmod']['ftp_error'] == 'total_mess') |
@@ -3275,11 +3449,12 @@ discard block |
||
| 3275 | 3449 | 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\'); |
| 3276 | 3450 | content.write(\'<p>', implode('<br>\n\t\t\t', $upcontext['chmod']['files']), '</p>\n\t\t\t\');'; |
| 3277 | 3451 | |
| 3278 | - if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') |
|
| 3279 | - echo ' |
|
| 3452 | + if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') { |
|
| 3453 | + echo ' |
|
| 3280 | 3454 | content.write(\'<hr>\n\t\t\t\'); |
| 3281 | 3455 | 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\'); |
| 3282 | 3456 | content.write(\'<tt># chmod a+w ', implode(' ', $upcontext['chmod']['files']), '</tt>\n\t\t\t\');'; |
| 3457 | + } |
|
| 3283 | 3458 | |
| 3284 | 3459 | echo ' |
| 3285 | 3460 | content.write(\'<a href="javascript:self.close();">close</a>\n\t\t</div>\n\t</body>\n</html>\'); |
@@ -3287,17 +3462,19 @@ discard block |
||
| 3287 | 3462 | } |
| 3288 | 3463 | </script>'; |
| 3289 | 3464 | |
| 3290 | - if (!empty($upcontext['chmod']['ftp_error'])) |
|
| 3291 | - echo ' |
|
| 3465 | + if (!empty($upcontext['chmod']['ftp_error'])) { |
|
| 3466 | + echo ' |
|
| 3292 | 3467 | <div class="error_message red"> |
| 3293 | 3468 | The following error was encountered when trying to connect:<br><br> |
| 3294 | 3469 | <code>', $upcontext['chmod']['ftp_error'], '</code> |
| 3295 | 3470 | </div> |
| 3296 | 3471 | <br>'; |
| 3472 | + } |
|
| 3297 | 3473 | |
| 3298 | - if (empty($upcontext['chmod_in_form'])) |
|
| 3299 | - echo ' |
|
| 3474 | + if (empty($upcontext['chmod_in_form'])) { |
|
| 3475 | + echo ' |
|
| 3300 | 3476 | <form action="', $upcontext['form_url'], '" method="post">'; |
| 3477 | + } |
|
| 3301 | 3478 | |
| 3302 | 3479 | echo ' |
| 3303 | 3480 | <table width="520" border="0" align="center" style="margin-bottom: 1ex;"> |
@@ -3332,10 +3509,11 @@ discard block |
||
| 3332 | 3509 | <div class="righttext" style="margin: 1ex;"><input type="submit" value="', $txt['ftp_connect'], '" class="button"></div> |
| 3333 | 3510 | </div>'; |
| 3334 | 3511 | |
| 3335 | - if (empty($upcontext['chmod_in_form'])) |
|
| 3336 | - echo ' |
|
| 3512 | + if (empty($upcontext['chmod_in_form'])) { |
|
| 3513 | + echo ' |
|
| 3337 | 3514 | </form>'; |
| 3338 | -} |
|
| 3515 | + } |
|
| 3516 | + } |
|
| 3339 | 3517 | |
| 3340 | 3518 | function template_upgrade_above() |
| 3341 | 3519 | { |
@@ -3395,9 +3573,10 @@ discard block |
||
| 3395 | 3573 | <h2>', $txt['upgrade_progress'], '</h2> |
| 3396 | 3574 | <ul>'; |
| 3397 | 3575 | |
| 3398 | - foreach ($upcontext['steps'] as $num => $step) |
|
| 3399 | - echo ' |
|
| 3576 | + foreach ($upcontext['steps'] as $num => $step) { |
|
| 3577 | + echo ' |
|
| 3400 | 3578 | <li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>'; |
| 3579 | + } |
|
| 3401 | 3580 | |
| 3402 | 3581 | echo ' |
| 3403 | 3582 | </ul> |
@@ -3410,8 +3589,8 @@ discard block |
||
| 3410 | 3589 | </div> |
| 3411 | 3590 | </div>'; |
| 3412 | 3591 | |
| 3413 | - if (isset($upcontext['step_progress'])) |
|
| 3414 | - echo ' |
|
| 3592 | + if (isset($upcontext['step_progress'])) { |
|
| 3593 | + echo ' |
|
| 3415 | 3594 | <br> |
| 3416 | 3595 | <br> |
| 3417 | 3596 | <div id="progress_bar_step"> |
@@ -3420,6 +3599,7 @@ discard block |
||
| 3420 | 3599 | <span>', $txt['upgrade_step_progress'], '</span> |
| 3421 | 3600 | </div> |
| 3422 | 3601 | </div>'; |
| 3602 | + } |
|
| 3423 | 3603 | |
| 3424 | 3604 | echo ' |
| 3425 | 3605 | <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> |
@@ -3450,32 +3630,36 @@ discard block |
||
| 3450 | 3630 | { |
| 3451 | 3631 | global $upcontext, $txt; |
| 3452 | 3632 | |
| 3453 | - if (!empty($upcontext['pause'])) |
|
| 3454 | - echo ' |
|
| 3633 | + if (!empty($upcontext['pause'])) { |
|
| 3634 | + echo ' |
|
| 3455 | 3635 | <em>', $txt['upgrade_incomplete'], '.</em><br> |
| 3456 | 3636 | |
| 3457 | 3637 | <h2 style="margin-top: 2ex;">', $txt['upgrade_not_quite_done'], '</h2> |
| 3458 | 3638 | <h3> |
| 3459 | 3639 | ', $txt['upgrade_paused_overload'], ' |
| 3460 | 3640 | </h3>'; |
| 3641 | + } |
|
| 3461 | 3642 | |
| 3462 | - if (!empty($upcontext['custom_warning'])) |
|
| 3463 | - echo ' |
|
| 3643 | + if (!empty($upcontext['custom_warning'])) { |
|
| 3644 | + echo ' |
|
| 3464 | 3645 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3465 | 3646 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3466 | 3647 | <strong style="text-decoration: underline;">', $txt['upgrade_note'], '</strong><br> |
| 3467 | 3648 | <div style="padding-left: 6ex;">', $upcontext['custom_warning'], '</div> |
| 3468 | 3649 | </div>'; |
| 3650 | + } |
|
| 3469 | 3651 | |
| 3470 | 3652 | echo ' |
| 3471 | 3653 | <div class="righttext" style="margin: 1ex;">'; |
| 3472 | 3654 | |
| 3473 | - if (!empty($upcontext['continue'])) |
|
| 3474 | - echo ' |
|
| 3655 | + if (!empty($upcontext['continue'])) { |
|
| 3656 | + echo ' |
|
| 3475 | 3657 | <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '"', $upcontext['continue'] == 2 ? ' disabled' : '', ' class="button">'; |
| 3476 | - if (!empty($upcontext['skip'])) |
|
| 3477 | - echo ' |
|
| 3658 | + } |
|
| 3659 | + if (!empty($upcontext['skip'])) { |
|
| 3660 | + echo ' |
|
| 3478 | 3661 | <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="dontSubmit = true; document.getElementById(\'contbutt\').disabled = \'disabled\'; return true;" class="button">'; |
| 3662 | + } |
|
| 3479 | 3663 | |
| 3480 | 3664 | echo ' |
| 3481 | 3665 | </div> |
@@ -3525,11 +3709,12 @@ discard block |
||
| 3525 | 3709 | echo '<', '?xml version="1.0" encoding="UTF-8"?', '> |
| 3526 | 3710 | <smf>'; |
| 3527 | 3711 | |
| 3528 | - if (!empty($upcontext['get_data'])) |
|
| 3529 | - foreach ($upcontext['get_data'] as $k => $v) |
|
| 3712 | + if (!empty($upcontext['get_data'])) { |
|
| 3713 | + foreach ($upcontext['get_data'] as $k => $v) |
|
| 3530 | 3714 | echo ' |
| 3531 | 3715 | <get key="', $k, '">', $v, '</get>'; |
| 3532 | -} |
|
| 3716 | + } |
|
| 3717 | + } |
|
| 3533 | 3718 | |
| 3534 | 3719 | function template_xml_below() |
| 3535 | 3720 | { |
@@ -3570,8 +3755,8 @@ discard block |
||
| 3570 | 3755 | template_chmod(); |
| 3571 | 3756 | |
| 3572 | 3757 | // For large, pre 1.1 RC2 forums give them a warning about the possible impact of this upgrade! |
| 3573 | - if ($upcontext['is_large_forum']) |
|
| 3574 | - echo ' |
|
| 3758 | + if ($upcontext['is_large_forum']) { |
|
| 3759 | + echo ' |
|
| 3575 | 3760 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3576 | 3761 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3577 | 3762 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3579,10 +3764,11 @@ discard block |
||
| 3579 | 3764 | ', $txt['upgrade_warning_lots_data'], ' |
| 3580 | 3765 | </div> |
| 3581 | 3766 | </div>'; |
| 3767 | + } |
|
| 3582 | 3768 | |
| 3583 | 3769 | // A warning message? |
| 3584 | - if (!empty($upcontext['warning'])) |
|
| 3585 | - echo ' |
|
| 3770 | + if (!empty($upcontext['warning'])) { |
|
| 3771 | + echo ' |
|
| 3586 | 3772 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3587 | 3773 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3588 | 3774 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3590,6 +3776,7 @@ discard block |
||
| 3590 | 3776 | ', $upcontext['warning'], ' |
| 3591 | 3777 | </div> |
| 3592 | 3778 | </div>'; |
| 3779 | + } |
|
| 3593 | 3780 | |
| 3594 | 3781 | // Paths are incorrect? |
| 3595 | 3782 | echo ' |
@@ -3605,20 +3792,22 @@ discard block |
||
| 3605 | 3792 | if (!empty($upcontext['user']['id']) && (time() - $upcontext['started'] < 72600 || time() - $upcontext['updated'] < 3600)) |
| 3606 | 3793 | { |
| 3607 | 3794 | $ago = time() - $upcontext['started']; |
| 3608 | - if ($ago < 60) |
|
| 3609 | - $ago = $ago . ' seconds'; |
|
| 3610 | - elseif ($ago < 3600) |
|
| 3611 | - $ago = (int) ($ago / 60) . ' minutes'; |
|
| 3612 | - else |
|
| 3613 | - $ago = (int) ($ago / 3600) . ' hours'; |
|
| 3795 | + if ($ago < 60) { |
|
| 3796 | + $ago = $ago . ' seconds'; |
|
| 3797 | + } elseif ($ago < 3600) { |
|
| 3798 | + $ago = (int) ($ago / 60) . ' minutes'; |
|
| 3799 | + } else { |
|
| 3800 | + $ago = (int) ($ago / 3600) . ' hours'; |
|
| 3801 | + } |
|
| 3614 | 3802 | |
| 3615 | 3803 | $active = time() - $upcontext['updated']; |
| 3616 | - if ($active < 60) |
|
| 3617 | - $updated = $active . ' seconds'; |
|
| 3618 | - elseif ($active < 3600) |
|
| 3619 | - $updated = (int) ($active / 60) . ' minutes'; |
|
| 3620 | - else |
|
| 3621 | - $updated = (int) ($active / 3600) . ' hours'; |
|
| 3804 | + if ($active < 60) { |
|
| 3805 | + $updated = $active . ' seconds'; |
|
| 3806 | + } elseif ($active < 3600) { |
|
| 3807 | + $updated = (int) ($active / 60) . ' minutes'; |
|
| 3808 | + } else { |
|
| 3809 | + $updated = (int) ($active / 3600) . ' hours'; |
|
| 3810 | + } |
|
| 3622 | 3811 | |
| 3623 | 3812 | echo ' |
| 3624 | 3813 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
@@ -3627,16 +3816,18 @@ discard block |
||
| 3627 | 3816 | <div style="padding-left: 6ex;"> |
| 3628 | 3817 | "', $upcontext['user']['name'], '" has been running the upgrade script for the last ', $ago, ' - and was last active ', $updated, ' ago.'; |
| 3629 | 3818 | |
| 3630 | - if ($active < 600) |
|
| 3631 | - echo ' |
|
| 3819 | + if ($active < 600) { |
|
| 3820 | + echo ' |
|
| 3632 | 3821 | We recommend that you do not run this script unless you are sure that ', $upcontext['user']['name'], ' has completed their upgrade.'; |
| 3822 | + } |
|
| 3633 | 3823 | |
| 3634 | - if ($active > $upcontext['inactive_timeout']) |
|
| 3635 | - echo ' |
|
| 3824 | + if ($active > $upcontext['inactive_timeout']) { |
|
| 3825 | + echo ' |
|
| 3636 | 3826 | <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.'; |
| 3637 | - else |
|
| 3638 | - echo ' |
|
| 3827 | + } else { |
|
| 3828 | + echo ' |
|
| 3639 | 3829 | <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!'); |
| 3830 | + } |
|
| 3640 | 3831 | |
| 3641 | 3832 | echo ' |
| 3642 | 3833 | </div> |
@@ -3652,9 +3843,10 @@ discard block |
||
| 3652 | 3843 | <td> |
| 3653 | 3844 | <input type="text" name="user" value="', !empty($upcontext['username']) ? $upcontext['username'] : '', '"', $disable_security ? ' disabled' : '', '>'; |
| 3654 | 3845 | |
| 3655 | - if (!empty($upcontext['username_incorrect'])) |
|
| 3656 | - echo ' |
|
| 3846 | + if (!empty($upcontext['username_incorrect'])) { |
|
| 3847 | + echo ' |
|
| 3657 | 3848 | <div class="smalltext" style="color: red;">Username Incorrect</div>'; |
| 3849 | + } |
|
| 3658 | 3850 | |
| 3659 | 3851 | echo ' |
| 3660 | 3852 | </td> |
@@ -3665,9 +3857,10 @@ discard block |
||
| 3665 | 3857 | <input type="password" name="passwrd" value=""', $disable_security ? ' disabled' : '', '> |
| 3666 | 3858 | <input type="hidden" name="hash_passwrd" value="">'; |
| 3667 | 3859 | |
| 3668 | - if (!empty($upcontext['password_failed'])) |
|
| 3669 | - echo ' |
|
| 3860 | + if (!empty($upcontext['password_failed'])) { |
|
| 3861 | + echo ' |
|
| 3670 | 3862 | <div class="smalltext" style="color: red;">Password Incorrect</div>'; |
| 3863 | + } |
|
| 3671 | 3864 | |
| 3672 | 3865 | echo ' |
| 3673 | 3866 | </td> |
@@ -3738,8 +3931,8 @@ discard block |
||
| 3738 | 3931 | <form action="', $upcontext['form_url'], '" method="post" name="upform" id="upform">'; |
| 3739 | 3932 | |
| 3740 | 3933 | // Warning message? |
| 3741 | - if (!empty($upcontext['upgrade_options_warning'])) |
|
| 3742 | - echo ' |
|
| 3934 | + if (!empty($upcontext['upgrade_options_warning'])) { |
|
| 3935 | + echo ' |
|
| 3743 | 3936 | <div style="margin: 1ex; padding: 1ex; border: 1px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3744 | 3937 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3745 | 3938 | <strong style="text-decoration: underline;">Warning!</strong><br> |
@@ -3747,6 +3940,7 @@ discard block |
||
| 3747 | 3940 | ', $upcontext['upgrade_options_warning'], ' |
| 3748 | 3941 | </div> |
| 3749 | 3942 | </div>'; |
| 3943 | + } |
|
| 3750 | 3944 | |
| 3751 | 3945 | echo ' |
| 3752 | 3946 | <table> |
@@ -3789,8 +3983,8 @@ discard block |
||
| 3789 | 3983 | </td> |
| 3790 | 3984 | </tr>'; |
| 3791 | 3985 | |
| 3792 | - if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) |
|
| 3793 | - echo ' |
|
| 3986 | + if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) { |
|
| 3987 | + echo ' |
|
| 3794 | 3988 | <tr valign="top"> |
| 3795 | 3989 | <td width="2%"> |
| 3796 | 3990 | <input type="checkbox" name="delete_karma" id="delete_karma" value="1"> |
@@ -3799,6 +3993,7 @@ discard block |
||
| 3799 | 3993 | <label for="delete_karma">Delete all karma settings and info from the DB</label> |
| 3800 | 3994 | </td> |
| 3801 | 3995 | </tr>'; |
| 3996 | + } |
|
| 3802 | 3997 | |
| 3803 | 3998 | echo ' |
| 3804 | 3999 | <tr valign="top"> |
@@ -3836,10 +4031,11 @@ discard block |
||
| 3836 | 4031 | </div>'; |
| 3837 | 4032 | |
| 3838 | 4033 | // Dont any tables so far? |
| 3839 | - if (!empty($upcontext['previous_tables'])) |
|
| 3840 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4034 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4035 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 3841 | 4036 | echo ' |
| 3842 | 4037 | <br>Completed Table: "', $table, '".'; |
| 4038 | + } |
|
| 3843 | 4039 | |
| 3844 | 4040 | echo ' |
| 3845 | 4041 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
@@ -3876,12 +4072,13 @@ discard block |
||
| 3876 | 4072 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 3877 | 4073 | |
| 3878 | 4074 | // If debug flood the screen. |
| 3879 | - if ($is_debug) |
|
| 3880 | - echo ' |
|
| 4075 | + if ($is_debug) { |
|
| 4076 | + echo ' |
|
| 3881 | 4077 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 3882 | 4078 | |
| 3883 | 4079 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 3884 | 4080 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4081 | + } |
|
| 3885 | 4082 | |
| 3886 | 4083 | echo ' |
| 3887 | 4084 | // Get the next update... |
@@ -3914,8 +4111,9 @@ discard block |
||
| 3914 | 4111 | { |
| 3915 | 4112 | global $upcontext, $support_js, $is_debug, $timeLimitThreshold; |
| 3916 | 4113 | |
| 3917 | - if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) |
|
| 3918 | - $is_debug = true; |
|
| 4114 | + if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) { |
|
| 4115 | + $is_debug = true; |
|
| 4116 | + } |
|
| 3919 | 4117 | |
| 3920 | 4118 | echo ' |
| 3921 | 4119 | <h3>Executing database changes</h3> |
@@ -3930,8 +4128,9 @@ discard block |
||
| 3930 | 4128 | { |
| 3931 | 4129 | foreach ($upcontext['actioned_items'] as $num => $item) |
| 3932 | 4130 | { |
| 3933 | - if ($num != 0) |
|
| 3934 | - echo ' Successful!'; |
|
| 4131 | + if ($num != 0) { |
|
| 4132 | + echo ' Successful!'; |
|
| 4133 | + } |
|
| 3935 | 4134 | echo '<br>' . $item; |
| 3936 | 4135 | } |
| 3937 | 4136 | if (!empty($upcontext['changes_complete'])) |
@@ -3944,28 +4143,32 @@ discard block |
||
| 3944 | 4143 | $seconds = intval($active % 60); |
| 3945 | 4144 | |
| 3946 | 4145 | $totalTime = ''; |
| 3947 | - if ($hours > 0) |
|
| 3948 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 3949 | - if ($minutes > 0) |
|
| 3950 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 3951 | - if ($seconds > 0) |
|
| 3952 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4146 | + if ($hours > 0) { |
|
| 4147 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4148 | + } |
|
| 4149 | + if ($minutes > 0) { |
|
| 4150 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4151 | + } |
|
| 4152 | + if ($seconds > 0) { |
|
| 4153 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4154 | + } |
|
| 3953 | 4155 | } |
| 3954 | 4156 | |
| 3955 | - if ($is_debug && !empty($totalTime)) |
|
| 3956 | - echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
| 3957 | - else |
|
| 3958 | - echo ' Successful!<br><br>'; |
|
| 4157 | + if ($is_debug && !empty($totalTime)) { |
|
| 4158 | + echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
| 4159 | + } else { |
|
| 4160 | + echo ' Successful!<br><br>'; |
|
| 4161 | + } |
|
| 3959 | 4162 | |
| 3960 | 4163 | echo '<span id="commess" style="font-weight: bold;">1 Database Updates Complete! Click Continue to Proceed.</span><br>'; |
| 3961 | 4164 | } |
| 3962 | - } |
|
| 3963 | - else |
|
| 4165 | + } else |
|
| 3964 | 4166 | { |
| 3965 | 4167 | // Tell them how many files we have in total. |
| 3966 | - if ($upcontext['file_count'] > 1) |
|
| 3967 | - echo ' |
|
| 4168 | + if ($upcontext['file_count'] > 1) { |
|
| 4169 | + echo ' |
|
| 3968 | 4170 | <strong id="info1">Executing upgrade script <span id="file_done">', $upcontext['cur_file_num'], '</span> of ', $upcontext['file_count'], '.</strong>'; |
| 4171 | + } |
|
| 3969 | 4172 | |
| 3970 | 4173 | echo ' |
| 3971 | 4174 | <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> |
@@ -3981,19 +4184,23 @@ discard block |
||
| 3981 | 4184 | $seconds = intval($active % 60); |
| 3982 | 4185 | |
| 3983 | 4186 | $totalTime = ''; |
| 3984 | - if ($hours > 0) |
|
| 3985 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 3986 | - if ($minutes > 0) |
|
| 3987 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 3988 | - if ($seconds > 0) |
|
| 3989 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4187 | + if ($hours > 0) { |
|
| 4188 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4189 | + } |
|
| 4190 | + if ($minutes > 0) { |
|
| 4191 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4192 | + } |
|
| 4193 | + if ($seconds > 0) { |
|
| 4194 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4195 | + } |
|
| 3990 | 4196 | } |
| 3991 | 4197 | |
| 3992 | 4198 | echo ' |
| 3993 | 4199 | <br><span id="upgradeCompleted">'; |
| 3994 | 4200 | |
| 3995 | - if (!empty($totalTime)) |
|
| 3996 | - echo 'Completed in ', $totalTime, '<br>'; |
|
| 4201 | + if (!empty($totalTime)) { |
|
| 4202 | + echo 'Completed in ', $totalTime, '<br>'; |
|
| 4203 | + } |
|
| 3997 | 4204 | |
| 3998 | 4205 | echo '</span> |
| 3999 | 4206 | <div id="debug_section" style="height: 59px; overflow: auto;"> |
@@ -4030,9 +4237,10 @@ discard block |
||
| 4030 | 4237 | var getData = ""; |
| 4031 | 4238 | var debugItems = ', $upcontext['debug_items'], ';'; |
| 4032 | 4239 | |
| 4033 | - if ($is_debug) |
|
| 4034 | - echo ' |
|
| 4240 | + if ($is_debug) { |
|
| 4241 | + echo ' |
|
| 4035 | 4242 | var upgradeStartTime = ' . $upcontext['started'] . ';'; |
| 4243 | + } |
|
| 4036 | 4244 | |
| 4037 | 4245 | echo ' |
| 4038 | 4246 | function getNextItem() |
@@ -4072,9 +4280,10 @@ discard block |
||
| 4072 | 4280 | document.getElementById("error_block").style.display = ""; |
| 4073 | 4281 | setInnerHTML(document.getElementById("error_message"), "Error retrieving information on step: " + (sDebugName == "" ? sLastString : sDebugName));'; |
| 4074 | 4282 | |
| 4075 | - if ($is_debug) |
|
| 4076 | - echo ' |
|
| 4283 | + if ($is_debug) { |
|
| 4284 | + echo ' |
|
| 4077 | 4285 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
| 4286 | + } |
|
| 4078 | 4287 | |
| 4079 | 4288 | echo ' |
| 4080 | 4289 | } |
@@ -4095,9 +4304,10 @@ discard block |
||
| 4095 | 4304 | document.getElementById("error_block").style.display = ""; |
| 4096 | 4305 | setInnerHTML(document.getElementById("error_message"), "Upgrade script appears to be going into a loop - step: " + sDebugName);'; |
| 4097 | 4306 | |
| 4098 | - if ($is_debug) |
|
| 4099 | - echo ' |
|
| 4307 | + if ($is_debug) { |
|
| 4308 | + echo ' |
|
| 4100 | 4309 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
| 4310 | + } |
|
| 4101 | 4311 | |
| 4102 | 4312 | echo ' |
| 4103 | 4313 | } |
@@ -4156,8 +4366,8 @@ discard block |
||
| 4156 | 4366 | if (bIsComplete && iDebugNum == -1 && curFile >= ', $upcontext['file_count'], ') |
| 4157 | 4367 | {'; |
| 4158 | 4368 | |
| 4159 | - if ($is_debug) |
|
| 4160 | - echo ' |
|
| 4369 | + if ($is_debug) { |
|
| 4370 | + echo ' |
|
| 4161 | 4371 | document.getElementById(\'debug_section\').style.display = "none"; |
| 4162 | 4372 | |
| 4163 | 4373 | var upgradeFinishedTime = parseInt(oXMLDoc.getElementsByTagName("curtime")[0].childNodes[0].nodeValue); |
@@ -4175,6 +4385,7 @@ discard block |
||
| 4175 | 4385 | totalTime = totalTime + diffSeconds + " second" + (diffSeconds > 1 ? "s" : ""); |
| 4176 | 4386 | |
| 4177 | 4387 | setInnerHTML(document.getElementById("upgradeCompleted"), "Completed in " + totalTime);'; |
| 4388 | + } |
|
| 4178 | 4389 | |
| 4179 | 4390 | echo ' |
| 4180 | 4391 | |
@@ -4182,9 +4393,10 @@ discard block |
||
| 4182 | 4393 | document.getElementById(\'contbutt\').disabled = 0; |
| 4183 | 4394 | document.getElementById(\'database_done\').value = 1;'; |
| 4184 | 4395 | |
| 4185 | - if ($upcontext['file_count'] > 1) |
|
| 4186 | - echo ' |
|
| 4396 | + if ($upcontext['file_count'] > 1) { |
|
| 4397 | + echo ' |
|
| 4187 | 4398 | document.getElementById(\'info1\').style.display = "none";'; |
| 4399 | + } |
|
| 4188 | 4400 | |
| 4189 | 4401 | echo ' |
| 4190 | 4402 | document.getElementById(\'info2\').style.display = "none"; |
@@ -4197,9 +4409,10 @@ discard block |
||
| 4197 | 4409 | lastItem = 0; |
| 4198 | 4410 | prevFile = curFile;'; |
| 4199 | 4411 | |
| 4200 | - if ($is_debug) |
|
| 4201 | - echo ' |
|
| 4412 | + if ($is_debug) { |
|
| 4413 | + echo ' |
|
| 4202 | 4414 | setOuterHTML(document.getElementById(\'debuginfo\'), \'Moving to next script file...done<br><span id="debuginfo"><\' + \'/span>\');'; |
| 4415 | + } |
|
| 4203 | 4416 | |
| 4204 | 4417 | echo ' |
| 4205 | 4418 | getNextItem(); |
@@ -4207,8 +4420,8 @@ discard block |
||
| 4207 | 4420 | }'; |
| 4208 | 4421 | |
| 4209 | 4422 | // If debug scroll the screen. |
| 4210 | - if ($is_debug) |
|
| 4211 | - echo ' |
|
| 4423 | + if ($is_debug) { |
|
| 4424 | + echo ' |
|
| 4212 | 4425 | if (iLastSubStepProgress == -1) |
| 4213 | 4426 | { |
| 4214 | 4427 | // Give it consistent dots. |
@@ -4227,6 +4440,7 @@ discard block |
||
| 4227 | 4440 | |
| 4228 | 4441 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4229 | 4442 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4443 | + } |
|
| 4230 | 4444 | |
| 4231 | 4445 | echo ' |
| 4232 | 4446 | // Update the page. |
@@ -4287,9 +4501,10 @@ discard block |
||
| 4287 | 4501 | }'; |
| 4288 | 4502 | |
| 4289 | 4503 | // Start things off assuming we've not errored. |
| 4290 | - if (empty($upcontext['error_message'])) |
|
| 4291 | - echo ' |
|
| 4504 | + if (empty($upcontext['error_message'])) { |
|
| 4505 | + echo ' |
|
| 4292 | 4506 | getNextItem();'; |
| 4507 | + } |
|
| 4293 | 4508 | |
| 4294 | 4509 | echo ' |
| 4295 | 4510 | //# sourceURL=dynamicScript-dbch.js |
@@ -4307,18 +4522,21 @@ discard block |
||
| 4307 | 4522 | <item num="', $upcontext['current_item_num'], '">', $upcontext['current_item_name'], '</item> |
| 4308 | 4523 | <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>'; |
| 4309 | 4524 | |
| 4310 | - if (!empty($upcontext['error_message'])) |
|
| 4311 | - echo ' |
|
| 4525 | + if (!empty($upcontext['error_message'])) { |
|
| 4526 | + echo ' |
|
| 4312 | 4527 | <error>', $upcontext['error_message'], '</error>'; |
| 4528 | + } |
|
| 4313 | 4529 | |
| 4314 | - if (!empty($upcontext['error_string'])) |
|
| 4315 | - echo ' |
|
| 4530 | + if (!empty($upcontext['error_string'])) { |
|
| 4531 | + echo ' |
|
| 4316 | 4532 | <sql>', $upcontext['error_string'], '</sql>'; |
| 4533 | + } |
|
| 4317 | 4534 | |
| 4318 | - if ($is_debug) |
|
| 4319 | - echo ' |
|
| 4535 | + if ($is_debug) { |
|
| 4536 | + echo ' |
|
| 4320 | 4537 | <curtime>', time(), '</curtime>'; |
| 4321 | -} |
|
| 4538 | + } |
|
| 4539 | + } |
|
| 4322 | 4540 | |
| 4323 | 4541 | // Template for the UTF-8 conversion step. Basically a copy of the backup stuff with slight modifications.... |
| 4324 | 4542 | function template_convert_utf8() |
@@ -4337,18 +4555,20 @@ discard block |
||
| 4337 | 4555 | </div>'; |
| 4338 | 4556 | |
| 4339 | 4557 | // Done any tables so far? |
| 4340 | - if (!empty($upcontext['previous_tables'])) |
|
| 4341 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4558 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4559 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 4342 | 4560 | echo ' |
| 4343 | 4561 | <br>Completed Table: "', $table, '".'; |
| 4562 | + } |
|
| 4344 | 4563 | |
| 4345 | 4564 | echo ' |
| 4346 | 4565 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3>'; |
| 4347 | 4566 | |
| 4348 | 4567 | // If we dropped their index, let's let them know |
| 4349 | - if ($upcontext['dropping_index']) |
|
| 4350 | - echo ' |
|
| 4568 | + if ($upcontext['dropping_index']) { |
|
| 4569 | + echo ' |
|
| 4351 | 4570 | <br><span id="indexmsg" style="font-weight: bold; font-style: italic; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Please note that your fulltext index was dropped to facilitate the conversion and will need to be recreated in the admin area after the upgrade is complete.</span>'; |
| 4571 | + } |
|
| 4352 | 4572 | |
| 4353 | 4573 | // Completion notification |
| 4354 | 4574 | echo ' |
@@ -4385,12 +4605,13 @@ discard block |
||
| 4385 | 4605 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4386 | 4606 | |
| 4387 | 4607 | // If debug flood the screen. |
| 4388 | - if ($is_debug) |
|
| 4389 | - echo ' |
|
| 4608 | + if ($is_debug) { |
|
| 4609 | + echo ' |
|
| 4390 | 4610 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4391 | 4611 | |
| 4392 | 4612 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4393 | 4613 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4614 | + } |
|
| 4394 | 4615 | |
| 4395 | 4616 | echo ' |
| 4396 | 4617 | // Get the next update... |
@@ -4438,19 +4659,21 @@ discard block |
||
| 4438 | 4659 | </div>'; |
| 4439 | 4660 | |
| 4440 | 4661 | // Dont any tables so far? |
| 4441 | - if (!empty($upcontext['previous_tables'])) |
|
| 4442 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4662 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4663 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 4443 | 4664 | echo ' |
| 4444 | 4665 | <br>Completed Table: "', $table, '".'; |
| 4666 | + } |
|
| 4445 | 4667 | |
| 4446 | 4668 | echo ' |
| 4447 | 4669 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
| 4448 | 4670 | <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>'; |
| 4449 | 4671 | |
| 4450 | 4672 | // Try to make sure substep was reset. |
| 4451 | - if ($upcontext['cur_table_num'] == $upcontext['table_count']) |
|
| 4452 | - echo ' |
|
| 4673 | + if ($upcontext['cur_table_num'] == $upcontext['table_count']) { |
|
| 4674 | + echo ' |
|
| 4453 | 4675 | <input type="hidden" name="substep" id="substep" value="0">'; |
| 4676 | + } |
|
| 4454 | 4677 | |
| 4455 | 4678 | // Continue please! |
| 4456 | 4679 | $upcontext['continue'] = $support_js ? 2 : 1; |
@@ -4483,12 +4706,13 @@ discard block |
||
| 4483 | 4706 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4484 | 4707 | |
| 4485 | 4708 | // If debug flood the screen. |
| 4486 | - if ($is_debug) |
|
| 4487 | - echo ' |
|
| 4709 | + if ($is_debug) { |
|
| 4710 | + echo ' |
|
| 4488 | 4711 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4489 | 4712 | |
| 4490 | 4713 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4491 | 4714 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4715 | + } |
|
| 4492 | 4716 | |
| 4493 | 4717 | echo ' |
| 4494 | 4718 | // Get the next update... |
@@ -4524,8 +4748,8 @@ discard block |
||
| 4524 | 4748 | <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> |
| 4525 | 4749 | <form action="', $boardurl, '/index.php">'; |
| 4526 | 4750 | |
| 4527 | - if (!empty($upcontext['can_delete_script'])) |
|
| 4528 | - echo ' |
|
| 4751 | + if (!empty($upcontext['can_delete_script'])) { |
|
| 4752 | + echo ' |
|
| 4529 | 4753 | <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete(this);"> Delete upgrade.php and its data files now</label> <em>(doesn\'t work on all servers).</em> |
| 4530 | 4754 | <script> |
| 4531 | 4755 | function doTheDelete(theCheck) |
@@ -4537,6 +4761,7 @@ discard block |
||
| 4537 | 4761 | } |
| 4538 | 4762 | </script> |
| 4539 | 4763 | <img src="', $settings['default_theme_url'], '/images/blank.png" alt="" id="delete_upgrader"><br>'; |
| 4764 | + } |
|
| 4540 | 4765 | |
| 4541 | 4766 | $active = time() - $upcontext['started']; |
| 4542 | 4767 | $hours = floor($active / 3600); |
@@ -4546,16 +4771,20 @@ discard block |
||
| 4546 | 4771 | if ($is_debug) |
| 4547 | 4772 | { |
| 4548 | 4773 | $totalTime = ''; |
| 4549 | - if ($hours > 0) |
|
| 4550 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4551 | - if ($minutes > 0) |
|
| 4552 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4553 | - if ($seconds > 0) |
|
| 4554 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4774 | + if ($hours > 0) { |
|
| 4775 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4776 | + } |
|
| 4777 | + if ($minutes > 0) { |
|
| 4778 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4779 | + } |
|
| 4780 | + if ($seconds > 0) { |
|
| 4781 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4782 | + } |
|
| 4555 | 4783 | } |
| 4556 | 4784 | |
| 4557 | - if ($is_debug && !empty($totalTime)) |
|
| 4558 | - echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
| 4785 | + if ($is_debug && !empty($totalTime)) { |
|
| 4786 | + echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
| 4787 | + } |
|
| 4559 | 4788 | |
| 4560 | 4789 | echo '<br> |
| 4561 | 4790 | 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> |
@@ -4582,8 +4811,9 @@ discard block |
||
| 4582 | 4811 | |
| 4583 | 4812 | $current_substep = $_GET['substep']; |
| 4584 | 4813 | |
| 4585 | - if (empty($_GET['a'])) |
|
| 4586 | - $_GET['a'] = 0; |
|
| 4814 | + if (empty($_GET['a'])) { |
|
| 4815 | + $_GET['a'] = 0; |
|
| 4816 | + } |
|
| 4587 | 4817 | $step_progress['name'] = 'Converting ips'; |
| 4588 | 4818 | $step_progress['current'] = $_GET['a']; |
| 4589 | 4819 | |
@@ -4626,16 +4856,19 @@ discard block |
||
| 4626 | 4856 | 'empty' => '', |
| 4627 | 4857 | 'limit' => $limit, |
| 4628 | 4858 | )); |
| 4629 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 4630 | - $arIp[] = $row[$oldCol]; |
|
| 4859 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 4860 | + $arIp[] = $row[$oldCol]; |
|
| 4861 | + } |
|
| 4631 | 4862 | $smcFunc['db_free_result']($request); |
| 4632 | 4863 | |
| 4633 | 4864 | // Special case, null ip could keep us in a loop. |
| 4634 | - if (is_null($arIp[0])) |
|
| 4635 | - unset($arIp[0]); |
|
| 4865 | + if (is_null($arIp[0])) { |
|
| 4866 | + unset($arIp[0]); |
|
| 4867 | + } |
|
| 4636 | 4868 | |
| 4637 | - if (empty($arIp)) |
|
| 4638 | - $is_done = true; |
|
| 4869 | + if (empty($arIp)) { |
|
| 4870 | + $is_done = true; |
|
| 4871 | + } |
|
| 4639 | 4872 | |
| 4640 | 4873 | $updates = array(); |
| 4641 | 4874 | $cases = array(); |
@@ -4644,16 +4877,18 @@ discard block |
||
| 4644 | 4877 | { |
| 4645 | 4878 | $arIp[$i] = trim($arIp[$i]); |
| 4646 | 4879 | |
| 4647 | - if (empty($arIp[$i])) |
|
| 4648 | - continue; |
|
| 4880 | + if (empty($arIp[$i])) { |
|
| 4881 | + continue; |
|
| 4882 | + } |
|
| 4649 | 4883 | |
| 4650 | 4884 | $updates['ip' . $i] = $arIp[$i]; |
| 4651 | 4885 | $cases[$arIp[$i]] = 'WHEN ' . $oldCol . ' = {string:ip' . $i . '} THEN {inet:ip' . $i . '}'; |
| 4652 | 4886 | |
| 4653 | 4887 | if ($setSize > 0 && $i % $setSize === 0) |
| 4654 | 4888 | { |
| 4655 | - if (count($updates) == 1) |
|
| 4656 | - continue; |
|
| 4889 | + if (count($updates) == 1) { |
|
| 4890 | + continue; |
|
| 4891 | + } |
|
| 4657 | 4892 | |
| 4658 | 4893 | $updates['whereSet'] = array_values($updates); |
| 4659 | 4894 | $smcFunc['db_query']('', ' |
@@ -4687,8 +4922,7 @@ discard block |
||
| 4687 | 4922 | 'ip' => $ip |
| 4688 | 4923 | )); |
| 4689 | 4924 | } |
| 4690 | - } |
|
| 4691 | - else |
|
| 4925 | + } else |
|
| 4692 | 4926 | { |
| 4693 | 4927 | $updates['whereSet'] = array_values($updates); |
| 4694 | 4928 | $smcFunc['db_query']('', ' |
@@ -4702,9 +4936,9 @@ discard block |
||
| 4702 | 4936 | $updates |
| 4703 | 4937 | ); |
| 4704 | 4938 | } |
| 4939 | + } else { |
|
| 4940 | + $is_done = true; |
|
| 4705 | 4941 | } |
| 4706 | - else |
|
| 4707 | - $is_done = true; |
|
| 4708 | 4942 | |
| 4709 | 4943 | $_GET['a'] += $limit; |
| 4710 | 4944 | $step_progress['current'] = $_GET['a']; |
@@ -4730,10 +4964,11 @@ discard block |
||
| 4730 | 4964 | |
| 4731 | 4965 | $columns = $smcFunc['db_list_columns']($targetTable, true); |
| 4732 | 4966 | |
| 4733 | - if (isset($columns[$column])) |
|
| 4734 | - return $columns[$column]; |
|
| 4735 | - else |
|
| 4736 | - return null; |
|
| 4737 | -} |
|
| 4967 | + if (isset($columns[$column])) { |
|
| 4968 | + return $columns[$column]; |
|
| 4969 | + } else { |
|
| 4970 | + return null; |
|
| 4971 | + } |
|
| 4972 | + } |
|
| 4738 | 4973 | |
| 4739 | 4974 | ?> |
| 4740 | 4975 | \ No newline at end of file |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Class Likes |
@@ -106,8 +107,9 @@ discard block |
||
| 106 | 107 | $this->_extra = isset($_GET['extra']) ? $_GET['extra'] : false; |
| 107 | 108 | |
| 108 | 109 | // We do not want to output debug information here. |
| 109 | - if ($this->_js) |
|
| 110 | - $db_show_debug = false; |
|
| 110 | + if ($this->_js) { |
|
| 111 | + $db_show_debug = false; |
|
| 112 | + } |
|
| 111 | 113 | } |
| 112 | 114 | |
| 113 | 115 | /** |
@@ -141,8 +143,9 @@ discard block |
||
| 141 | 143 | $call = $this->_sa; |
| 142 | 144 | |
| 143 | 145 | // Guest can only view likes. |
| 144 | - if ($call != 'view') |
|
| 145 | - is_not_guest(); |
|
| 146 | + if ($call != 'view') { |
|
| 147 | + is_not_guest(); |
|
| 148 | + } |
|
| 146 | 149 | |
| 147 | 150 | checkSession('get'); |
| 148 | 151 | |
@@ -180,15 +183,17 @@ discard block |
||
| 180 | 183 | global $smcFunc, $modSettings; |
| 181 | 184 | |
| 182 | 185 | // This feature is currently disable. |
| 183 | - if (empty($modSettings['enable_likes'])) |
|
| 184 | - return $this->_error = 'like_disable'; |
|
| 186 | + if (empty($modSettings['enable_likes'])) { |
|
| 187 | + return $this->_error = 'like_disable'; |
|
| 188 | + } |
|
| 185 | 189 | |
| 186 | 190 | // Zerothly, they did indicate some kind of content to like, right? |
| 187 | 191 | preg_match('~^([a-z0-9\-\_]{1,6})~i', $this->_type, $matches); |
| 188 | 192 | $this->_type = isset($matches[1]) ? $matches[1] : ''; |
| 189 | 193 | |
| 190 | - if ($this->_type == '' || $this->_content <= 0) |
|
| 191 | - return $this->_error = 'cannot_'; |
|
| 194 | + if ($this->_type == '' || $this->_content <= 0) { |
|
| 195 | + return $this->_error = 'cannot_'; |
|
| 196 | + } |
|
| 192 | 197 | |
| 193 | 198 | // First we need to verify if the user can see the type of content or not. This is set up to be extensible, |
| 194 | 199 | // so we'll check for the one type we do know about, and if it's not that, we'll defer to any hooks. |
@@ -207,12 +212,14 @@ discard block |
||
| 207 | 212 | 'msg' => $this->_content, |
| 208 | 213 | ) |
| 209 | 214 | ); |
| 210 | - if ($smcFunc['db_num_rows']($request) == 1) |
|
| 211 | - list ($this->_idTopic, $topicOwner) = $smcFunc['db_fetch_row']($request); |
|
| 215 | + if ($smcFunc['db_num_rows']($request) == 1) { |
|
| 216 | + list ($this->_idTopic, $topicOwner) = $smcFunc['db_fetch_row']($request); |
|
| 217 | + } |
|
| 212 | 218 | |
| 213 | 219 | $smcFunc['db_free_result']($request); |
| 214 | - if (empty($this->_idTopic)) |
|
| 215 | - return $this->_error = 'cannot_'; |
|
| 220 | + if (empty($this->_idTopic)) { |
|
| 221 | + return $this->_error = 'cannot_'; |
|
| 222 | + } |
|
| 216 | 223 | |
| 217 | 224 | // So we know what topic it's in and more importantly we know the user can see it. |
| 218 | 225 | // If we're not viewing, we need some info set up. |
@@ -221,9 +228,7 @@ discard block |
||
| 221 | 228 | $this->_validLikes['redirect'] = 'topic=' . $this->_idTopic . '.msg' . $this->_content . '#msg' . $this->_content; |
| 222 | 229 | |
| 223 | 230 | $this->_validLikes['can_like'] = ($this->_user['id'] == $topicOwner ? 'cannot_like_content' : (allowedTo('likes_like') ? true : 'cannot_like_content')); |
| 224 | - } |
|
| 225 | - |
|
| 226 | - else |
|
| 231 | + } else |
|
| 227 | 232 | { |
| 228 | 233 | // Modders: This will give you whatever the user offers up in terms of liking, e.g. $this->_type=msg, $this->_content=1 |
| 229 | 234 | // When you hook this, check $this->_type first. If it is not something your mod worries about, return false. |
@@ -241,8 +246,9 @@ discard block |
||
| 241 | 246 | if ($result !== false) |
| 242 | 247 | { |
| 243 | 248 | // Match the type with what we already have. |
| 244 | - if (!isset($result['type']) || $result['type'] != $this->_type) |
|
| 245 | - return $this->_error = 'not_valid_like_type'; |
|
| 249 | + if (!isset($result['type']) || $result['type'] != $this->_type) { |
|
| 250 | + return $this->_error = 'not_valid_like_type'; |
|
| 251 | + } |
|
| 246 | 252 | |
| 247 | 253 | // Fill out the rest. |
| 248 | 254 | $this->_type = $result['type']; |
@@ -253,13 +259,15 @@ discard block |
||
| 253 | 259 | } |
| 254 | 260 | } |
| 255 | 261 | |
| 256 | - if (!$found) |
|
| 257 | - return $this->_error = 'cannot_'; |
|
| 262 | + if (!$found) { |
|
| 263 | + return $this->_error = 'cannot_'; |
|
| 264 | + } |
|
| 258 | 265 | } |
| 259 | 266 | |
| 260 | 267 | // Does the user can like this? Viewing a list of likes doesn't require this permission. |
| 261 | - if ($this->_sa != 'view' && isset($this->_validLikes['can_like']) && is_string($this->_validLikes['can_like'])) |
|
| 262 | - return $this->_error = $this->_validLikes['can_like']; |
|
| 268 | + if ($this->_sa != 'view' && isset($this->_validLikes['can_like']) && is_string($this->_validLikes['can_like'])) { |
|
| 269 | + return $this->_error = $this->_validLikes['can_like']; |
|
| 270 | + } |
|
| 263 | 271 | } |
| 264 | 272 | |
| 265 | 273 | /** |
@@ -284,8 +292,9 @@ discard block |
||
| 284 | 292 | ); |
| 285 | 293 | |
| 286 | 294 | // Are we calling this directly? if so, set a proper data for the response. Do note that __METHOD__ returns both the class name and the function name. |
| 287 | - if ($this->_sa == __FUNCTION__) |
|
| 288 | - $this->_data = __FUNCTION__; |
|
| 295 | + if ($this->_sa == __FUNCTION__) { |
|
| 296 | + $this->_data = __FUNCTION__; |
|
| 297 | + } |
|
| 289 | 298 | } |
| 290 | 299 | |
| 291 | 300 | /** |
@@ -315,8 +324,8 @@ discard block |
||
| 315 | 324 | |
| 316 | 325 | // Add a background task to process sending alerts. |
| 317 | 326 | // Mod author, you can add your own background task for your own custom like event using the "integrate_issue_like" hook or your callback, both are immediately called after this. |
| 318 | - if ($this->_type == 'msg') |
|
| 319 | - $smcFunc['db_insert']('insert', |
|
| 327 | + if ($this->_type == 'msg') { |
|
| 328 | + $smcFunc['db_insert']('insert', |
|
| 320 | 329 | '{db_prefix}background_tasks', |
| 321 | 330 | array('task_file' => 'string', 'task_class' => 'string', 'task_data' => 'string', 'claimed_time' => 'int'), |
| 322 | 331 | array('$sourcedir/tasks/Likes-Notify.php', 'Likes_Notify_Background', $smcFunc['json_encode'](array( |
@@ -328,10 +337,12 @@ discard block |
||
| 328 | 337 | )), 0), |
| 329 | 338 | array('id_task') |
| 330 | 339 | ); |
| 340 | + } |
|
| 331 | 341 | |
| 332 | 342 | // Are we calling this directly? if so, set a proper data for the response. Do note that __METHOD__ returns both the class name and the function name. |
| 333 | - if ($this->_sa == __FUNCTION__) |
|
| 334 | - $this->_data = __FUNCTION__; |
|
| 343 | + if ($this->_sa == __FUNCTION__) { |
|
| 344 | + $this->_data = __FUNCTION__; |
|
| 345 | + } |
|
| 335 | 346 | } |
| 336 | 347 | |
| 337 | 348 | /** |
@@ -357,8 +368,9 @@ discard block |
||
| 357 | 368 | $smcFunc['db_free_result']($request); |
| 358 | 369 | |
| 359 | 370 | // If you want to call this directly, fill out _data property too. |
| 360 | - if ($this->_sa == __FUNCTION__) |
|
| 361 | - $this->_data = $this->_numLikes; |
|
| 371 | + if ($this->_sa == __FUNCTION__) { |
|
| 372 | + $this->_data = $this->_numLikes; |
|
| 373 | + } |
|
| 362 | 374 | } |
| 363 | 375 | |
| 364 | 376 | /** |
@@ -371,8 +383,9 @@ discard block |
||
| 371 | 383 | global $smcFunc; |
| 372 | 384 | |
| 373 | 385 | // Safety first! |
| 374 | - if (empty($this->_type) || empty($this->_content)) |
|
| 375 | - return $this->_error = 'cannot_'; |
|
| 386 | + if (empty($this->_type) || empty($this->_content)) { |
|
| 387 | + return $this->_error = 'cannot_'; |
|
| 388 | + } |
|
| 376 | 389 | |
| 377 | 390 | // Do we already like this? |
| 378 | 391 | $request = $smcFunc['db_query']('', ' |
@@ -390,26 +403,28 @@ discard block |
||
| 390 | 403 | $this->_alreadyLiked = (bool) $smcFunc['db_num_rows']($request) != 0; |
| 391 | 404 | $smcFunc['db_free_result']($request); |
| 392 | 405 | |
| 393 | - if ($this->_alreadyLiked) |
|
| 394 | - $this->delete(); |
|
| 395 | - |
|
| 396 | - else |
|
| 397 | - $this->insert(); |
|
| 406 | + if ($this->_alreadyLiked) { |
|
| 407 | + $this->delete(); |
|
| 408 | + } else { |
|
| 409 | + $this->insert(); |
|
| 410 | + } |
|
| 398 | 411 | |
| 399 | 412 | // Now, how many people like this content now? We *could* just +1 / -1 the relevant container but that has proven to become unstable. |
| 400 | 413 | $this->_count(); |
| 401 | 414 | |
| 402 | 415 | // Update the likes count for messages. |
| 403 | - if ($this->_type == 'msg') |
|
| 404 | - $this->msgIssueLike(); |
|
| 416 | + if ($this->_type == 'msg') { |
|
| 417 | + $this->msgIssueLike(); |
|
| 418 | + } |
|
| 405 | 419 | |
| 406 | 420 | // Any callbacks? |
| 407 | 421 | elseif (!empty($this->_validLikes['callback'])) |
| 408 | 422 | { |
| 409 | 423 | $call = call_helper($this->_validLikes['callback'], true); |
| 410 | 424 | |
| 411 | - if (!empty($call)) |
|
| 412 | - call_user_func_array($call, array($this)); |
|
| 425 | + if (!empty($call)) { |
|
| 426 | + call_user_func_array($call, array($this)); |
|
| 427 | + } |
|
| 413 | 428 | } |
| 414 | 429 | |
| 415 | 430 | // Sometimes there might be other things that need updating after we do this like. |
@@ -418,8 +433,9 @@ discard block |
||
| 418 | 433 | // Now some clean up. This is provided here for any like handlers that want to do any cache flushing. |
| 419 | 434 | // This way a like handler doesn't need to explicitly declare anything in integrate_issue_like, but do so |
| 420 | 435 | // in integrate_valid_likes where it absolutely has to exist. |
| 421 | - if (!empty($this->_validLikes['flush_cache'])) |
|
| 422 | - cache_put_data($this->_validLikes['flush_cache'], null); |
|
| 436 | + if (!empty($this->_validLikes['flush_cache'])) { |
|
| 437 | + cache_put_data($this->_validLikes['flush_cache'], null); |
|
| 438 | + } |
|
| 423 | 439 | |
| 424 | 440 | // All done, start building the data to pass as response. |
| 425 | 441 | $this->_data = array( |
@@ -442,8 +458,9 @@ discard block |
||
| 442 | 458 | { |
| 443 | 459 | global $smcFunc; |
| 444 | 460 | |
| 445 | - if ($this->_type !== 'msg') |
|
| 446 | - return; |
|
| 461 | + if ($this->_type !== 'msg') { |
|
| 462 | + return; |
|
| 463 | + } |
|
| 447 | 464 | |
| 448 | 465 | $smcFunc['db_query']('', ' |
| 449 | 466 | UPDATE {db_prefix}messages |
@@ -484,8 +501,9 @@ discard block |
||
| 484 | 501 | 'like_type' => $this->_type, |
| 485 | 502 | ) |
| 486 | 503 | ); |
| 487 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 488 | - $context['likers'][$row['id_member']] = array('timestamp' => $row['like_time']); |
|
| 504 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 505 | + $context['likers'][$row['id_member']] = array('timestamp' => $row['like_time']); |
|
| 506 | + } |
|
| 489 | 507 | |
| 490 | 508 | // Now to get member data, including avatars and so on. |
| 491 | 509 | $members = array_keys($context['likers']); |
@@ -493,8 +511,9 @@ discard block |
||
| 493 | 511 | if (count($loaded) != count($members)) |
| 494 | 512 | { |
| 495 | 513 | $members = array_diff($members, $loaded); |
| 496 | - foreach ($members as $not_loaded) |
|
| 497 | - unset ($context['likers'][$not_loaded]); |
|
| 514 | + foreach ($members as $not_loaded) { |
|
| 515 | + unset ($context['likers'][$not_loaded]); |
|
| 516 | + } |
|
| 498 | 517 | } |
| 499 | 518 | |
| 500 | 519 | foreach ($context['likers'] as $liker => $dummy) |
@@ -536,12 +555,14 @@ discard block |
||
| 536 | 555 | global $context, $txt; |
| 537 | 556 | |
| 538 | 557 | // Don't do anything if someone else has already take care of the response. |
| 539 | - if (!$this->_setResponse) |
|
| 540 | - return; |
|
| 558 | + if (!$this->_setResponse) { |
|
| 559 | + return; |
|
| 560 | + } |
|
| 541 | 561 | |
| 542 | 562 | // Want a json response huh? |
| 543 | - if ($this->_validLikes['json']) |
|
| 544 | - return $this->jsonResponse(); |
|
| 563 | + if ($this->_validLikes['json']) { |
|
| 564 | + return $this->jsonResponse(); |
|
| 565 | + } |
|
| 545 | 566 | |
| 546 | 567 | // Set everything up for display. |
| 547 | 568 | loadTemplate('Likes'); |
@@ -551,8 +572,9 @@ discard block |
||
| 551 | 572 | if ($this->_error) |
| 552 | 573 | { |
| 553 | 574 | // If this is a generic error, set it up good. |
| 554 | - if ($this->_error == 'cannot_') |
|
| 555 | - $this->_error = $this->_sa == 'view' ? 'cannot_view_likes' : 'cannot_like_content'; |
|
| 575 | + if ($this->_error == 'cannot_') { |
|
| 576 | + $this->_error = $this->_sa == 'view' ? 'cannot_view_likes' : 'cannot_like_content'; |
|
| 577 | + } |
|
| 556 | 578 | |
| 557 | 579 | // Is this request coming from an ajax call? |
| 558 | 580 | if ($this->_js) |
@@ -562,8 +584,9 @@ discard block |
||
| 562 | 584 | } |
| 563 | 585 | |
| 564 | 586 | // Nope? then just do a redirect to whatever URL was provided. |
| 565 | - else |
|
| 566 | - redirectexit(!empty($this->_validLikes['redirect']) ? $this->_validLikes['redirect'] . ';error=' . $this->_error : ''); |
|
| 587 | + else { |
|
| 588 | + redirectexit(!empty($this->_validLikes['redirect']) ? $this->_validLikes['redirect'] . ';error=' . $this->_error : ''); |
|
| 589 | + } |
|
| 567 | 590 | |
| 568 | 591 | return; |
| 569 | 592 | } |
@@ -572,8 +595,9 @@ discard block |
||
| 572 | 595 | else |
| 573 | 596 | { |
| 574 | 597 | // Not an ajax request so send the user back to the previous location or the main page. |
| 575 | - if (!$this->_js) |
|
| 576 | - redirectexit(!empty($this->_validLikes['redirect']) ? $this->_validLikes['redirect'] : ''); |
|
| 598 | + if (!$this->_js) { |
|
| 599 | + redirectexit(!empty($this->_validLikes['redirect']) ? $this->_validLikes['redirect'] : ''); |
|
| 600 | + } |
|
| 577 | 601 | |
| 578 | 602 | // These fine gentlemen all share the same template. |
| 579 | 603 | $generic = array('delete', 'insert', '_count'); |
@@ -606,8 +630,9 @@ discard block |
||
| 606 | 630 | // If there is an error, send it. |
| 607 | 631 | if ($this->_error) |
| 608 | 632 | { |
| 609 | - if ($this->_error == 'cannot_') |
|
| 610 | - $this->_error = $this->_sa == 'view' ? 'cannot_view_likes' : 'cannot_like_content'; |
|
| 633 | + if ($this->_error == 'cannot_') { |
|
| 634 | + $this->_error = $this->_sa == 'view' ? 'cannot_view_likes' : 'cannot_like_content'; |
|
| 635 | + } |
|
| 611 | 636 | |
| 612 | 637 | $print['error'] = $this->_error; |
| 613 | 638 | } |
@@ -643,33 +668,36 @@ discard block |
||
| 643 | 668 | <body style="background-color: #444455; color: white; font-style: italic; font-family: serif;"> |
| 644 | 669 | <div style="margin-top: 12%; font-size: 1.1em; line-height: 1.4; text-align: center;">'; |
| 645 | 670 | |
| 646 | - if (!isset($_GET['verse']) || ($_GET['verse'] != '2:18' && $_GET['verse'] != '22:1-2')) |
|
| 647 | - $_GET['verse'] = '4:16'; |
|
| 671 | + if (!isset($_GET['verse']) || ($_GET['verse'] != '2:18' && $_GET['verse'] != '22:1-2')) { |
|
| 672 | + $_GET['verse'] = '4:16'; |
|
| 673 | + } |
|
| 648 | 674 | |
| 649 | - if ($_GET['verse'] == '2:18') |
|
| 650 | - echo ' |
|
| 675 | + if ($_GET['verse'] == '2:18') { |
|
| 676 | + echo ' |
|
| 651 | 677 | Woe, it was that his name wasn\'t <em>known</em>, that he came in mystery, and was recognized by none. And it became to be in those days <em>something</em>. Something not yet <em id="unknown" name="[Unknown]">unknown</em> to mankind. And thus what was to be known the <em>secret project</em> began into its existence. Henceforth the opposition was only <em>weary</em> and <em>fearful</em>, for now their match was at arms against them.'; |
| 652 | - elseif ($_GET['verse'] == '4:16') |
|
| 653 | - echo ' |
|
| 678 | + } elseif ($_GET['verse'] == '4:16') { |
|
| 679 | + echo ' |
|
| 654 | 680 | And it came to pass that the <em>unbelievers</em> dwindled in number and saw rise of many <em>proselytizers</em>, and the opposition found fear in the face of the <em>x</em> and the <em>j</em> while those who stood with the <em>something</em> grew stronger and came together. Still, this was only the <em>beginning</em>, and what lay in the future was <em id="unknown" name="[Unknown]">unknown</em> to all, even those on the right side.'; |
| 655 | - elseif ($_GET['verse'] == '22:1-2') |
|
| 656 | - echo ' |
|
| 681 | + } elseif ($_GET['verse'] == '22:1-2') { |
|
| 682 | + echo ' |
|
| 657 | 683 | <p>Now <em>behold</em>, that which was once the secret project was <em id="unknown" name="[Unknown]">unknown</em> no longer. Alas, it needed more than <em>only one</em>, but yet even thought otherwise. It became that the opposition <em>rumored</em> and lied, but still to no avail. Their match, though not <em>perfect</em>, had them outdone.</p> |
| 658 | 684 | <p style="margin: 2ex 1ex 0 1ex; font-size: 1.05em; line-height: 1.5; text-align: center;">Let it continue. <em>The end</em>.</p>'; |
| 685 | + } |
|
| 659 | 686 | |
| 660 | 687 | echo ' |
| 661 | 688 | </div> |
| 662 | 689 | <div style="margin-top: 2ex; font-size: 2em; text-align: right;">'; |
| 663 | 690 | |
| 664 | - if ($_GET['verse'] == '2:18') |
|
| 665 | - echo ' |
|
| 691 | + if ($_GET['verse'] == '2:18') { |
|
| 692 | + echo ' |
|
| 666 | 693 | from <span style="font-family: Georgia, serif;"><strong><a href="', $scripturl, '?action=about:unknown;verse=4:16" style="color: white; text-decoration: none; cursor: text;">The Book of Unknown</a></strong>, 2:18</span>'; |
| 667 | - elseif ($_GET['verse'] == '4:16') |
|
| 668 | - echo ' |
|
| 694 | + } elseif ($_GET['verse'] == '4:16') { |
|
| 695 | + echo ' |
|
| 669 | 696 | from <span style="font-family: Georgia, serif;"><strong><a href="', $scripturl, '?action=about:unknown;verse=22:1-2" style="color: white; text-decoration: none; cursor: text;">The Book of Unknown</a></strong>, 4:16</span>'; |
| 670 | - elseif ($_GET['verse'] == '22:1-2') |
|
| 671 | - echo ' |
|
| 697 | + } elseif ($_GET['verse'] == '22:1-2') { |
|
| 698 | + echo ' |
|
| 672 | 699 | from <span style="font-family: Georgia, serif;"><strong>The Book of Unknown</strong>, 22:1-2</span>'; |
| 700 | + } |
|
| 673 | 701 | |
| 674 | 702 | echo ' |
| 675 | 703 | </div> |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Get all birthdays within the given time range. |
@@ -60,8 +61,7 @@ discard block |
||
| 60 | 61 | 'max_year' => $year_high, |
| 61 | 62 | ) |
| 62 | 63 | ); |
| 63 | - } |
|
| 64 | - else |
|
| 64 | + } else |
|
| 65 | 65 | { |
| 66 | 66 | $result = $smcFunc['db_query']('birthday_array', ' |
| 67 | 67 | SELECT id_member, real_name, YEAR(birthdate) AS birth_year, birthdate |
@@ -91,10 +91,11 @@ discard block |
||
| 91 | 91 | $bday = array(); |
| 92 | 92 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 93 | 93 | { |
| 94 | - if ($year_low != $year_high) |
|
| 95 | - $age_year = substr($row['birthdate'], 5) < substr($high_date, 5) ? $year_high : $year_low; |
|
| 96 | - else |
|
| 97 | - $age_year = $year_low; |
|
| 94 | + if ($year_low != $year_high) { |
|
| 95 | + $age_year = substr($row['birthdate'], 5) < substr($high_date, 5) ? $year_high : $year_low; |
|
| 96 | + } else { |
|
| 97 | + $age_year = $year_low; |
|
| 98 | + } |
|
| 98 | 99 | |
| 99 | 100 | $bday[$age_year . substr($row['birthdate'], 4)][] = array( |
| 100 | 101 | 'id' => $row['id_member'], |
@@ -108,8 +109,9 @@ discard block |
||
| 108 | 109 | ksort($bday); |
| 109 | 110 | |
| 110 | 111 | // Set is_last, so the themes know when to stop placing separators. |
| 111 | - foreach ($bday as $mday => $array) |
|
| 112 | - $bday[$mday][count($array) - 1]['is_last'] = true; |
|
| 112 | + foreach ($bday as $mday => $array) { |
|
| 113 | + $bday[$mday][count($array) - 1]['is_last'] = true; |
|
| 114 | + } |
|
| 113 | 115 | |
| 114 | 116 | return $bday; |
| 115 | 117 | } |
@@ -133,8 +135,9 @@ discard block |
||
| 133 | 135 | static $timezone_array = array(); |
| 134 | 136 | require_once($sourcedir . '/Subs.php'); |
| 135 | 137 | |
| 136 | - if (empty($timezone_array['default'])) |
|
| 137 | - $timezone_array['default'] = timezone_open(date_default_timezone_get()); |
|
| 138 | + if (empty($timezone_array['default'])) { |
|
| 139 | + $timezone_array['default'] = timezone_open(date_default_timezone_get()); |
|
| 140 | + } |
|
| 138 | 141 | |
| 139 | 142 | $low_object = date_create($low_date); |
| 140 | 143 | $high_object = date_create($high_date); |
@@ -161,8 +164,9 @@ discard block |
||
| 161 | 164 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 162 | 165 | { |
| 163 | 166 | // If the attached topic is not approved then for the moment pretend it doesn't exist |
| 164 | - if (!empty($row['id_first_msg']) && $modSettings['postmod_active'] && !$row['approved']) |
|
| 165 | - continue; |
|
| 167 | + if (!empty($row['id_first_msg']) && $modSettings['postmod_active'] && !$row['approved']) { |
|
| 168 | + continue; |
|
| 169 | + } |
|
| 166 | 170 | |
| 167 | 171 | // Force a censor of the title - as often these are used by others. |
| 168 | 172 | censorText($row['title'], $use_permissions ? false : true); |
@@ -170,12 +174,14 @@ discard block |
||
| 170 | 174 | // Get the various time and date properties for this event |
| 171 | 175 | list($start, $end, $allday, $span, $tz, $tz_abbrev) = buildEventDatetimes($row); |
| 172 | 176 | |
| 173 | - if (empty($timezone_array[$tz])) |
|
| 174 | - $timezone_array[$tz] = timezone_open($tz); |
|
| 177 | + if (empty($timezone_array[$tz])) { |
|
| 178 | + $timezone_array[$tz] = timezone_open($tz); |
|
| 179 | + } |
|
| 175 | 180 | |
| 176 | 181 | // Sanity check |
| 177 | - if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) |
|
| 178 | - continue; |
|
| 182 | + if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) { |
|
| 183 | + continue; |
|
| 184 | + } |
|
| 179 | 185 | |
| 180 | 186 | // Get set up for the loop |
| 181 | 187 | $start_object = date_create($row['start_date'] . (!$allday ? ' ' . $row['start_time'] : ''), $timezone_array[$tz]); |
@@ -239,8 +245,8 @@ discard block |
||
| 239 | 245 | ); |
| 240 | 246 | |
| 241 | 247 | // If we're using permissions (calendar pages?) then just ouput normal contextual style information. |
| 242 | - if ($use_permissions) |
|
| 243 | - $events[date_format($cal_date, 'Y-m-d')][] = array_merge($eventProperties, array( |
|
| 248 | + if ($use_permissions) { |
|
| 249 | + $events[date_format($cal_date, 'Y-m-d')][] = array_merge($eventProperties, array( |
|
| 244 | 250 | 'href' => $row['id_board'] == 0 ? '' : $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 245 | 251 | 'link' => $row['id_board'] == 0 ? $row['title'] : '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['title'] . '</a>', |
| 246 | 252 | 'can_edit' => allowedTo('calendar_edit_any') || ($row['id_member'] == $user_info['id'] && allowedTo('calendar_edit_own')), |
@@ -248,9 +254,10 @@ discard block |
||
| 248 | 254 | 'can_export' => !empty($modSettings['cal_export']) ? true : false, |
| 249 | 255 | 'export_href' => $scripturl . '?action=calendar;sa=ical;eventid=' . $row['id_event'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
| 250 | 256 | )); |
| 257 | + } |
|
| 251 | 258 | // Otherwise, this is going to be cached and the VIEWER'S permissions should apply... just put together some info. |
| 252 | - else |
|
| 253 | - $events[date_format($cal_date, 'Y-m-d')][] = array_merge($eventProperties, array( |
|
| 259 | + else { |
|
| 260 | + $events[date_format($cal_date, 'Y-m-d')][] = array_merge($eventProperties, array( |
|
| 254 | 261 | 'href' => $row['id_topic'] == 0 ? '' : $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 255 | 262 | 'link' => $row['id_topic'] == 0 ? $row['title'] : '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['title'] . '</a>', |
| 256 | 263 | 'can_edit' => false, |
@@ -260,6 +267,7 @@ discard block |
||
| 260 | 267 | 'poster' => $row['id_member'], |
| 261 | 268 | 'allowed_groups' => explode(',', $row['member_groups']), |
| 262 | 269 | )); |
| 270 | + } |
|
| 263 | 271 | |
| 264 | 272 | date_add($cal_date, date_interval_create_from_date_string('1 day')); |
| 265 | 273 | } |
@@ -269,8 +277,9 @@ discard block |
||
| 269 | 277 | // If we're doing normal contextual data, go through and make things clear to the templates ;). |
| 270 | 278 | if ($use_permissions) |
| 271 | 279 | { |
| 272 | - foreach ($events as $mday => $array) |
|
| 273 | - $events[$mday][count($array) - 1]['is_last'] = true; |
|
| 280 | + foreach ($events as $mday => $array) { |
|
| 281 | + $events[$mday][count($array) - 1]['is_last'] = true; |
|
| 282 | + } |
|
| 274 | 283 | } |
| 275 | 284 | |
| 276 | 285 | ksort($events); |
@@ -290,11 +299,12 @@ discard block |
||
| 290 | 299 | global $smcFunc; |
| 291 | 300 | |
| 292 | 301 | // Get the lowest and highest dates for "all years". |
| 293 | - if (substr($low_date, 0, 4) != substr($high_date, 0, 4)) |
|
| 294 | - $allyear_part = 'event_date BETWEEN {date:all_year_low} AND {date:all_year_dec} |
|
| 302 | + if (substr($low_date, 0, 4) != substr($high_date, 0, 4)) { |
|
| 303 | + $allyear_part = 'event_date BETWEEN {date:all_year_low} AND {date:all_year_dec} |
|
| 295 | 304 | OR event_date BETWEEN {date:all_year_jan} AND {date:all_year_high}'; |
| 296 | - else |
|
| 297 | - $allyear_part = 'event_date BETWEEN {date:all_year_low} AND {date:all_year_high}'; |
|
| 305 | + } else { |
|
| 306 | + $allyear_part = 'event_date BETWEEN {date:all_year_low} AND {date:all_year_high}'; |
|
| 307 | + } |
|
| 298 | 308 | |
| 299 | 309 | // Find some holidays... ;). |
| 300 | 310 | $result = $smcFunc['db_query']('', ' |
@@ -314,10 +324,11 @@ discard block |
||
| 314 | 324 | $holidays = array(); |
| 315 | 325 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 316 | 326 | { |
| 317 | - if (substr($low_date, 0, 4) != substr($high_date, 0, 4)) |
|
| 318 | - $event_year = substr($row['event_date'], 5) < substr($high_date, 5) ? substr($high_date, 0, 4) : substr($low_date, 0, 4); |
|
| 319 | - else |
|
| 320 | - $event_year = substr($low_date, 0, 4); |
|
| 327 | + if (substr($low_date, 0, 4) != substr($high_date, 0, 4)) { |
|
| 328 | + $event_year = substr($row['event_date'], 5) < substr($high_date, 5) ? substr($high_date, 0, 4) : substr($low_date, 0, 4); |
|
| 329 | + } else { |
|
| 330 | + $event_year = substr($low_date, 0, 4); |
|
| 331 | + } |
|
| 321 | 332 | |
| 322 | 333 | $holidays[$event_year . substr($row['event_date'], 4)][] = $row['title']; |
| 323 | 334 | } |
@@ -343,10 +354,12 @@ discard block |
||
| 343 | 354 | isAllowedTo('calendar_post'); |
| 344 | 355 | |
| 345 | 356 | // No board? No topic?!? |
| 346 | - if (empty($board)) |
|
| 347 | - fatal_lang_error('missing_board_id', false); |
|
| 348 | - if (empty($topic)) |
|
| 349 | - fatal_lang_error('missing_topic_id', false); |
|
| 357 | + if (empty($board)) { |
|
| 358 | + fatal_lang_error('missing_board_id', false); |
|
| 359 | + } |
|
| 360 | + if (empty($topic)) { |
|
| 361 | + fatal_lang_error('missing_topic_id', false); |
|
| 362 | + } |
|
| 350 | 363 | |
| 351 | 364 | // Administrator, Moderator, or owner. Period. |
| 352 | 365 | if (!allowedTo('admin_forum') && !allowedTo('moderate_board')) |
@@ -364,12 +377,14 @@ discard block |
||
| 364 | 377 | if ($row = $smcFunc['db_fetch_assoc']($result)) |
| 365 | 378 | { |
| 366 | 379 | // Not the owner of the topic. |
| 367 | - if ($row['id_member_started'] != $user_info['id']) |
|
| 368 | - fatal_lang_error('not_your_topic', 'user'); |
|
| 380 | + if ($row['id_member_started'] != $user_info['id']) { |
|
| 381 | + fatal_lang_error('not_your_topic', 'user'); |
|
| 382 | + } |
|
| 369 | 383 | } |
| 370 | 384 | // Topic/Board doesn't exist..... |
| 371 | - else |
|
| 372 | - fatal_lang_error('calendar_no_topic', 'general'); |
|
| 385 | + else { |
|
| 386 | + fatal_lang_error('calendar_no_topic', 'general'); |
|
| 387 | + } |
|
| 373 | 388 | $smcFunc['db_free_result']($result); |
| 374 | 389 | } |
| 375 | 390 | } |
@@ -457,14 +472,16 @@ discard block |
||
| 457 | 472 | if (!empty($calendarOptions['start_day'])) |
| 458 | 473 | { |
| 459 | 474 | $nShift -= $calendarOptions['start_day']; |
| 460 | - if ($nShift < 0) |
|
| 461 | - $nShift = 7 + $nShift; |
|
| 475 | + if ($nShift < 0) { |
|
| 476 | + $nShift = 7 + $nShift; |
|
| 477 | + } |
|
| 462 | 478 | } |
| 463 | 479 | |
| 464 | 480 | // Number of rows required to fit the month. |
| 465 | 481 | $nRows = floor(($month_info['last_day']['day_of_month'] + $nShift) / 7); |
| 466 | - if (($month_info['last_day']['day_of_month'] + $nShift) % 7) |
|
| 467 | - $nRows++; |
|
| 482 | + if (($month_info['last_day']['day_of_month'] + $nShift) % 7) { |
|
| 483 | + $nRows++; |
|
| 484 | + } |
|
| 468 | 485 | |
| 469 | 486 | // Fetch the arrays for birthdays, posted events, and holidays. |
| 470 | 487 | $bday = $calendarOptions['show_birthdays'] ? getBirthdayRange($month_info['first_day']['date'], $month_info['last_day']['date']) : array(); |
@@ -477,8 +494,9 @@ discard block |
||
| 477 | 494 | { |
| 478 | 495 | $calendarGrid['week_days'][] = $count; |
| 479 | 496 | $count++; |
| 480 | - if ($count == 7) |
|
| 481 | - $count = 0; |
|
| 497 | + if ($count == 7) { |
|
| 498 | + $count = 0; |
|
| 499 | + } |
|
| 482 | 500 | } |
| 483 | 501 | |
| 484 | 502 | // Iterate through each week. |
@@ -495,8 +513,9 @@ discard block |
||
| 495 | 513 | { |
| 496 | 514 | $nDay = ($nRow * 7) + $nCol - $nShift + 1; |
| 497 | 515 | |
| 498 | - if ($nDay < 1 || $nDay > $month_info['last_day']['day_of_month']) |
|
| 499 | - $nDay = 0; |
|
| 516 | + if ($nDay < 1 || $nDay > $month_info['last_day']['day_of_month']) { |
|
| 517 | + $nDay = 0; |
|
| 518 | + } |
|
| 500 | 519 | |
| 501 | 520 | $date = sprintf('%04d-%02d-%02d', $year, $month, $nDay); |
| 502 | 521 | |
@@ -514,8 +533,9 @@ discard block |
||
| 514 | 533 | } |
| 515 | 534 | |
| 516 | 535 | // What is the last day of the month? |
| 517 | - if ($is_previous === true) |
|
| 518 | - $calendarGrid['last_of_month'] = $month_info['last_day']['day_of_month']; |
|
| 536 | + if ($is_previous === true) { |
|
| 537 | + $calendarGrid['last_of_month'] = $month_info['last_day']['day_of_month']; |
|
| 538 | + } |
|
| 519 | 539 | |
| 520 | 540 | // We'll use the shift in the template. |
| 521 | 541 | $calendarGrid['shift'] = $nShift; |
@@ -549,8 +569,9 @@ discard block |
||
| 549 | 569 | { |
| 550 | 570 | // Here we offset accordingly to get things to the real start of a week. |
| 551 | 571 | $date_diff = $day_of_week - $calendarOptions['start_day']; |
| 552 | - if ($date_diff < 0) |
|
| 553 | - $date_diff += 7; |
|
| 572 | + if ($date_diff < 0) { |
|
| 573 | + $date_diff += 7; |
|
| 574 | + } |
|
| 554 | 575 | $new_timestamp = mktime(0, 0, 0, $month, $day, $year) - $date_diff * 86400; |
| 555 | 576 | $day = (int) strftime('%d', $new_timestamp); |
| 556 | 577 | $month = (int) strftime('%m', $new_timestamp); |
@@ -680,18 +701,20 @@ discard block |
||
| 680 | 701 | { |
| 681 | 702 | foreach ($date_events as $event_key => $event_val) |
| 682 | 703 | { |
| 683 | - if (in_array($event_val['id'], $temp)) |
|
| 684 | - unset($calendarGrid['events'][$date][$event_key]); |
|
| 685 | - else |
|
| 686 | - $temp[] = $event_val['id']; |
|
| 704 | + if (in_array($event_val['id'], $temp)) { |
|
| 705 | + unset($calendarGrid['events'][$date][$event_key]); |
|
| 706 | + } else { |
|
| 707 | + $temp[] = $event_val['id']; |
|
| 708 | + } |
|
| 687 | 709 | } |
| 688 | 710 | } |
| 689 | 711 | |
| 690 | 712 | // Give birthdays and holidays a friendly format, without the year |
| 691 | - if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) |
|
| 692 | - $date_format = '%b %d'; |
|
| 693 | - else |
|
| 694 | - $date_format = str_replace(array('%Y', '%y', '%G', '%g', '%C', '%c', '%D'), array('', '', '', '', '', '%b %d', '%m/%d'), $matches[0]); |
|
| 713 | + if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) { |
|
| 714 | + $date_format = '%b %d'; |
|
| 715 | + } else { |
|
| 716 | + $date_format = str_replace(array('%Y', '%y', '%G', '%g', '%C', '%c', '%D'), array('', '', '', '', '', '%b %d', '%m/%d'), $matches[0]); |
|
| 717 | + } |
|
| 695 | 718 | |
| 696 | 719 | foreach (array('birthdays', 'holidays') as $type) |
| 697 | 720 | { |
@@ -790,8 +813,9 @@ discard block |
||
| 790 | 813 | // Holidays between now and now + days. |
| 791 | 814 | for ($i = $now; $i < $now + $days_for_index; $i += 86400) |
| 792 | 815 | { |
| 793 | - if (isset($cached_data['holidays'][strftime('%Y-%m-%d', $i)])) |
|
| 794 | - $return_data['calendar_holidays'] = array_merge($return_data['calendar_holidays'], $cached_data['holidays'][strftime('%Y-%m-%d', $i)]); |
|
| 816 | + if (isset($cached_data['holidays'][strftime('%Y-%m-%d', $i)])) { |
|
| 817 | + $return_data['calendar_holidays'] = array_merge($return_data['calendar_holidays'], $cached_data['holidays'][strftime('%Y-%m-%d', $i)]); |
|
| 818 | + } |
|
| 795 | 819 | } |
| 796 | 820 | } |
| 797 | 821 | |
@@ -803,8 +827,9 @@ discard block |
||
| 803 | 827 | $loop_date = strftime('%Y-%m-%d', $i); |
| 804 | 828 | if (isset($cached_data['birthdays'][$loop_date])) |
| 805 | 829 | { |
| 806 | - foreach ($cached_data['birthdays'][$loop_date] as $index => $dummy) |
|
| 807 | - $cached_data['birthdays'][strftime('%Y-%m-%d', $i)][$index]['is_today'] = $loop_date === $today['date']; |
|
| 830 | + foreach ($cached_data['birthdays'][$loop_date] as $index => $dummy) { |
|
| 831 | + $cached_data['birthdays'][strftime('%Y-%m-%d', $i)][$index]['is_today'] = $loop_date === $today['date']; |
|
| 832 | + } |
|
| 808 | 833 | $return_data['calendar_birthdays'] = array_merge($return_data['calendar_birthdays'], $cached_data['birthdays'][$loop_date]); |
| 809 | 834 | } |
| 810 | 835 | } |
@@ -819,8 +844,9 @@ discard block |
||
| 819 | 844 | $loop_date = strftime('%Y-%m-%d', $i); |
| 820 | 845 | |
| 821 | 846 | // No events today? Check the next day. |
| 822 | - if (empty($cached_data['events'][$loop_date])) |
|
| 823 | - continue; |
|
| 847 | + if (empty($cached_data['events'][$loop_date])) { |
|
| 848 | + continue; |
|
| 849 | + } |
|
| 824 | 850 | |
| 825 | 851 | // Loop through all events to add a few last-minute values. |
| 826 | 852 | foreach ($cached_data['events'][$loop_date] as $ev => $event) |
@@ -833,9 +859,9 @@ discard block |
||
| 833 | 859 | { |
| 834 | 860 | unset($cached_data['events'][$loop_date][$ev]); |
| 835 | 861 | continue; |
| 862 | + } else { |
|
| 863 | + $duplicates[$this_event['topic'] . $this_event['title']] = true; |
|
| 836 | 864 | } |
| 837 | - else |
|
| 838 | - $duplicates[$this_event['topic'] . $this_event['title']] = true; |
|
| 839 | 865 | |
| 840 | 866 | // Might be set to true afterwards, depending on the permissions. |
| 841 | 867 | $this_event['can_edit'] = false; |
@@ -843,16 +869,19 @@ discard block |
||
| 843 | 869 | $this_event['date'] = $loop_date; |
| 844 | 870 | } |
| 845 | 871 | |
| 846 | - if (!empty($cached_data['events'][$loop_date])) |
|
| 847 | - $return_data['calendar_events'] = array_merge($return_data['calendar_events'], $cached_data['events'][$loop_date]); |
|
| 872 | + if (!empty($cached_data['events'][$loop_date])) { |
|
| 873 | + $return_data['calendar_events'] = array_merge($return_data['calendar_events'], $cached_data['events'][$loop_date]); |
|
| 874 | + } |
|
| 848 | 875 | } |
| 849 | 876 | } |
| 850 | 877 | |
| 851 | 878 | // Mark the last item so that a list separator can be used in the template. |
| 852 | - for ($i = 0, $n = count($return_data['calendar_birthdays']); $i < $n; $i++) |
|
| 853 | - $return_data['calendar_birthdays'][$i]['is_last'] = !isset($return_data['calendar_birthdays'][$i + 1]); |
|
| 854 | - for ($i = 0, $n = count($return_data['calendar_events']); $i < $n; $i++) |
|
| 855 | - $return_data['calendar_events'][$i]['is_last'] = !isset($return_data['calendar_events'][$i + 1]); |
|
| 879 | + for ($i = 0, $n = count($return_data['calendar_birthdays']); $i < $n; $i++) { |
|
| 880 | + $return_data['calendar_birthdays'][$i]['is_last'] = !isset($return_data['calendar_birthdays'][$i + 1]); |
|
| 881 | + } |
|
| 882 | + for ($i = 0, $n = count($return_data['calendar_events']); $i < $n; $i++) { |
|
| 883 | + $return_data['calendar_events'][$i]['is_last'] = !isset($return_data['calendar_events'][$i + 1]); |
|
| 884 | + } |
|
| 856 | 885 | |
| 857 | 886 | return array( |
| 858 | 887 | 'data' => $return_data, |
@@ -900,37 +929,46 @@ discard block |
||
| 900 | 929 | if (isset($_POST['start_date'])) |
| 901 | 930 | { |
| 902 | 931 | $d = date_parse($_POST['start_date']); |
| 903 | - if (!empty($d['error_count']) || !empty($d['warning_count'])) |
|
| 904 | - fatal_lang_error('invalid_date', false); |
|
| 905 | - if (empty($d['year'])) |
|
| 906 | - fatal_lang_error('event_year_missing', false); |
|
| 907 | - if (empty($d['month'])) |
|
| 908 | - fatal_lang_error('event_month_missing', false); |
|
| 909 | - } |
|
| 910 | - elseif (isset($_POST['start_datetime'])) |
|
| 932 | + if (!empty($d['error_count']) || !empty($d['warning_count'])) { |
|
| 933 | + fatal_lang_error('invalid_date', false); |
|
| 934 | + } |
|
| 935 | + if (empty($d['year'])) { |
|
| 936 | + fatal_lang_error('event_year_missing', false); |
|
| 937 | + } |
|
| 938 | + if (empty($d['month'])) { |
|
| 939 | + fatal_lang_error('event_month_missing', false); |
|
| 940 | + } |
|
| 941 | + } elseif (isset($_POST['start_datetime'])) |
|
| 911 | 942 | { |
| 912 | 943 | $d = date_parse($_POST['start_datetime']); |
| 913 | - if (!empty($d['error_count']) || !empty($d['warning_count'])) |
|
| 914 | - fatal_lang_error('invalid_date', false); |
|
| 915 | - if (empty($d['year'])) |
|
| 916 | - fatal_lang_error('event_year_missing', false); |
|
| 917 | - if (empty($d['month'])) |
|
| 918 | - fatal_lang_error('event_month_missing', false); |
|
| 944 | + if (!empty($d['error_count']) || !empty($d['warning_count'])) { |
|
| 945 | + fatal_lang_error('invalid_date', false); |
|
| 946 | + } |
|
| 947 | + if (empty($d['year'])) { |
|
| 948 | + fatal_lang_error('event_year_missing', false); |
|
| 949 | + } |
|
| 950 | + if (empty($d['month'])) { |
|
| 951 | + fatal_lang_error('event_month_missing', false); |
|
| 952 | + } |
|
| 919 | 953 | } |
| 920 | 954 | // The 2.0 way |
| 921 | 955 | else |
| 922 | 956 | { |
| 923 | 957 | // No month? No year? |
| 924 | - if (!isset($_POST['month'])) |
|
| 925 | - fatal_lang_error('event_month_missing', false); |
|
| 926 | - if (!isset($_POST['year'])) |
|
| 927 | - fatal_lang_error('event_year_missing', false); |
|
| 958 | + if (!isset($_POST['month'])) { |
|
| 959 | + fatal_lang_error('event_month_missing', false); |
|
| 960 | + } |
|
| 961 | + if (!isset($_POST['year'])) { |
|
| 962 | + fatal_lang_error('event_year_missing', false); |
|
| 963 | + } |
|
| 928 | 964 | |
| 929 | 965 | // Check the month and year... |
| 930 | - if ($_POST['month'] < 1 || $_POST['month'] > 12) |
|
| 931 | - fatal_lang_error('invalid_month', false); |
|
| 932 | - if ($_POST['year'] < $modSettings['cal_minyear'] || $_POST['year'] > $modSettings['cal_maxyear']) |
|
| 933 | - fatal_lang_error('invalid_year', false); |
|
| 966 | + if ($_POST['month'] < 1 || $_POST['month'] > 12) { |
|
| 967 | + fatal_lang_error('invalid_month', false); |
|
| 968 | + } |
|
| 969 | + if ($_POST['year'] < $modSettings['cal_minyear'] || $_POST['year'] > $modSettings['cal_maxyear']) { |
|
| 970 | + fatal_lang_error('invalid_year', false); |
|
| 971 | + } |
|
| 934 | 972 | } |
| 935 | 973 | } |
| 936 | 974 | |
@@ -940,8 +978,9 @@ discard block |
||
| 940 | 978 | // If they want to us to calculate an end date, make sure it will fit in an acceptable range. |
| 941 | 979 | if (isset($_POST['span'])) |
| 942 | 980 | { |
| 943 | - if (($_POST['span'] < 1) || (!empty($modSettings['cal_maxspan']) && $_POST['span'] > $modSettings['cal_maxspan'])) |
|
| 944 | - fatal_lang_error('invalid_days_numb', false); |
|
| 981 | + if (($_POST['span'] < 1) || (!empty($modSettings['cal_maxspan']) && $_POST['span'] > $modSettings['cal_maxspan'])) { |
|
| 982 | + fatal_lang_error('invalid_days_numb', false); |
|
| 983 | + } |
|
| 945 | 984 | } |
| 946 | 985 | |
| 947 | 986 | // There is no need to validate the following values if we are just deleting the event. |
@@ -951,24 +990,29 @@ discard block |
||
| 951 | 990 | if (empty($_POST['start_date']) && empty($_POST['start_datetime'])) |
| 952 | 991 | { |
| 953 | 992 | // No day? |
| 954 | - if (!isset($_POST['day'])) |
|
| 955 | - fatal_lang_error('event_day_missing', false); |
|
| 993 | + if (!isset($_POST['day'])) { |
|
| 994 | + fatal_lang_error('event_day_missing', false); |
|
| 995 | + } |
|
| 956 | 996 | |
| 957 | 997 | // Bad day? |
| 958 | - if (!checkdate($_POST['month'], $_POST['day'], $_POST['year'])) |
|
| 959 | - fatal_lang_error('invalid_date', false); |
|
| 998 | + if (!checkdate($_POST['month'], $_POST['day'], $_POST['year'])) { |
|
| 999 | + fatal_lang_error('invalid_date', false); |
|
| 1000 | + } |
|
| 960 | 1001 | } |
| 961 | 1002 | |
| 962 | - if (!isset($_POST['evtitle']) && !isset($_POST['subject'])) |
|
| 963 | - fatal_lang_error('event_title_missing', false); |
|
| 964 | - elseif (!isset($_POST['evtitle'])) |
|
| 965 | - $_POST['evtitle'] = $_POST['subject']; |
|
| 1003 | + if (!isset($_POST['evtitle']) && !isset($_POST['subject'])) { |
|
| 1004 | + fatal_lang_error('event_title_missing', false); |
|
| 1005 | + } elseif (!isset($_POST['evtitle'])) { |
|
| 1006 | + $_POST['evtitle'] = $_POST['subject']; |
|
| 1007 | + } |
|
| 966 | 1008 | |
| 967 | 1009 | // No title? |
| 968 | - if ($smcFunc['htmltrim']($_POST['evtitle']) === '') |
|
| 969 | - fatal_lang_error('no_event_title', false); |
|
| 970 | - if ($smcFunc['strlen']($_POST['evtitle']) > 100) |
|
| 971 | - $_POST['evtitle'] = $smcFunc['substr']($_POST['evtitle'], 0, 100); |
|
| 1010 | + if ($smcFunc['htmltrim']($_POST['evtitle']) === '') { |
|
| 1011 | + fatal_lang_error('no_event_title', false); |
|
| 1012 | + } |
|
| 1013 | + if ($smcFunc['strlen']($_POST['evtitle']) > 100) { |
|
| 1014 | + $_POST['evtitle'] = $smcFunc['substr']($_POST['evtitle'], 0, 100); |
|
| 1015 | + } |
|
| 972 | 1016 | $_POST['evtitle'] = str_replace(';', '', $_POST['evtitle']); |
| 973 | 1017 | } |
| 974 | 1018 | } |
@@ -995,8 +1039,9 @@ discard block |
||
| 995 | 1039 | ); |
| 996 | 1040 | |
| 997 | 1041 | // No results, return false. |
| 998 | - if ($smcFunc['db_num_rows'] === 0) |
|
| 999 | - return false; |
|
| 1042 | + if ($smcFunc['db_num_rows'] === 0) { |
|
| 1043 | + return false; |
|
| 1044 | + } |
|
| 1000 | 1045 | |
| 1001 | 1046 | // Grab the results and return. |
| 1002 | 1047 | list ($poster) = $smcFunc['db_fetch_row']($request); |
@@ -1130,8 +1175,9 @@ discard block |
||
| 1130 | 1175 | call_integration_hook('integrate_modify_event', array($event_id, &$eventOptions, &$event_columns, &$event_parameters)); |
| 1131 | 1176 | |
| 1132 | 1177 | $column_clauses = array(); |
| 1133 | - foreach ($event_columns as $col => $crit) |
|
| 1134 | - $column_clauses[] = $col . ' = ' . $crit; |
|
| 1178 | + foreach ($event_columns as $col => $crit) { |
|
| 1179 | + $column_clauses[] = $col . ' = ' . $crit; |
|
| 1180 | + } |
|
| 1135 | 1181 | |
| 1136 | 1182 | $smcFunc['db_query']('', ' |
| 1137 | 1183 | UPDATE {db_prefix}calendar |
@@ -1216,8 +1262,9 @@ discard block |
||
| 1216 | 1262 | ); |
| 1217 | 1263 | |
| 1218 | 1264 | // If nothing returned, we are in poo, poo. |
| 1219 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 1220 | - return false; |
|
| 1265 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 1266 | + return false; |
|
| 1267 | + } |
|
| 1221 | 1268 | |
| 1222 | 1269 | $row = $smcFunc['db_fetch_assoc']($request); |
| 1223 | 1270 | $smcFunc['db_free_result']($request); |
@@ -1225,8 +1272,9 @@ discard block |
||
| 1225 | 1272 | list($start, $end, $allday, $span, $tz, $tz_abbrev) = buildEventDatetimes($row); |
| 1226 | 1273 | |
| 1227 | 1274 | // Sanity check |
| 1228 | - if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) |
|
| 1229 | - return false; |
|
| 1275 | + if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) { |
|
| 1276 | + return false; |
|
| 1277 | + } |
|
| 1230 | 1278 | |
| 1231 | 1279 | $return_value = array( |
| 1232 | 1280 | 'boards' => array(), |
@@ -1363,24 +1411,27 @@ discard block |
||
| 1363 | 1411 | |
| 1364 | 1412 | // Set $span, in case we need it |
| 1365 | 1413 | $span = isset($eventOptions['span']) ? $eventOptions['span'] : (isset($_POST['span']) ? $_POST['span'] : 0); |
| 1366 | - if ($span > 0) |
|
| 1367 | - $span = !empty($modSettings['cal_maxspan']) ? min($modSettings['cal_maxspan'], $span - 1) : $span - 1; |
|
| 1414 | + if ($span > 0) { |
|
| 1415 | + $span = !empty($modSettings['cal_maxspan']) ? min($modSettings['cal_maxspan'], $span - 1) : $span - 1; |
|
| 1416 | + } |
|
| 1368 | 1417 | |
| 1369 | 1418 | // Define the timezone for this event, falling back to the default if not provided |
| 1370 | - if (!empty($eventOptions['tz']) && in_array($eventOptions['tz'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) |
|
| 1371 | - $tz = $eventOptions['tz']; |
|
| 1372 | - elseif (!empty($_POST['tz']) && in_array($_POST['tz'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) |
|
| 1373 | - $tz = $_POST['tz']; |
|
| 1374 | - else |
|
| 1375 | - $tz = getUserTimezone(); |
|
| 1419 | + if (!empty($eventOptions['tz']) && in_array($eventOptions['tz'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) { |
|
| 1420 | + $tz = $eventOptions['tz']; |
|
| 1421 | + } elseif (!empty($_POST['tz']) && in_array($_POST['tz'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) { |
|
| 1422 | + $tz = $_POST['tz']; |
|
| 1423 | + } else { |
|
| 1424 | + $tz = getUserTimezone(); |
|
| 1425 | + } |
|
| 1376 | 1426 | |
| 1377 | 1427 | // Is this supposed to be an all day event, or should it have specific start and end times? |
| 1378 | - if (isset($eventOptions['allday'])) |
|
| 1379 | - $allday = $eventOptions['allday']; |
|
| 1380 | - elseif (empty($_POST['allday'])) |
|
| 1381 | - $allday = false; |
|
| 1382 | - else |
|
| 1383 | - $allday = true; |
|
| 1428 | + if (isset($eventOptions['allday'])) { |
|
| 1429 | + $allday = $eventOptions['allday']; |
|
| 1430 | + } elseif (empty($_POST['allday'])) { |
|
| 1431 | + $allday = false; |
|
| 1432 | + } else { |
|
| 1433 | + $allday = true; |
|
| 1434 | + } |
|
| 1384 | 1435 | |
| 1385 | 1436 | // Input might come as individual parameters... |
| 1386 | 1437 | $start_year = isset($eventOptions['year']) ? $eventOptions['year'] : (isset($_POST['year']) ? $_POST['year'] : null); |
@@ -1407,10 +1458,12 @@ discard block |
||
| 1407 | 1458 | $end_time_string = isset($eventOptions['end_time']) ? $eventOptions['end_time'] : (isset($_POST['end_time']) ? $_POST['end_time'] : null); |
| 1408 | 1459 | |
| 1409 | 1460 | // If the date and time were given in separate strings, combine them |
| 1410 | - if (empty($start_string) && isset($start_date_string)) |
|
| 1411 | - $start_string = $start_date_string . (isset($start_time_string) ? ' ' . $start_time_string : ''); |
|
| 1412 | - if (empty($end_string) && isset($end_date_string)) |
|
| 1413 | - $end_string = $end_date_string . (isset($end_time_string) ? ' ' . $end_time_string : ''); |
|
| 1461 | + if (empty($start_string) && isset($start_date_string)) { |
|
| 1462 | + $start_string = $start_date_string . (isset($start_time_string) ? ' ' . $start_time_string : ''); |
|
| 1463 | + } |
|
| 1464 | + if (empty($end_string) && isset($end_date_string)) { |
|
| 1465 | + $end_string = $end_date_string . (isset($end_time_string) ? ' ' . $end_time_string : ''); |
|
| 1466 | + } |
|
| 1414 | 1467 | |
| 1415 | 1468 | // If some form of string input was given, override individually defined options with it |
| 1416 | 1469 | if (isset($start_string)) |
@@ -1501,10 +1554,11 @@ discard block |
||
| 1501 | 1554 | if ($start_object >= $end_object) |
| 1502 | 1555 | { |
| 1503 | 1556 | $end_object = date_create(sprintf('%04d-%02d-%02d %02d:%02d:%02d', $start_year, $start_month, $start_day, $start_hour, $start_minute, $start_second) . ' ' . $tz); |
| 1504 | - if ($span > 0) |
|
| 1505 | - date_add($end_object, date_interval_create_from_date_string($span . ' days')); |
|
| 1506 | - else |
|
| 1507 | - date_add($end_object, date_interval_create_from_date_string('1 hour')); |
|
| 1557 | + if ($span > 0) { |
|
| 1558 | + date_add($end_object, date_interval_create_from_date_string($span . ' days')); |
|
| 1559 | + } else { |
|
| 1560 | + date_add($end_object, date_interval_create_from_date_string('1 hour')); |
|
| 1561 | + } |
|
| 1508 | 1562 | } |
| 1509 | 1563 | |
| 1510 | 1564 | // Is $end_object too late? |
@@ -1517,9 +1571,9 @@ discard block |
||
| 1517 | 1571 | { |
| 1518 | 1572 | $end_object = date_create(sprintf('%04d-%02d-%02d %02d:%02d:%02d', $start_year, $start_month, $start_day, $start_hour, $start_minute, $start_second) . ' ' . $tz); |
| 1519 | 1573 | date_add($end_object, date_interval_create_from_date_string($modSettings['cal_maxspan'] . ' days')); |
| 1574 | + } else { |
|
| 1575 | + $end_object = date_create(sprintf('%04d-%02d-%02d %02d:%02d:%02d', $start_year, $start_month, $start_day, '11', '59', '59') . ' ' . $tz); |
|
| 1520 | 1576 | } |
| 1521 | - else |
|
| 1522 | - $end_object = date_create(sprintf('%04d-%02d-%02d %02d:%02d:%02d', $start_year, $start_month, $start_day, '11', '59', '59') . ' ' . $tz); |
|
| 1523 | 1577 | } |
| 1524 | 1578 | } |
| 1525 | 1579 | |
@@ -1532,8 +1586,7 @@ discard block |
||
| 1532 | 1586 | $start_time = null; |
| 1533 | 1587 | $end_time = null; |
| 1534 | 1588 | $tz = null; |
| 1535 | - } |
|
| 1536 | - else |
|
| 1589 | + } else |
|
| 1537 | 1590 | { |
| 1538 | 1591 | $start_time = date_format($start_object, 'H:i:s'); |
| 1539 | 1592 | $end_time = date_format($end_object, 'H:i:s'); |
@@ -1559,19 +1612,21 @@ discard block |
||
| 1559 | 1612 | // First, try to create a better date format, ignoring the "time" elements. |
| 1560 | 1613 | if (empty($date_format)) |
| 1561 | 1614 | { |
| 1562 | - if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) |
|
| 1563 | - $date_format = '%F'; |
|
| 1564 | - else |
|
| 1565 | - $date_format = $matches[0]; |
|
| 1615 | + if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) { |
|
| 1616 | + $date_format = '%F'; |
|
| 1617 | + } else { |
|
| 1618 | + $date_format = $matches[0]; |
|
| 1619 | + } |
|
| 1566 | 1620 | } |
| 1567 | 1621 | |
| 1568 | 1622 | // We want a fairly compact version of the time, but as close as possible to the user's settings. |
| 1569 | 1623 | if (empty($time_format)) |
| 1570 | 1624 | { |
| 1571 | - if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) |
|
| 1572 | - $time_format = '%k:%M'; |
|
| 1573 | - else |
|
| 1574 | - $time_format = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
| 1625 | + if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) { |
|
| 1626 | + $time_format = '%k:%M'; |
|
| 1627 | + } else { |
|
| 1628 | + $time_format = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
| 1629 | + } |
|
| 1575 | 1630 | } |
| 1576 | 1631 | |
| 1577 | 1632 | // Should this be an all day event? |
@@ -1581,11 +1636,13 @@ discard block |
||
| 1581 | 1636 | $span = 1 + date_interval_format(date_diff(date_create($row['start_date']), date_create($row['end_date'])), '%d'); |
| 1582 | 1637 | |
| 1583 | 1638 | // We need to have a defined timezone in the steps below |
| 1584 | - if (empty($row['timezone'])) |
|
| 1585 | - $row['timezone'] = getUserTimezone(); |
|
| 1639 | + if (empty($row['timezone'])) { |
|
| 1640 | + $row['timezone'] = getUserTimezone(); |
|
| 1641 | + } |
|
| 1586 | 1642 | |
| 1587 | - if (empty($timezone_array[$row['timezone']])) |
|
| 1588 | - $timezone_array[$row['timezone']] = timezone_open($row['timezone']); |
|
| 1643 | + if (empty($timezone_array[$row['timezone']])) { |
|
| 1644 | + $timezone_array[$row['timezone']] = timezone_open($row['timezone']); |
|
| 1645 | + } |
|
| 1589 | 1646 | |
| 1590 | 1647 | // Get most of the standard date information for the start and end datetimes |
| 1591 | 1648 | $start = date_parse($row['start_date'] . (!$allday ? ' ' . $row['start_time'] : '')); |
@@ -1633,8 +1690,9 @@ discard block |
||
| 1633 | 1690 | global $smcFunc, $context, $user_info, $modSettings, $user_settings; |
| 1634 | 1691 | static $member_cache = array(); |
| 1635 | 1692 | |
| 1636 | - if (is_null($id_member) && $user_info['is_guest'] == false) |
|
| 1637 | - $id_member = $context['user']['id']; |
|
| 1693 | + if (is_null($id_member) && $user_info['is_guest'] == false) { |
|
| 1694 | + $id_member = $context['user']['id']; |
|
| 1695 | + } |
|
| 1638 | 1696 | |
| 1639 | 1697 | //check if the cache got the data |
| 1640 | 1698 | if (isset($id_member) && isset($member_cache[$id_member])) |
@@ -1663,11 +1721,13 @@ discard block |
||
| 1663 | 1721 | $smcFunc['db_free_result']($request); |
| 1664 | 1722 | } |
| 1665 | 1723 | |
| 1666 | - if (empty($timezone) || !in_array($timezone, timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) |
|
| 1667 | - $timezone = isset($modSettings['default_timezone']) ? $modSettings['default_timezone'] : date_default_timezone_get(); |
|
| 1724 | + if (empty($timezone) || !in_array($timezone, timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) { |
|
| 1725 | + $timezone = isset($modSettings['default_timezone']) ? $modSettings['default_timezone'] : date_default_timezone_get(); |
|
| 1726 | + } |
|
| 1668 | 1727 | |
| 1669 | - if (isset($id_member)) |
|
| 1670 | - $member_cache[$id_member] = $timezone; |
|
| 1728 | + if (isset($id_member)) { |
|
| 1729 | + $member_cache[$id_member] = $timezone; |
|
| 1730 | + } |
|
| 1671 | 1731 | |
| 1672 | 1732 | return $timezone; |
| 1673 | 1733 | } |
@@ -1696,8 +1756,9 @@ discard block |
||
| 1696 | 1756 | ) |
| 1697 | 1757 | ); |
| 1698 | 1758 | $holidays = array(); |
| 1699 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1700 | - $holidays[] = $row; |
|
| 1759 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1760 | + $holidays[] = $row; |
|
| 1761 | + } |
|
| 1701 | 1762 | $smcFunc['db_free_result']($request); |
| 1702 | 1763 | |
| 1703 | 1764 | return $holidays; |