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