@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @param bool $single_file If true returns the contents of the file specified by destination if it exists |
| 29 | 29 | * @param bool $overwrite Whether to overwrite existing files |
| 30 | 30 | * @param null|array $files_to_extract Specific files to extract |
| 31 | - * @return array|false An array of information about extracted files or false on failure |
|
| 31 | + * @return string An array of information about extracted files or false on failure |
|
| 32 | 32 | */ |
| 33 | 33 | function read_tgz_file($gzfilename, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 34 | 34 | { |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @param bool $single_file Whether to only extract a single file |
| 60 | 60 | * @param bool $overwrite Whether to overwrite existing data |
| 61 | 61 | * @param null|array $files_to_extract If set, only extracts the specified files |
| 62 | - * @return array|false An array of information about the extracted files or false on failure |
|
| 62 | + * @return string An array of information about the extracted files or false on failure |
|
| 63 | 63 | */ |
| 64 | 64 | function read_tgz_data($gzfilename, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 65 | 65 | { |
@@ -3255,7 +3255,7 @@ discard block |
||
| 3255 | 3255 | * https://php.net/crc32#79567 |
| 3256 | 3256 | * |
| 3257 | 3257 | * @param string $number |
| 3258 | - * @return string The crc32 |
|
| 3258 | + * @return integer The crc32 |
|
| 3259 | 3259 | */ |
| 3260 | 3260 | function smf_crc32($number) |
| 3261 | 3261 | { |
@@ -16,8 +16,9 @@ discard block |
||
| 16 | 16 | * @version 2.1 Beta 4 |
| 17 | 17 | */ |
| 18 | 18 | |
| 19 | -if (!defined('SMF')) |
|
| 19 | +if (!defined('SMF')) { |
|
| 20 | 20 | die('No direct access...'); |
| 21 | +} |
|
| 21 | 22 | |
| 22 | 23 | /** |
| 23 | 24 | * Reads a .tar.gz file, filename, in and extracts file(s) from it. |
@@ -67,47 +68,53 @@ discard block |
||
| 67 | 68 | loadLanguage('Packages'); |
| 68 | 69 | |
| 69 | 70 | // This function sorta needs gzinflate! |
| 70 | - if (!function_exists('gzinflate')) |
|
| 71 | - fatal_lang_error('package_no_zlib', 'critical'); |
|
| 71 | + if (!function_exists('gzinflate')) { |
|
| 72 | + fatal_lang_error('package_no_zlib', 'critical'); |
|
| 73 | + } |
|
| 72 | 74 | |
| 73 | 75 | if (substr($gzfilename, 0, 7) == 'http://' || substr($gzfilename, 0, 8) == 'https://') |
| 74 | 76 | { |
| 75 | 77 | $data = fetch_web_data($gzfilename); |
| 76 | 78 | |
| 77 | - if ($data === false) |
|
| 78 | - return false; |
|
| 79 | - } |
|
| 80 | - else |
|
| 79 | + if ($data === false) { |
|
| 80 | + return false; |
|
| 81 | + } |
|
| 82 | + } else |
|
| 81 | 83 | { |
| 82 | 84 | $data = @file_get_contents($gzfilename); |
| 83 | 85 | |
| 84 | - if ($data === false) |
|
| 85 | - return false; |
|
| 86 | + if ($data === false) { |
|
| 87 | + return false; |
|
| 88 | + } |
|
| 86 | 89 | } |
| 87 | 90 | |
| 88 | 91 | umask(0); |
| 89 | - if (!$single_file && $destination !== null && !file_exists($destination)) |
|
| 90 | - mktree($destination, 0777); |
|
| 92 | + if (!$single_file && $destination !== null && !file_exists($destination)) { |
|
| 93 | + mktree($destination, 0777); |
|
| 94 | + } |
|
| 91 | 95 | |
| 92 | 96 | // No signature? |
| 93 | - if (strlen($data) < 2) |
|
| 94 | - return false; |
|
| 97 | + if (strlen($data) < 2) { |
|
| 98 | + return false; |
|
| 99 | + } |
|
| 95 | 100 | |
| 96 | 101 | $id = unpack('H2a/H2b', substr($data, 0, 2)); |
| 97 | 102 | if (strtolower($id['a'] . $id['b']) != '1f8b') |
| 98 | 103 | { |
| 99 | 104 | // Okay, this ain't no tar.gz, but maybe it's a zip file. |
| 100 | - if (substr($data, 0, 2) == 'PK') |
|
| 101 | - return read_zip_file($gzfilename, $destination, $single_file, $overwrite, $files_to_extract); |
|
| 102 | - else |
|
| 103 | - return false; |
|
| 105 | + if (substr($data, 0, 2) == 'PK') { |
|
| 106 | + return read_zip_file($gzfilename, $destination, $single_file, $overwrite, $files_to_extract); |
|
| 107 | + } else { |
|
| 108 | + return false; |
|
| 109 | + } |
|
| 104 | 110 | } |
| 105 | 111 | |
| 106 | 112 | $flags = unpack('Ct/Cf', substr($data, 2, 2)); |
| 107 | 113 | |
| 108 | 114 | // Not deflate! |
| 109 | - if ($flags['t'] != 8) |
|
| 110 | - return false; |
|
| 115 | + if ($flags['t'] != 8) { |
|
| 116 | + return false; |
|
| 117 | + } |
|
| 111 | 118 | $flags = $flags['f']; |
| 112 | 119 | |
| 113 | 120 | $offset = 10; |
@@ -117,18 +124,21 @@ discard block |
||
| 117 | 124 | // @todo Might be mussed. |
| 118 | 125 | if ($flags & 12) |
| 119 | 126 | { |
| 120 | - while ($flags & 8 && $data{$offset++} != "\0") |
|
| 121 | - continue; |
|
| 122 | - while ($flags & 4 && $data{$offset++} != "\0") |
|
| 123 | - continue; |
|
| 127 | + while ($flags & 8 && $data{$offset++} != "\0") { |
|
| 128 | + continue; |
|
| 129 | + } |
|
| 130 | + while ($flags & 4 && $data{$offset++} != "\0") { |
|
| 131 | + continue; |
|
| 132 | + } |
|
| 124 | 133 | } |
| 125 | 134 | |
| 126 | 135 | $crc = unpack('Vcrc32/Visize', substr($data, strlen($data) - 8, 8)); |
| 127 | 136 | $data = @gzinflate(substr($data, $offset, strlen($data) - 8 - $offset)); |
| 128 | 137 | |
| 129 | 138 | // smf_crc32 and crc32 may not return the same results, so we accept either. |
| 130 | - if ($crc['crc32'] != smf_crc32($data) && $crc['crc32'] != crc32($data)) |
|
| 131 | - return false; |
|
| 139 | + if ($crc['crc32'] != smf_crc32($data) && $crc['crc32'] != crc32($data)) { |
|
| 140 | + return false; |
|
| 141 | + } |
|
| 132 | 142 | |
| 133 | 143 | $blocks = strlen($data) / 512 - 1; |
| 134 | 144 | $offset = 0; |
@@ -149,83 +159,98 @@ discard block |
||
| 149 | 159 | |
| 150 | 160 | foreach ($current as $k => $v) |
| 151 | 161 | { |
| 152 | - if (in_array($k, $octdec)) |
|
| 153 | - $current[$k] = octdec(trim($v)); |
|
| 154 | - else |
|
| 155 | - $current[$k] = trim($v); |
|
| 162 | + if (in_array($k, $octdec)) { |
|
| 163 | + $current[$k] = octdec(trim($v)); |
|
| 164 | + } else { |
|
| 165 | + $current[$k] = trim($v); |
|
| 166 | + } |
|
| 156 | 167 | } |
| 157 | 168 | |
| 158 | - if ($current['type'] == 5 && substr($current['filename'], -1) != '/') |
|
| 159 | - $current['filename'] .= '/'; |
|
| 169 | + if ($current['type'] == 5 && substr($current['filename'], -1) != '/') { |
|
| 170 | + $current['filename'] .= '/'; |
|
| 171 | + } |
|
| 160 | 172 | |
| 161 | 173 | $checksum = 256; |
| 162 | - for ($i = 0; $i < 148; $i++) |
|
| 163 | - $checksum += ord($header{$i}); |
|
| 164 | - for ($i = 156; $i < 512; $i++) |
|
| 165 | - $checksum += ord($header{$i}); |
|
| 174 | + for ($i = 0; $i < 148; $i++) { |
|
| 175 | + $checksum += ord($header{$i}); |
|
| 176 | + } |
|
| 177 | + for ($i = 156; $i < 512; $i++) { |
|
| 178 | + $checksum += ord($header{$i}); |
|
| 179 | + } |
|
| 166 | 180 | |
| 167 | - if ($current['checksum'] != $checksum) |
|
| 168 | - break; |
|
| 181 | + if ($current['checksum'] != $checksum) { |
|
| 182 | + break; |
|
| 183 | + } |
|
| 169 | 184 | |
| 170 | 185 | $size = ceil($current['size'] / 512); |
| 171 | 186 | $current['data'] = substr($data, ++$offset << 9, $current['size']); |
| 172 | 187 | $offset += $size; |
| 173 | 188 | |
| 174 | 189 | // Not a directory and doesn't exist already... |
| 175 | - if (substr($current['filename'], -1, 1) != '/' && !file_exists($destination . '/' . $current['filename'])) |
|
| 176 | - $write_this = true; |
|
| 190 | + if (substr($current['filename'], -1, 1) != '/' && !file_exists($destination . '/' . $current['filename'])) { |
|
| 191 | + $write_this = true; |
|
| 192 | + } |
|
| 177 | 193 | // File exists... check if it is newer. |
| 178 | - elseif (substr($current['filename'], -1, 1) != '/') |
|
| 179 | - $write_this = $overwrite || filemtime($destination . '/' . $current['filename']) < $current['mtime']; |
|
| 194 | + elseif (substr($current['filename'], -1, 1) != '/') { |
|
| 195 | + $write_this = $overwrite || filemtime($destination . '/' . $current['filename']) < $current['mtime']; |
|
| 196 | + } |
|
| 180 | 197 | // Folder... create. |
| 181 | 198 | elseif ($destination !== null && !$single_file) |
| 182 | 199 | { |
| 183 | 200 | // Protect from accidental parent directory writing... |
| 184 | 201 | $current['filename'] = strtr($current['filename'], array('../' => '', '/..' => '')); |
| 185 | 202 | |
| 186 | - if (!file_exists($destination . '/' . $current['filename'])) |
|
| 187 | - mktree($destination . '/' . $current['filename'], 0777); |
|
| 203 | + if (!file_exists($destination . '/' . $current['filename'])) { |
|
| 204 | + mktree($destination . '/' . $current['filename'], 0777); |
|
| 205 | + } |
|
| 188 | 206 | $write_this = false; |
| 207 | + } else { |
|
| 208 | + $write_this = false; |
|
| 189 | 209 | } |
| 190 | - else |
|
| 191 | - $write_this = false; |
|
| 192 | 210 | |
| 193 | 211 | if ($write_this && $destination !== null) |
| 194 | 212 | { |
| 195 | - if (strpos($current['filename'], '/') !== false && !$single_file) |
|
| 196 | - mktree($destination . '/' . dirname($current['filename']), 0777); |
|
| 213 | + if (strpos($current['filename'], '/') !== false && !$single_file) { |
|
| 214 | + mktree($destination . '/' . dirname($current['filename']), 0777); |
|
| 215 | + } |
|
| 197 | 216 | |
| 198 | 217 | // Is this the file we're looking for? |
| 199 | - if ($single_file && ($destination == $current['filename'] || $destination == '*/' . basename($current['filename']))) |
|
| 200 | - return $current['data']; |
|
| 218 | + if ($single_file && ($destination == $current['filename'] || $destination == '*/' . basename($current['filename']))) { |
|
| 219 | + return $current['data']; |
|
| 220 | + } |
|
| 201 | 221 | // If we're looking for another file, keep going. |
| 202 | - elseif ($single_file) |
|
| 203 | - continue; |
|
| 222 | + elseif ($single_file) { |
|
| 223 | + continue; |
|
| 224 | + } |
|
| 204 | 225 | // Looking for restricted files? |
| 205 | - elseif ($files_to_extract !== null && !in_array($current['filename'], $files_to_extract)) |
|
| 206 | - continue; |
|
| 226 | + elseif ($files_to_extract !== null && !in_array($current['filename'], $files_to_extract)) { |
|
| 227 | + continue; |
|
| 228 | + } |
|
| 207 | 229 | |
| 208 | 230 | package_put_contents($destination . '/' . $current['filename'], $current['data']); |
| 209 | 231 | } |
| 210 | 232 | |
| 211 | - if (substr($current['filename'], -1, 1) != '/') |
|
| 212 | - $return[] = array( |
|
| 233 | + if (substr($current['filename'], -1, 1) != '/') { |
|
| 234 | + $return[] = array( |
|
| 213 | 235 | 'filename' => $current['filename'], |
| 214 | 236 | 'md5' => md5($current['data']), |
| 215 | 237 | 'preview' => substr($current['data'], 0, 100), |
| 216 | 238 | 'size' => $current['size'], |
| 217 | 239 | 'skipped' => false |
| 218 | 240 | ); |
| 241 | + } |
|
| 219 | 242 | } |
| 220 | 243 | |
| 221 | - if ($destination !== null && !$single_file) |
|
| 222 | - package_flush_cache(); |
|
| 244 | + if ($destination !== null && !$single_file) { |
|
| 245 | + package_flush_cache(); |
|
| 246 | + } |
|
| 223 | 247 | |
| 224 | - if ($single_file) |
|
| 225 | - return false; |
|
| 226 | - else |
|
| 227 | - return $return; |
|
| 228 | -} |
|
| 248 | + if ($single_file) { |
|
| 249 | + return false; |
|
| 250 | + } else { |
|
| 251 | + return $return; |
|
| 252 | + } |
|
| 253 | + } |
|
| 229 | 254 | |
| 230 | 255 | /** |
| 231 | 256 | * Extract zip data. A functional copy of {@list read_zip_data()}. |
@@ -247,9 +272,10 @@ discard block |
||
| 247 | 272 | $return = array(); |
| 248 | 273 | |
| 249 | 274 | // Some hosted unix platforms require an extension; win may have .tmp & that works ok |
| 250 | - if (!in_array(strtolower(pathinfo($file, PATHINFO_EXTENSION)), array('zip', 'tmp'))) |
|
| 251 | - if (@rename($file, $file . '.zip')) |
|
| 275 | + if (!in_array(strtolower(pathinfo($file, PATHINFO_EXTENSION)), array('zip', 'tmp'))) { |
|
| 276 | + if (@rename($file, $file . '.zip')) |
|
| 252 | 277 | $file = $file . '.zip'; |
| 278 | + } |
|
| 253 | 279 | |
| 254 | 280 | $archive = new PharData($file, RecursiveIteratorIterator::SELF_FIRST, null, Phar::ZIP); |
| 255 | 281 | $iterator = new RecursiveIteratorIterator($archive, RecursiveIteratorIterator::SELF_FIRST); |
@@ -259,65 +285,74 @@ discard block |
||
| 259 | 285 | { |
| 260 | 286 | $i = $iterator->getSubPathname(); |
| 261 | 287 | // If this is a file, and it doesn't exist.... happy days! |
| 262 | - if (substr($i, -1) != '/' && !file_exists($destination . '/' . $i)) |
|
| 263 | - $write_this = true; |
|
| 288 | + if (substr($i, -1) != '/' && !file_exists($destination . '/' . $i)) { |
|
| 289 | + $write_this = true; |
|
| 290 | + } |
|
| 264 | 291 | // If the file exists, we may not want to overwrite it. |
| 265 | - elseif (substr($i, -1) != '/') |
|
| 266 | - $write_this = $overwrite; |
|
| 267 | - else |
|
| 268 | - $write_this = false; |
|
| 292 | + elseif (substr($i, -1) != '/') { |
|
| 293 | + $write_this = $overwrite; |
|
| 294 | + } else { |
|
| 295 | + $write_this = false; |
|
| 296 | + } |
|
| 269 | 297 | |
| 270 | 298 | // Get the actual compressed data. |
| 271 | - if (!$file_info->isDir()) |
|
| 272 | - $file_data = file_get_contents($file_info); |
|
| 273 | - elseif ($destination !== null && !$single_file) |
|
| 299 | + if (!$file_info->isDir()) { |
|
| 300 | + $file_data = file_get_contents($file_info); |
|
| 301 | + } elseif ($destination !== null && !$single_file) |
|
| 274 | 302 | { |
| 275 | 303 | // Folder... create. |
| 276 | - if (!file_exists($destination . '/' . $i)) |
|
| 277 | - mktree($destination . '/' . $i, 0777); |
|
| 304 | + if (!file_exists($destination . '/' . $i)) { |
|
| 305 | + mktree($destination . '/' . $i, 0777); |
|
| 306 | + } |
|
| 278 | 307 | $file_data = null; |
| 308 | + } else { |
|
| 309 | + $file_data = null; |
|
| 279 | 310 | } |
| 280 | - else |
|
| 281 | - $file_data = null; |
|
| 282 | 311 | |
| 283 | 312 | // Okay! We can write this file, looks good from here... |
| 284 | 313 | if ($write_this && $destination !== null) |
| 285 | 314 | { |
| 286 | - if (!$single_file && !is_dir($destination . '/' . dirname($i))) |
|
| 287 | - mktree($destination . '/' . dirname($i), 0777); |
|
| 315 | + if (!$single_file && !is_dir($destination . '/' . dirname($i))) { |
|
| 316 | + mktree($destination . '/' . dirname($i), 0777); |
|
| 317 | + } |
|
| 288 | 318 | |
| 289 | 319 | // If we're looking for a specific file, and this is it... ka-bam, baby. |
| 290 | - if ($single_file && ($destination == $i || $destination == '*/' . basename($i))) |
|
| 291 | - return $file_data; |
|
| 320 | + if ($single_file && ($destination == $i || $destination == '*/' . basename($i))) { |
|
| 321 | + return $file_data; |
|
| 322 | + } |
|
| 292 | 323 | // Oh? Another file. Fine. You don't like this file, do you? I know how it is. Yeah... just go away. No, don't apologize. I know this file's just not *good enough* for you. |
| 293 | - elseif ($single_file) |
|
| 294 | - continue; |
|
| 324 | + elseif ($single_file) { |
|
| 325 | + continue; |
|
| 326 | + } |
|
| 295 | 327 | // Don't really want this? |
| 296 | - elseif ($files_to_extract !== null && !in_array($i, $files_to_extract)) |
|
| 297 | - continue; |
|
| 328 | + elseif ($files_to_extract !== null && !in_array($i, $files_to_extract)) { |
|
| 329 | + continue; |
|
| 330 | + } |
|
| 298 | 331 | |
| 299 | 332 | package_put_contents($destination . '/' . $i, $file_data); |
| 300 | 333 | } |
| 301 | 334 | |
| 302 | - if (substr($i, -1, 1) != '/') |
|
| 303 | - $return[] = array( |
|
| 335 | + if (substr($i, -1, 1) != '/') { |
|
| 336 | + $return[] = array( |
|
| 304 | 337 | 'filename' => $i, |
| 305 | 338 | 'md5' => md5($file_data), |
| 306 | 339 | 'preview' => substr($file_data, 0, 100), |
| 307 | 340 | 'size' => strlen($file_data), |
| 308 | 341 | 'skipped' => false |
| 309 | 342 | ); |
| 343 | + } |
|
| 310 | 344 | } |
| 311 | 345 | |
| 312 | - if ($destination !== null && !$single_file) |
|
| 313 | - package_flush_cache(); |
|
| 346 | + if ($destination !== null && !$single_file) { |
|
| 347 | + package_flush_cache(); |
|
| 348 | + } |
|
| 314 | 349 | |
| 315 | - if ($single_file) |
|
| 316 | - return false; |
|
| 317 | - else |
|
| 318 | - return $return; |
|
| 319 | - } |
|
| 320 | - catch (Exception $e) |
|
| 350 | + if ($single_file) { |
|
| 351 | + return false; |
|
| 352 | + } else { |
|
| 353 | + return $return; |
|
| 354 | + } |
|
| 355 | + } catch (Exception $e) |
|
| 321 | 356 | { |
| 322 | 357 | log_error($e->getMessage(), 'general', $e->getFile(), $e->getLine()); |
| 323 | 358 | return false; |
@@ -340,13 +375,15 @@ discard block |
||
| 340 | 375 | function read_zip_data($data, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 341 | 376 | { |
| 342 | 377 | umask(0); |
| 343 | - if ($destination !== null && !file_exists($destination) && !$single_file) |
|
| 344 | - mktree($destination, 0777); |
|
| 378 | + if ($destination !== null && !file_exists($destination) && !$single_file) { |
|
| 379 | + mktree($destination, 0777); |
|
| 380 | + } |
|
| 345 | 381 | |
| 346 | 382 | // Look for the end of directory signature 0x06054b50 |
| 347 | 383 | $data_ecr = explode("\x50\x4b\x05\x06", $data); |
| 348 | - if (!isset($data_ecr[1])) |
|
| 349 | - return false; |
|
| 384 | + if (!isset($data_ecr[1])) { |
|
| 385 | + return false; |
|
| 386 | + } |
|
| 350 | 387 | |
| 351 | 388 | $return = array(); |
| 352 | 389 | |
@@ -361,8 +398,9 @@ discard block |
||
| 361 | 398 | array_shift($file_sections); |
| 362 | 399 | |
| 363 | 400 | // sections and count from the signature must match or the zip file is bad |
| 364 | - if (count($file_sections) != $zip_info['files']) |
|
| 365 | - return false; |
|
| 401 | + if (count($file_sections) != $zip_info['files']) { |
|
| 402 | + return false; |
|
| 403 | + } |
|
| 366 | 404 | |
| 367 | 405 | // go though each file in the archive |
| 368 | 406 | foreach ($file_sections as $data) |
@@ -384,68 +422,79 @@ discard block |
||
| 384 | 422 | } |
| 385 | 423 | |
| 386 | 424 | // If this is a file, and it doesn't exist.... happy days! |
| 387 | - if (substr($file_info['filename'], -1) != '/' && !file_exists($destination . '/' . $file_info['filename'])) |
|
| 388 | - $write_this = true; |
|
| 425 | + if (substr($file_info['filename'], -1) != '/' && !file_exists($destination . '/' . $file_info['filename'])) { |
|
| 426 | + $write_this = true; |
|
| 427 | + } |
|
| 389 | 428 | // If the file exists, we may not want to overwrite it. |
| 390 | - elseif (substr($file_info['filename'], -1) != '/') |
|
| 391 | - $write_this = $overwrite; |
|
| 429 | + elseif (substr($file_info['filename'], -1) != '/') { |
|
| 430 | + $write_this = $overwrite; |
|
| 431 | + } |
|
| 392 | 432 | // This is a directory, so we're gonna want to create it. (probably...) |
| 393 | 433 | elseif ($destination !== null && !$single_file) |
| 394 | 434 | { |
| 395 | 435 | // Just a little accident prevention, don't mind me. |
| 396 | 436 | $file_info['filename'] = strtr($file_info['filename'], array('../' => '', '/..' => '')); |
| 397 | 437 | |
| 398 | - if (!file_exists($destination . '/' . $file_info['filename'])) |
|
| 399 | - mktree($destination . '/' . $file_info['filename'], 0777); |
|
| 438 | + if (!file_exists($destination . '/' . $file_info['filename'])) { |
|
| 439 | + mktree($destination . '/' . $file_info['filename'], 0777); |
|
| 440 | + } |
|
| 400 | 441 | $write_this = false; |
| 442 | + } else { |
|
| 443 | + $write_this = false; |
|
| 401 | 444 | } |
| 402 | - else |
|
| 403 | - $write_this = false; |
|
| 404 | 445 | |
| 405 | 446 | // Get the actual compressed data. |
| 406 | 447 | $file_info['data'] = substr($data, 26 + $file_info['filename_length'] + $file_info['extrafield_length']); |
| 407 | 448 | |
| 408 | 449 | // Only inflate it if we need to ;) |
| 409 | - if (!empty($file_info['compress_method']) || ($file_info['compressed_size'] != $file_info['size'])) |
|
| 410 | - $file_info['data'] = gzinflate($file_info['data']); |
|
| 450 | + if (!empty($file_info['compress_method']) || ($file_info['compressed_size'] != $file_info['size'])) { |
|
| 451 | + $file_info['data'] = gzinflate($file_info['data']); |
|
| 452 | + } |
|
| 411 | 453 | |
| 412 | 454 | // Okay! We can write this file, looks good from here... |
| 413 | 455 | if ($write_this && $destination !== null) |
| 414 | 456 | { |
| 415 | - if ((strpos($file_info['filename'], '/') !== false && !$single_file) || (!$single_file && !is_dir($file_info['dir']))) |
|
| 416 | - mktree($file_info['dir'], 0777); |
|
| 457 | + if ((strpos($file_info['filename'], '/') !== false && !$single_file) || (!$single_file && !is_dir($file_info['dir']))) { |
|
| 458 | + mktree($file_info['dir'], 0777); |
|
| 459 | + } |
|
| 417 | 460 | |
| 418 | 461 | // If we're looking for a specific file, and this is it... ka-bam, baby. |
| 419 | - if ($single_file && ($destination == $file_info['filename'] || $destination == '*/' . basename($file_info['filename']))) |
|
| 420 | - return $file_info['data']; |
|
| 462 | + if ($single_file && ($destination == $file_info['filename'] || $destination == '*/' . basename($file_info['filename']))) { |
|
| 463 | + return $file_info['data']; |
|
| 464 | + } |
|
| 421 | 465 | // Oh? Another file. Fine. You don't like this file, do you? I know how it is. Yeah... just go away. No, don't apologize. I know this file's just not *good enough* for you. |
| 422 | - elseif ($single_file) |
|
| 423 | - continue; |
|
| 466 | + elseif ($single_file) { |
|
| 467 | + continue; |
|
| 468 | + } |
|
| 424 | 469 | // Don't really want this? |
| 425 | - elseif ($files_to_extract !== null && !in_array($file_info['filename'], $files_to_extract)) |
|
| 426 | - continue; |
|
| 470 | + elseif ($files_to_extract !== null && !in_array($file_info['filename'], $files_to_extract)) { |
|
| 471 | + continue; |
|
| 472 | + } |
|
| 427 | 473 | |
| 428 | 474 | package_put_contents($destination . '/' . $file_info['filename'], $file_info['data']); |
| 429 | 475 | } |
| 430 | 476 | |
| 431 | - if (substr($file_info['filename'], -1, 1) != '/') |
|
| 432 | - $return[] = array( |
|
| 477 | + if (substr($file_info['filename'], -1, 1) != '/') { |
|
| 478 | + $return[] = array( |
|
| 433 | 479 | 'filename' => $file_info['filename'], |
| 434 | 480 | 'md5' => md5($file_info['data']), |
| 435 | 481 | 'preview' => substr($file_info['data'], 0, 100), |
| 436 | 482 | 'size' => $file_info['size'], |
| 437 | 483 | 'skipped' => false |
| 438 | 484 | ); |
| 485 | + } |
|
| 439 | 486 | } |
| 440 | 487 | |
| 441 | - if ($destination !== null && !$single_file) |
|
| 442 | - package_flush_cache(); |
|
| 488 | + if ($destination !== null && !$single_file) { |
|
| 489 | + package_flush_cache(); |
|
| 490 | + } |
|
| 443 | 491 | |
| 444 | - if ($single_file) |
|
| 445 | - return false; |
|
| 446 | - else |
|
| 447 | - return $return; |
|
| 448 | -} |
|
| 492 | + if ($single_file) { |
|
| 493 | + return false; |
|
| 494 | + } else { |
|
| 495 | + return $return; |
|
| 496 | + } |
|
| 497 | + } |
|
| 449 | 498 | |
| 450 | 499 | /** |
| 451 | 500 | * Checks the existence of a remote file since file_exists() does not do remote. |
@@ -457,14 +506,16 @@ discard block |
||
| 457 | 506 | { |
| 458 | 507 | $a_url = parse_url($url); |
| 459 | 508 | |
| 460 | - if (!isset($a_url['scheme'])) |
|
| 461 | - return false; |
|
| 509 | + if (!isset($a_url['scheme'])) { |
|
| 510 | + return false; |
|
| 511 | + } |
|
| 462 | 512 | |
| 463 | 513 | // Attempt to connect... |
| 464 | 514 | $temp = ''; |
| 465 | 515 | $fid = fsockopen($a_url['host'], !isset($a_url['port']) ? 80 : $a_url['port'], $temp, $temp, 8); |
| 466 | - if (!$fid) |
|
| 467 | - return false; |
|
| 516 | + if (!$fid) { |
|
| 517 | + return false; |
|
| 518 | + } |
|
| 468 | 519 | |
| 469 | 520 | fputs($fid, 'HEAD ' . $a_url['path'] . ' HTTP/1.0' . "\r\n" . 'Host: ' . $a_url['host'] . "\r\n\r\n"); |
| 470 | 521 | $head = fread($fid, 1024); |
@@ -499,8 +550,9 @@ discard block |
||
| 499 | 550 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 500 | 551 | { |
| 501 | 552 | // Already found this? If so don't add it twice! |
| 502 | - if (in_array($row['package_id'], $found)) |
|
| 503 | - continue; |
|
| 553 | + if (in_array($row['package_id'], $found)) { |
|
| 554 | + continue; |
|
| 555 | + } |
|
| 504 | 556 | |
| 505 | 557 | $found[] = $row['package_id']; |
| 506 | 558 | |
@@ -535,19 +587,21 @@ discard block |
||
| 535 | 587 | global $sourcedir, $packagesdir; |
| 536 | 588 | |
| 537 | 589 | // Extract package-info.xml from downloaded file. (*/ is used because it could be in any directory.) |
| 538 | - if (strpos($gzfilename, 'http://') !== false || strpos($gzfilename, 'https://') !== false) |
|
| 539 | - $packageInfo = read_tgz_data($gzfilename, 'package-info.xml', true); |
|
| 540 | - else |
|
| 590 | + if (strpos($gzfilename, 'http://') !== false || strpos($gzfilename, 'https://') !== false) { |
|
| 591 | + $packageInfo = read_tgz_data($gzfilename, 'package-info.xml', true); |
|
| 592 | + } else |
|
| 541 | 593 | { |
| 542 | - if (!file_exists($packagesdir . '/' . $gzfilename)) |
|
| 543 | - return 'package_get_error_not_found'; |
|
| 594 | + if (!file_exists($packagesdir . '/' . $gzfilename)) { |
|
| 595 | + return 'package_get_error_not_found'; |
|
| 596 | + } |
|
| 544 | 597 | |
| 545 | - if (is_file($packagesdir . '/' . $gzfilename)) |
|
| 546 | - $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/package-info.xml', true); |
|
| 547 | - elseif (file_exists($packagesdir . '/' . $gzfilename . '/package-info.xml')) |
|
| 548 | - $packageInfo = file_get_contents($packagesdir . '/' . $gzfilename . '/package-info.xml'); |
|
| 549 | - else |
|
| 550 | - return 'package_get_error_missing_xml'; |
|
| 598 | + if (is_file($packagesdir . '/' . $gzfilename)) { |
|
| 599 | + $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/package-info.xml', true); |
|
| 600 | + } elseif (file_exists($packagesdir . '/' . $gzfilename . '/package-info.xml')) { |
|
| 601 | + $packageInfo = file_get_contents($packagesdir . '/' . $gzfilename . '/package-info.xml'); |
|
| 602 | + } else { |
|
| 603 | + return 'package_get_error_missing_xml'; |
|
| 604 | + } |
|
| 551 | 605 | } |
| 552 | 606 | |
| 553 | 607 | // Nothing? |
@@ -555,10 +609,11 @@ discard block |
||
| 555 | 609 | { |
| 556 | 610 | // Perhaps they are trying to install a theme, lets tell them nicely this is the wrong function |
| 557 | 611 | $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/theme_info.xml', true); |
| 558 | - if (!empty($packageInfo)) |
|
| 559 | - return 'package_get_error_is_theme'; |
|
| 560 | - else |
|
| 561 | - return 'package_get_error_is_zero'; |
|
| 612 | + if (!empty($packageInfo)) { |
|
| 613 | + return 'package_get_error_is_theme'; |
|
| 614 | + } else { |
|
| 615 | + return 'package_get_error_is_zero'; |
|
| 616 | + } |
|
| 562 | 617 | } |
| 563 | 618 | |
| 564 | 619 | // Parse package-info.xml into an xmlArray. |
@@ -566,8 +621,9 @@ discard block |
||
| 566 | 621 | $packageInfo = new xmlArray($packageInfo); |
| 567 | 622 | |
| 568 | 623 | // @todo Error message of some sort? |
| 569 | - if (!$packageInfo->exists('package-info[0]')) |
|
| 570 | - return 'package_get_error_packageinfo_corrupt'; |
|
| 624 | + if (!$packageInfo->exists('package-info[0]')) { |
|
| 625 | + return 'package_get_error_packageinfo_corrupt'; |
|
| 626 | + } |
|
| 571 | 627 | |
| 572 | 628 | $packageInfo = $packageInfo->path('package-info[0]'); |
| 573 | 629 | |
@@ -586,8 +642,9 @@ discard block |
||
| 586 | 642 | } |
| 587 | 643 | } |
| 588 | 644 | |
| 589 | - if (!isset($package['type'])) |
|
| 590 | - $package['type'] = 'modification'; |
|
| 645 | + if (!isset($package['type'])) { |
|
| 646 | + $package['type'] = 'modification'; |
|
| 647 | + } |
|
| 591 | 648 | |
| 592 | 649 | return $package; |
| 593 | 650 | } |
@@ -640,15 +697,14 @@ discard block |
||
| 640 | 697 | { |
| 641 | 698 | $ftp_file = strtr($file, array($_SESSION['pack_ftp']['root'] => '')); |
| 642 | 699 | $package_ftp->chmod($ftp_file, $perms); |
| 700 | + } else { |
|
| 701 | + smf_chmod($file, $perms); |
|
| 643 | 702 | } |
| 644 | - else |
|
| 645 | - smf_chmod($file, $perms); |
|
| 646 | 703 | |
| 647 | 704 | $new_permissions = @fileperms($file); |
| 648 | 705 | $result = $new_permissions == $perms ? 'success' : 'failure'; |
| 649 | 706 | unset($_SESSION['pack_ftp']['original_perms'][$file]); |
| 650 | - } |
|
| 651 | - elseif ($do_change) |
|
| 707 | + } elseif ($do_change) |
|
| 652 | 708 | { |
| 653 | 709 | $new_permissions = ''; |
| 654 | 710 | $result = 'skipped'; |
@@ -764,8 +820,7 @@ discard block |
||
| 764 | 820 | |
| 765 | 821 | $context['sub_template'] = 'show_list'; |
| 766 | 822 | $context['default_list'] = 'restore_file_permissions'; |
| 767 | - } |
|
| 768 | - else |
|
| 823 | + } else |
|
| 769 | 824 | { |
| 770 | 825 | unset($listOptions['columns']['result']); |
| 771 | 826 | } |
@@ -775,12 +830,14 @@ discard block |
||
| 775 | 830 | createList($listOptions); |
| 776 | 831 | |
| 777 | 832 | // If we just restored permissions then whereever we are, we are now done and dusted. |
| 778 | - if (!empty($_POST['restore_perms'])) |
|
| 779 | - obExit(); |
|
| 833 | + if (!empty($_POST['restore_perms'])) { |
|
| 834 | + obExit(); |
|
| 835 | + } |
|
| 780 | 836 | } |
| 781 | 837 | // Otherwise, it's entirely irrelevant? |
| 782 | - elseif ($restore_write_status) |
|
| 783 | - return true; |
|
| 838 | + elseif ($restore_write_status) { |
|
| 839 | + return true; |
|
| 840 | + } |
|
| 784 | 841 | |
| 785 | 842 | // This is where we report what we got up to. |
| 786 | 843 | $return_data = array( |
@@ -818,11 +875,12 @@ discard block |
||
| 818 | 875 | if (!in_array($_POST['ftp_path'], array('', '/'))) |
| 819 | 876 | { |
| 820 | 877 | $ftp_root = strtr($boarddir, array($_POST['ftp_path'] => '')); |
| 821 | - if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || substr($_POST['ftp_path'], 0, 1) == '/')) |
|
| 822 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 878 | + if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || substr($_POST['ftp_path'], 0, 1) == '/')) { |
|
| 879 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 880 | + } |
|
| 881 | + } else { |
|
| 882 | + $ftp_root = $boarddir; |
|
| 823 | 883 | } |
| 824 | - else |
|
| 825 | - $ftp_root = $boarddir; |
|
| 826 | 884 | |
| 827 | 885 | $_SESSION['pack_ftp'] = array( |
| 828 | 886 | 'server' => $_POST['ftp_server'], |
@@ -834,8 +892,9 @@ discard block |
||
| 834 | 892 | 'connected' => true, |
| 835 | 893 | ); |
| 836 | 894 | |
| 837 | - if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) |
|
| 838 | - updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 895 | + if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) { |
|
| 896 | + updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 897 | + } |
|
| 839 | 898 | |
| 840 | 899 | // This is now the primary connection. |
| 841 | 900 | $package_ftp = $ftp; |
@@ -848,12 +907,13 @@ discard block |
||
| 848 | 907 | foreach ($chmodFiles as $k => $file) |
| 849 | 908 | { |
| 850 | 909 | // Sometimes this can somehow happen maybe? |
| 851 | - if (empty($file)) |
|
| 852 | - unset($chmodFiles[$k]); |
|
| 910 | + if (empty($file)) { |
|
| 911 | + unset($chmodFiles[$k]); |
|
| 912 | + } |
|
| 853 | 913 | // Already writable? |
| 854 | - elseif (@is_writable($file)) |
|
| 855 | - $return_data['files']['writable'][] = $file; |
|
| 856 | - else |
|
| 914 | + elseif (@is_writable($file)) { |
|
| 915 | + $return_data['files']['writable'][] = $file; |
|
| 916 | + } else |
|
| 857 | 917 | { |
| 858 | 918 | // Now try to change that. |
| 859 | 919 | $return_data['files'][package_chmod($file, 'writable', true) ? 'writable' : 'notwritable'][] = $file; |
@@ -870,19 +930,21 @@ discard block |
||
| 870 | 930 | { |
| 871 | 931 | require_once($sourcedir . '/Class-Package.php'); |
| 872 | 932 | $ftp = new ftp_connection(null); |
| 933 | + } elseif ($ftp->error !== false && !isset($ftp_error)) { |
|
| 934 | + $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 873 | 935 | } |
| 874 | - elseif ($ftp->error !== false && !isset($ftp_error)) |
|
| 875 | - $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 876 | 936 | |
| 877 | 937 | list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir); |
| 878 | 938 | |
| 879 | - if ($found_path) |
|
| 880 | - $_POST['ftp_path'] = $detect_path; |
|
| 881 | - elseif (!isset($_POST['ftp_path'])) |
|
| 882 | - $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 939 | + if ($found_path) { |
|
| 940 | + $_POST['ftp_path'] = $detect_path; |
|
| 941 | + } elseif (!isset($_POST['ftp_path'])) { |
|
| 942 | + $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 943 | + } |
|
| 883 | 944 | |
| 884 | - if (!isset($_POST['ftp_username'])) |
|
| 885 | - $_POST['ftp_username'] = $username; |
|
| 945 | + if (!isset($_POST['ftp_username'])) { |
|
| 946 | + $_POST['ftp_username'] = $username; |
|
| 947 | + } |
|
| 886 | 948 | } |
| 887 | 949 | |
| 888 | 950 | $context['package_ftp'] = array( |
@@ -895,8 +957,9 @@ discard block |
||
| 895 | 957 | ); |
| 896 | 958 | |
| 897 | 959 | // Which files failed? |
| 898 | - if (!isset($context['notwritable_files'])) |
|
| 899 | - $context['notwritable_files'] = array(); |
|
| 960 | + if (!isset($context['notwritable_files'])) { |
|
| 961 | + $context['notwritable_files'] = array(); |
|
| 962 | + } |
|
| 900 | 963 | $context['notwritable_files'] = array_merge($context['notwritable_files'], $return_data['files']['notwritable']); |
| 901 | 964 | |
| 902 | 965 | // Sent here to die? |
@@ -929,40 +992,48 @@ discard block |
||
| 929 | 992 | foreach ($files as $k => $file) |
| 930 | 993 | { |
| 931 | 994 | // If this file doesn't exist, then we actually want to look at the directory, no? |
| 932 | - if (!file_exists($file)) |
|
| 933 | - $file = dirname($file); |
|
| 995 | + if (!file_exists($file)) { |
|
| 996 | + $file = dirname($file); |
|
| 997 | + } |
|
| 934 | 998 | |
| 935 | 999 | // This looks odd, but it's an attempt to work around PHP suExec. |
| 936 | - if (!@is_writable($file)) |
|
| 937 | - smf_chmod($file, 0755); |
|
| 938 | - if (!@is_writable($file)) |
|
| 939 | - smf_chmod($file, 0777); |
|
| 940 | - if (!@is_writable(dirname($file))) |
|
| 941 | - smf_chmod($file, 0755); |
|
| 942 | - if (!@is_writable(dirname($file))) |
|
| 943 | - smf_chmod($file, 0777); |
|
| 1000 | + if (!@is_writable($file)) { |
|
| 1001 | + smf_chmod($file, 0755); |
|
| 1002 | + } |
|
| 1003 | + if (!@is_writable($file)) { |
|
| 1004 | + smf_chmod($file, 0777); |
|
| 1005 | + } |
|
| 1006 | + if (!@is_writable(dirname($file))) { |
|
| 1007 | + smf_chmod($file, 0755); |
|
| 1008 | + } |
|
| 1009 | + if (!@is_writable(dirname($file))) { |
|
| 1010 | + smf_chmod($file, 0777); |
|
| 1011 | + } |
|
| 944 | 1012 | |
| 945 | 1013 | $fp = is_dir($file) ? @opendir($file) : @fopen($file, 'rb'); |
| 946 | 1014 | if (@is_writable($file) && $fp) |
| 947 | 1015 | { |
| 948 | 1016 | unset($files[$k]); |
| 949 | - if (!is_dir($file)) |
|
| 950 | - fclose($fp); |
|
| 951 | - else |
|
| 952 | - closedir($fp); |
|
| 1017 | + if (!is_dir($file)) { |
|
| 1018 | + fclose($fp); |
|
| 1019 | + } else { |
|
| 1020 | + closedir($fp); |
|
| 1021 | + } |
|
| 953 | 1022 | } |
| 954 | 1023 | } |
| 955 | 1024 | |
| 956 | 1025 | // No FTP required! |
| 957 | - if (empty($files)) |
|
| 958 | - return array(); |
|
| 1026 | + if (empty($files)) { |
|
| 1027 | + return array(); |
|
| 1028 | + } |
|
| 959 | 1029 | } |
| 960 | 1030 | |
| 961 | 1031 | // They've opted to not use FTP, and try anyway. |
| 962 | 1032 | if (isset($_SESSION['pack_ftp']) && $_SESSION['pack_ftp'] == false) |
| 963 | 1033 | { |
| 964 | - if ($files === null) |
|
| 965 | - return array(); |
|
| 1034 | + if ($files === null) { |
|
| 1035 | + return array(); |
|
| 1036 | + } |
|
| 966 | 1037 | |
| 967 | 1038 | foreach ($files as $k => $file) |
| 968 | 1039 | { |
@@ -974,26 +1045,29 @@ discard block |
||
| 974 | 1045 | smf_chmod($file, 0755); |
| 975 | 1046 | } |
| 976 | 1047 | |
| 977 | - if (!@is_writable($file)) |
|
| 978 | - smf_chmod($file, 0777); |
|
| 979 | - if (!@is_writable(dirname($file))) |
|
| 980 | - smf_chmod(dirname($file), 0777); |
|
| 1048 | + if (!@is_writable($file)) { |
|
| 1049 | + smf_chmod($file, 0777); |
|
| 1050 | + } |
|
| 1051 | + if (!@is_writable(dirname($file))) { |
|
| 1052 | + smf_chmod(dirname($file), 0777); |
|
| 1053 | + } |
|
| 981 | 1054 | |
| 982 | - if (@is_writable($file)) |
|
| 983 | - unset($files[$k]); |
|
| 1055 | + if (@is_writable($file)) { |
|
| 1056 | + unset($files[$k]); |
|
| 1057 | + } |
|
| 984 | 1058 | } |
| 985 | 1059 | |
| 986 | 1060 | return $files; |
| 987 | - } |
|
| 988 | - elseif (isset($_SESSION['pack_ftp'])) |
|
| 1061 | + } elseif (isset($_SESSION['pack_ftp'])) |
|
| 989 | 1062 | { |
| 990 | 1063 | // Load the file containing the ftp_connection class. |
| 991 | 1064 | require_once($sourcedir . '/Class-Package.php'); |
| 992 | 1065 | |
| 993 | 1066 | $package_ftp = new ftp_connection($_SESSION['pack_ftp']['server'], $_SESSION['pack_ftp']['port'], $_SESSION['pack_ftp']['username'], package_crypt($_SESSION['pack_ftp']['password'])); |
| 994 | 1067 | |
| 995 | - if ($files === null) |
|
| 996 | - return array(); |
|
| 1068 | + if ($files === null) { |
|
| 1069 | + return array(); |
|
| 1070 | + } |
|
| 997 | 1071 | |
| 998 | 1072 | foreach ($files as $k => $file) |
| 999 | 1073 | { |
@@ -1007,13 +1081,16 @@ discard block |
||
| 1007 | 1081 | $package_ftp->chmod($ftp_file, 0755); |
| 1008 | 1082 | } |
| 1009 | 1083 | |
| 1010 | - if (!@is_writable($file)) |
|
| 1011 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1012 | - if (!@is_writable(dirname($file))) |
|
| 1013 | - $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 1084 | + if (!@is_writable($file)) { |
|
| 1085 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1086 | + } |
|
| 1087 | + if (!@is_writable(dirname($file))) { |
|
| 1088 | + $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 1089 | + } |
|
| 1014 | 1090 | |
| 1015 | - if (@is_writable($file)) |
|
| 1016 | - unset($files[$k]); |
|
| 1091 | + if (@is_writable($file)) { |
|
| 1092 | + unset($files[$k]); |
|
| 1093 | + } |
|
| 1017 | 1094 | } |
| 1018 | 1095 | |
| 1019 | 1096 | return $files; |
@@ -1025,8 +1102,7 @@ discard block |
||
| 1025 | 1102 | |
| 1026 | 1103 | $files = packageRequireFTP($destination_url, $files, $return); |
| 1027 | 1104 | return $files; |
| 1028 | - } |
|
| 1029 | - elseif (isset($_POST['ftp_username'])) |
|
| 1105 | + } elseif (isset($_POST['ftp_username'])) |
|
| 1030 | 1106 | { |
| 1031 | 1107 | require_once($sourcedir . '/Class-Package.php'); |
| 1032 | 1108 | $ftp = new ftp_connection($_POST['ftp_server'], $_POST['ftp_port'], $_POST['ftp_username'], $_POST['ftp_password']); |
@@ -1048,19 +1124,21 @@ discard block |
||
| 1048 | 1124 | { |
| 1049 | 1125 | require_once($sourcedir . '/Class-Package.php'); |
| 1050 | 1126 | $ftp = new ftp_connection(null); |
| 1127 | + } elseif ($ftp->error !== false && !isset($ftp_error)) { |
|
| 1128 | + $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 1051 | 1129 | } |
| 1052 | - elseif ($ftp->error !== false && !isset($ftp_error)) |
|
| 1053 | - $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 1054 | 1130 | |
| 1055 | 1131 | list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir); |
| 1056 | 1132 | |
| 1057 | - if ($found_path) |
|
| 1058 | - $_POST['ftp_path'] = $detect_path; |
|
| 1059 | - elseif (!isset($_POST['ftp_path'])) |
|
| 1060 | - $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 1133 | + if ($found_path) { |
|
| 1134 | + $_POST['ftp_path'] = $detect_path; |
|
| 1135 | + } elseif (!isset($_POST['ftp_path'])) { |
|
| 1136 | + $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 1137 | + } |
|
| 1061 | 1138 | |
| 1062 | - if (!isset($_POST['ftp_username'])) |
|
| 1063 | - $_POST['ftp_username'] = $username; |
|
| 1139 | + if (!isset($_POST['ftp_username'])) { |
|
| 1140 | + $_POST['ftp_username'] = $username; |
|
| 1141 | + } |
|
| 1064 | 1142 | |
| 1065 | 1143 | $context['package_ftp'] = array( |
| 1066 | 1144 | 'server' => isset($_POST['ftp_server']) ? $_POST['ftp_server'] : (isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost'), |
@@ -1072,23 +1150,24 @@ discard block |
||
| 1072 | 1150 | ); |
| 1073 | 1151 | |
| 1074 | 1152 | // If we're returning dump out here. |
| 1075 | - if ($return) |
|
| 1076 | - return $files; |
|
| 1153 | + if ($return) { |
|
| 1154 | + return $files; |
|
| 1155 | + } |
|
| 1077 | 1156 | |
| 1078 | 1157 | $context['page_title'] = $txt['package_ftp_necessary']; |
| 1079 | 1158 | $context['sub_template'] = 'ftp_required'; |
| 1080 | 1159 | obExit(); |
| 1081 | - } |
|
| 1082 | - else |
|
| 1160 | + } else |
|
| 1083 | 1161 | { |
| 1084 | 1162 | if (!in_array($_POST['ftp_path'], array('', '/'))) |
| 1085 | 1163 | { |
| 1086 | 1164 | $ftp_root = strtr($boarddir, array($_POST['ftp_path'] => '')); |
| 1087 | - if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || $_POST['ftp_path'][0] == '/')) |
|
| 1088 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 1165 | + if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || $_POST['ftp_path'][0] == '/')) { |
|
| 1166 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 1167 | + } |
|
| 1168 | + } else { |
|
| 1169 | + $ftp_root = $boarddir; |
|
| 1089 | 1170 | } |
| 1090 | - else |
|
| 1091 | - $ftp_root = $boarddir; |
|
| 1092 | 1171 | |
| 1093 | 1172 | $_SESSION['pack_ftp'] = array( |
| 1094 | 1173 | 'server' => $_POST['ftp_server'], |
@@ -1099,8 +1178,9 @@ discard block |
||
| 1099 | 1178 | 'root' => $ftp_root, |
| 1100 | 1179 | ); |
| 1101 | 1180 | |
| 1102 | - if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) |
|
| 1103 | - updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 1181 | + if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) { |
|
| 1182 | + updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 1183 | + } |
|
| 1104 | 1184 | |
| 1105 | 1185 | $files = packageRequireFTP($destination_url, $files, $return); |
| 1106 | 1186 | } |
@@ -1128,16 +1208,18 @@ discard block |
||
| 1128 | 1208 | global $packagesdir, $forum_version, $context, $temp_path, $language, $smcFunc; |
| 1129 | 1209 | |
| 1130 | 1210 | // Mayday! That action doesn't exist!! |
| 1131 | - if (empty($packageXML) || !$packageXML->exists($method)) |
|
| 1132 | - return array(); |
|
| 1211 | + if (empty($packageXML) || !$packageXML->exists($method)) { |
|
| 1212 | + return array(); |
|
| 1213 | + } |
|
| 1133 | 1214 | |
| 1134 | 1215 | // We haven't found the package script yet... |
| 1135 | 1216 | $script = false; |
| 1136 | 1217 | $the_version = strtr($forum_version, array('SMF ' => '')); |
| 1137 | 1218 | |
| 1138 | 1219 | // Emulation support... |
| 1139 | - if (!empty($_SESSION['version_emulate'])) |
|
| 1140 | - $the_version = $_SESSION['version_emulate']; |
|
| 1220 | + if (!empty($_SESSION['version_emulate'])) { |
|
| 1221 | + $the_version = $_SESSION['version_emulate']; |
|
| 1222 | + } |
|
| 1141 | 1223 | |
| 1142 | 1224 | // Single package emulation |
| 1143 | 1225 | if (!empty($_REQUEST['ve']) && !empty($_REQUEST['package'])) |
@@ -1145,8 +1227,9 @@ discard block |
||
| 1145 | 1227 | $the_version = $_REQUEST['ve']; |
| 1146 | 1228 | $_SESSION['single_version_emulate'][$_REQUEST['package']] = $the_version; |
| 1147 | 1229 | } |
| 1148 | - if (!empty($_REQUEST['package']) && (!empty($_SESSION['single_version_emulate'][$_REQUEST['package']]))) |
|
| 1149 | - $the_version = $_SESSION['single_version_emulate'][$_REQUEST['package']]; |
|
| 1230 | + if (!empty($_REQUEST['package']) && (!empty($_SESSION['single_version_emulate'][$_REQUEST['package']]))) { |
|
| 1231 | + $the_version = $_SESSION['single_version_emulate'][$_REQUEST['package']]; |
|
| 1232 | + } |
|
| 1150 | 1233 | |
| 1151 | 1234 | // Get all the versions of this method and find the right one. |
| 1152 | 1235 | $these_methods = $packageXML->set($method); |
@@ -1156,16 +1239,18 @@ discard block |
||
| 1156 | 1239 | if ($this_method->exists('@for')) |
| 1157 | 1240 | { |
| 1158 | 1241 | // Don't keep going if this won't work for this version of SMF. |
| 1159 | - if (!matchPackageVersion($the_version, $this_method->fetch('@for'))) |
|
| 1160 | - continue; |
|
| 1242 | + if (!matchPackageVersion($the_version, $this_method->fetch('@for'))) { |
|
| 1243 | + continue; |
|
| 1244 | + } |
|
| 1161 | 1245 | } |
| 1162 | 1246 | |
| 1163 | 1247 | // Upgrades may go from a certain old version of the mod. |
| 1164 | 1248 | if ($method == 'upgrade' && $this_method->exists('@from')) |
| 1165 | 1249 | { |
| 1166 | 1250 | // Well, this is for the wrong old version... |
| 1167 | - if (!matchPackageVersion($previous_version, $this_method->fetch('@from'))) |
|
| 1168 | - continue; |
|
| 1251 | + if (!matchPackageVersion($previous_version, $this_method->fetch('@from'))) { |
|
| 1252 | + continue; |
|
| 1253 | + } |
|
| 1169 | 1254 | } |
| 1170 | 1255 | |
| 1171 | 1256 | // We've found it! |
@@ -1174,8 +1259,9 @@ discard block |
||
| 1174 | 1259 | } |
| 1175 | 1260 | |
| 1176 | 1261 | // Bad news, a matching script wasn't found! |
| 1177 | - if (!($script instanceof xmlArray)) |
|
| 1178 | - return array(); |
|
| 1262 | + if (!($script instanceof xmlArray)) { |
|
| 1263 | + return array(); |
|
| 1264 | + } |
|
| 1179 | 1265 | |
| 1180 | 1266 | // Find all the actions in this method - in theory, these should only be allowed actions. (* means all.) |
| 1181 | 1267 | $actions = $script->set('*'); |
@@ -1204,12 +1290,12 @@ discard block |
||
| 1204 | 1290 | if ((isset($_REQUEST['readme']) && $action->fetch('@lang') == $_REQUEST['readme']) || (isset($_REQUEST['license']) && $action->fetch('@lang') == $_REQUEST['license']) || (!isset($_REQUEST['readme']) && $action->fetch('@lang') == $language) || (!isset($_REQUEST['license']) && $action->fetch('@lang') == $language)) |
| 1205 | 1291 | { |
| 1206 | 1292 | // In case the user put the blocks in the wrong order. |
| 1207 | - if (isset($context[$type]['selected']) && $context[$type]['selected'] == 'default') |
|
| 1208 | - $context[$type][] = 'default'; |
|
| 1293 | + if (isset($context[$type]['selected']) && $context[$type]['selected'] == 'default') { |
|
| 1294 | + $context[$type][] = 'default'; |
|
| 1295 | + } |
|
| 1209 | 1296 | |
| 1210 | 1297 | $context[$type]['selected'] = $smcFunc['htmlspecialchars']($action->fetch('@lang')); |
| 1211 | - } |
|
| 1212 | - else |
|
| 1298 | + } else |
|
| 1213 | 1299 | { |
| 1214 | 1300 | // We don't want this now, but we'll allow the user to select to read it. |
| 1215 | 1301 | $context[$type][] = $smcFunc['htmlspecialchars']($action->fetch('@lang')); |
@@ -1224,9 +1310,9 @@ discard block |
||
| 1224 | 1310 | { |
| 1225 | 1311 | $context[$type][] = 'default'; |
| 1226 | 1312 | continue; |
| 1313 | + } else { |
|
| 1314 | + $context[$type]['selected'] = 'default'; |
|
| 1227 | 1315 | } |
| 1228 | - else |
|
| 1229 | - $context[$type]['selected'] = 'default'; |
|
| 1230 | 1316 | } |
| 1231 | 1317 | } |
| 1232 | 1318 | |
@@ -1236,9 +1322,9 @@ discard block |
||
| 1236 | 1322 | $filename = $temp_path . '$auto_' . $temp_auto++ . (in_array($actionType, array('readme', 'redirect', 'license')) ? '.txt' : ($actionType == 'code' || $actionType == 'database' ? '.php' : '.mod')); |
| 1237 | 1323 | package_put_contents($filename, $action->fetch('.')); |
| 1238 | 1324 | $filename = strtr($filename, array($temp_path => '')); |
| 1325 | + } else { |
|
| 1326 | + $filename = $action->fetch('.'); |
|
| 1239 | 1327 | } |
| 1240 | - else |
|
| 1241 | - $filename = $action->fetch('.'); |
|
| 1242 | 1328 | |
| 1243 | 1329 | $return[] = array( |
| 1244 | 1330 | 'type' => $actionType, |
@@ -1253,8 +1339,7 @@ discard block |
||
| 1253 | 1339 | ); |
| 1254 | 1340 | |
| 1255 | 1341 | continue; |
| 1256 | - } |
|
| 1257 | - elseif ($actionType == 'hook') |
|
| 1342 | + } elseif ($actionType == 'hook') |
|
| 1258 | 1343 | { |
| 1259 | 1344 | $return[] = array( |
| 1260 | 1345 | 'type' => $actionType, |
@@ -1266,16 +1351,16 @@ discard block |
||
| 1266 | 1351 | 'description' => '', |
| 1267 | 1352 | ); |
| 1268 | 1353 | continue; |
| 1269 | - } |
|
| 1270 | - elseif ($actionType == 'credits') |
|
| 1354 | + } elseif ($actionType == 'credits') |
|
| 1271 | 1355 | { |
| 1272 | 1356 | // quick check of any supplied url |
| 1273 | 1357 | $url = $action->exists('@url') ? $action->fetch('@url') : ''; |
| 1274 | 1358 | if (strlen(trim($url)) > 0 && substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://') |
| 1275 | 1359 | { |
| 1276 | 1360 | $url = 'http://' . $url; |
| 1277 | - if (strlen($url) < 8 || (substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://')) |
|
| 1278 | - $url = ''; |
|
| 1361 | + if (strlen($url) < 8 || (substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://')) { |
|
| 1362 | + $url = ''; |
|
| 1363 | + } |
|
| 1279 | 1364 | } |
| 1280 | 1365 | |
| 1281 | 1366 | $return[] = array( |
@@ -1287,8 +1372,7 @@ discard block |
||
| 1287 | 1372 | 'title' => $action->fetch('.'), |
| 1288 | 1373 | ); |
| 1289 | 1374 | continue; |
| 1290 | - } |
|
| 1291 | - elseif ($actionType == 'requires') |
|
| 1375 | + } elseif ($actionType == 'requires') |
|
| 1292 | 1376 | { |
| 1293 | 1377 | $return[] = array( |
| 1294 | 1378 | 'type' => $actionType, |
@@ -1297,14 +1381,12 @@ discard block |
||
| 1297 | 1381 | 'description' => '', |
| 1298 | 1382 | ); |
| 1299 | 1383 | continue; |
| 1300 | - } |
|
| 1301 | - elseif ($actionType == 'error') |
|
| 1384 | + } elseif ($actionType == 'error') |
|
| 1302 | 1385 | { |
| 1303 | 1386 | $return[] = array( |
| 1304 | 1387 | 'type' => 'error', |
| 1305 | 1388 | ); |
| 1306 | - } |
|
| 1307 | - elseif (in_array($actionType, array('require-file', 'remove-file', 'require-dir', 'remove-dir', 'move-file', 'move-dir', 'create-file', 'create-dir'))) |
|
| 1389 | + } elseif (in_array($actionType, array('require-file', 'remove-file', 'require-dir', 'remove-dir', 'move-file', 'move-dir', 'create-file', 'create-dir'))) |
|
| 1308 | 1390 | { |
| 1309 | 1391 | $this_action = &$return[]; |
| 1310 | 1392 | $this_action = array( |
@@ -1318,8 +1400,7 @@ discard block |
||
| 1318 | 1400 | { |
| 1319 | 1401 | $this_action['unparsed_destination'] = $action->fetch('@destination'); |
| 1320 | 1402 | $this_action['destination'] = parse_path($action->fetch('@destination')) . '/' . basename($this_action['filename']); |
| 1321 | - } |
|
| 1322 | - else |
|
| 1403 | + } else |
|
| 1323 | 1404 | { |
| 1324 | 1405 | $this_action['unparsed_filename'] = $this_action['filename']; |
| 1325 | 1406 | $this_action['filename'] = parse_path($this_action['filename']); |
@@ -1328,10 +1409,11 @@ discard block |
||
| 1328 | 1409 | // If we're moving or requiring (copying) a file. |
| 1329 | 1410 | if (substr($actionType, 0, 4) == 'move' || substr($actionType, 0, 7) == 'require') |
| 1330 | 1411 | { |
| 1331 | - if ($action->exists('@from')) |
|
| 1332 | - $this_action['source'] = parse_path($action->fetch('@from')); |
|
| 1333 | - else |
|
| 1334 | - $this_action['source'] = $temp_path . $this_action['filename']; |
|
| 1412 | + if ($action->exists('@from')) { |
|
| 1413 | + $this_action['source'] = parse_path($action->fetch('@from')); |
|
| 1414 | + } else { |
|
| 1415 | + $this_action['source'] = $temp_path . $this_action['filename']; |
|
| 1416 | + } |
|
| 1335 | 1417 | } |
| 1336 | 1418 | |
| 1337 | 1419 | // Check if these things can be done. (chmod's etc.) |
@@ -1340,22 +1422,23 @@ discard block |
||
| 1340 | 1422 | if (!mktree($this_action['destination'], false)) |
| 1341 | 1423 | { |
| 1342 | 1424 | $temp = $this_action['destination']; |
| 1343 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1344 | - $temp = dirname($temp); |
|
| 1425 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1426 | + $temp = dirname($temp); |
|
| 1427 | + } |
|
| 1345 | 1428 | |
| 1346 | 1429 | $return[] = array( |
| 1347 | 1430 | 'type' => 'chmod', |
| 1348 | 1431 | 'filename' => $temp |
| 1349 | 1432 | ); |
| 1350 | 1433 | } |
| 1351 | - } |
|
| 1352 | - elseif ($actionType == 'create-file') |
|
| 1434 | + } elseif ($actionType == 'create-file') |
|
| 1353 | 1435 | { |
| 1354 | 1436 | if (!mktree(dirname($this_action['destination']), false)) |
| 1355 | 1437 | { |
| 1356 | 1438 | $temp = dirname($this_action['destination']); |
| 1357 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1358 | - $temp = dirname($temp); |
|
| 1439 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1440 | + $temp = dirname($temp); |
|
| 1441 | + } |
|
| 1359 | 1442 | |
| 1360 | 1443 | $return[] = array( |
| 1361 | 1444 | 'type' => 'chmod', |
@@ -1363,36 +1446,38 @@ discard block |
||
| 1363 | 1446 | ); |
| 1364 | 1447 | } |
| 1365 | 1448 | |
| 1366 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1367 | - $return[] = array( |
|
| 1449 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1450 | + $return[] = array( |
|
| 1368 | 1451 | 'type' => 'chmod', |
| 1369 | 1452 | 'filename' => $this_action['destination'] |
| 1370 | 1453 | ); |
| 1371 | - } |
|
| 1372 | - elseif ($actionType == 'require-dir') |
|
| 1454 | + } |
|
| 1455 | + } elseif ($actionType == 'require-dir') |
|
| 1373 | 1456 | { |
| 1374 | 1457 | if (!mktree($this_action['destination'], false)) |
| 1375 | 1458 | { |
| 1376 | 1459 | $temp = $this_action['destination']; |
| 1377 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1378 | - $temp = dirname($temp); |
|
| 1460 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1461 | + $temp = dirname($temp); |
|
| 1462 | + } |
|
| 1379 | 1463 | |
| 1380 | 1464 | $return[] = array( |
| 1381 | 1465 | 'type' => 'chmod', |
| 1382 | 1466 | 'filename' => $temp |
| 1383 | 1467 | ); |
| 1384 | 1468 | } |
| 1385 | - } |
|
| 1386 | - elseif ($actionType == 'require-file') |
|
| 1469 | + } elseif ($actionType == 'require-file') |
|
| 1387 | 1470 | { |
| 1388 | - if ($action->exists('@theme')) |
|
| 1389 | - $this_action['theme_action'] = $action->fetch('@theme'); |
|
| 1471 | + if ($action->exists('@theme')) { |
|
| 1472 | + $this_action['theme_action'] = $action->fetch('@theme'); |
|
| 1473 | + } |
|
| 1390 | 1474 | |
| 1391 | 1475 | if (!mktree(dirname($this_action['destination']), false)) |
| 1392 | 1476 | { |
| 1393 | 1477 | $temp = dirname($this_action['destination']); |
| 1394 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1395 | - $temp = dirname($temp); |
|
| 1478 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1479 | + $temp = dirname($temp); |
|
| 1480 | + } |
|
| 1396 | 1481 | |
| 1397 | 1482 | $return[] = array( |
| 1398 | 1483 | 'type' => 'chmod', |
@@ -1400,19 +1485,20 @@ discard block |
||
| 1400 | 1485 | ); |
| 1401 | 1486 | } |
| 1402 | 1487 | |
| 1403 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1404 | - $return[] = array( |
|
| 1488 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1489 | + $return[] = array( |
|
| 1405 | 1490 | 'type' => 'chmod', |
| 1406 | 1491 | 'filename' => $this_action['destination'] |
| 1407 | 1492 | ); |
| 1408 | - } |
|
| 1409 | - elseif ($actionType == 'move-dir' || $actionType == 'move-file') |
|
| 1493 | + } |
|
| 1494 | + } elseif ($actionType == 'move-dir' || $actionType == 'move-file') |
|
| 1410 | 1495 | { |
| 1411 | 1496 | if (!mktree(dirname($this_action['destination']), false)) |
| 1412 | 1497 | { |
| 1413 | 1498 | $temp = dirname($this_action['destination']); |
| 1414 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1415 | - $temp = dirname($temp); |
|
| 1499 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1500 | + $temp = dirname($temp); |
|
| 1501 | + } |
|
| 1416 | 1502 | |
| 1417 | 1503 | $return[] = array( |
| 1418 | 1504 | 'type' => 'chmod', |
@@ -1420,30 +1506,30 @@ discard block |
||
| 1420 | 1506 | ); |
| 1421 | 1507 | } |
| 1422 | 1508 | |
| 1423 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1424 | - $return[] = array( |
|
| 1509 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1510 | + $return[] = array( |
|
| 1425 | 1511 | 'type' => 'chmod', |
| 1426 | 1512 | 'filename' => $this_action['destination'] |
| 1427 | 1513 | ); |
| 1428 | - } |
|
| 1429 | - elseif ($actionType == 'remove-dir') |
|
| 1514 | + } |
|
| 1515 | + } elseif ($actionType == 'remove-dir') |
|
| 1430 | 1516 | { |
| 1431 | - if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1432 | - $return[] = array( |
|
| 1517 | + if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) { |
|
| 1518 | + $return[] = array( |
|
| 1433 | 1519 | 'type' => 'chmod', |
| 1434 | 1520 | 'filename' => $this_action['filename'] |
| 1435 | 1521 | ); |
| 1436 | - } |
|
| 1437 | - elseif ($actionType == 'remove-file') |
|
| 1522 | + } |
|
| 1523 | + } elseif ($actionType == 'remove-file') |
|
| 1438 | 1524 | { |
| 1439 | - if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1440 | - $return[] = array( |
|
| 1525 | + if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) { |
|
| 1526 | + $return[] = array( |
|
| 1441 | 1527 | 'type' => 'chmod', |
| 1442 | 1528 | 'filename' => $this_action['filename'] |
| 1443 | 1529 | ); |
| 1530 | + } |
|
| 1444 | 1531 | } |
| 1445 | - } |
|
| 1446 | - else |
|
| 1532 | + } else |
|
| 1447 | 1533 | { |
| 1448 | 1534 | $return[] = array( |
| 1449 | 1535 | 'type' => 'error', |
@@ -1454,8 +1540,9 @@ discard block |
||
| 1454 | 1540 | } |
| 1455 | 1541 | |
| 1456 | 1542 | // Only testing - just return a list of things to be done. |
| 1457 | - if ($testing_only) |
|
| 1458 | - return $return; |
|
| 1543 | + if ($testing_only) { |
|
| 1544 | + return $return; |
|
| 1545 | + } |
|
| 1459 | 1546 | |
| 1460 | 1547 | umask(0); |
| 1461 | 1548 | |
@@ -1463,78 +1550,81 @@ discard block |
||
| 1463 | 1550 | $not_done = array(array('type' => '!')); |
| 1464 | 1551 | foreach ($return as $action) |
| 1465 | 1552 | { |
| 1466 | - if (in_array($action['type'], array('modification', 'code', 'database', 'redirect', 'hook', 'credits'))) |
|
| 1467 | - $not_done[] = $action; |
|
| 1553 | + if (in_array($action['type'], array('modification', 'code', 'database', 'redirect', 'hook', 'credits'))) { |
|
| 1554 | + $not_done[] = $action; |
|
| 1555 | + } |
|
| 1468 | 1556 | |
| 1469 | 1557 | if ($action['type'] == 'create-dir') |
| 1470 | 1558 | { |
| 1471 | - if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) |
|
| 1472 | - $failure |= !mktree($action['destination'], 0777); |
|
| 1473 | - } |
|
| 1474 | - elseif ($action['type'] == 'create-file') |
|
| 1559 | + if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) { |
|
| 1560 | + $failure |= !mktree($action['destination'], 0777); |
|
| 1561 | + } |
|
| 1562 | + } elseif ($action['type'] == 'create-file') |
|
| 1475 | 1563 | { |
| 1476 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1477 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1564 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1565 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1566 | + } |
|
| 1478 | 1567 | |
| 1479 | 1568 | // Create an empty file. |
| 1480 | 1569 | package_put_contents($action['destination'], package_get_contents($action['source']), $testing_only); |
| 1481 | 1570 | |
| 1482 | - if (!file_exists($action['destination'])) |
|
| 1483 | - $failure = true; |
|
| 1484 | - } |
|
| 1485 | - elseif ($action['type'] == 'require-dir') |
|
| 1571 | + if (!file_exists($action['destination'])) { |
|
| 1572 | + $failure = true; |
|
| 1573 | + } |
|
| 1574 | + } elseif ($action['type'] == 'require-dir') |
|
| 1486 | 1575 | { |
| 1487 | 1576 | copytree($action['source'], $action['destination']); |
| 1488 | 1577 | // Any other theme folders? |
| 1489 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) |
|
| 1490 | - foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1578 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) { |
|
| 1579 | + foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1491 | 1580 | copytree($action['source'], $theme_destination); |
| 1492 | - } |
|
| 1493 | - elseif ($action['type'] == 'require-file') |
|
| 1581 | + } |
|
| 1582 | + } elseif ($action['type'] == 'require-file') |
|
| 1494 | 1583 | { |
| 1495 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1496 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1584 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1585 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1586 | + } |
|
| 1497 | 1587 | |
| 1498 | 1588 | package_put_contents($action['destination'], package_get_contents($action['source']), $testing_only); |
| 1499 | 1589 | |
| 1500 | 1590 | $failure |= !copy($action['source'], $action['destination']); |
| 1501 | 1591 | |
| 1502 | 1592 | // Any other theme files? |
| 1503 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) |
|
| 1504 | - foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1593 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) { |
|
| 1594 | + foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1505 | 1595 | { |
| 1506 | 1596 | if (!mktree(dirname($theme_destination), 0755) || !is_writable(dirname($theme_destination))) |
| 1507 | 1597 | $failure |= !mktree(dirname($theme_destination), 0777); |
| 1598 | + } |
|
| 1508 | 1599 | |
| 1509 | 1600 | package_put_contents($theme_destination, package_get_contents($action['source']), $testing_only); |
| 1510 | 1601 | |
| 1511 | 1602 | $failure |= !copy($action['source'], $theme_destination); |
| 1512 | 1603 | } |
| 1513 | - } |
|
| 1514 | - elseif ($action['type'] == 'move-file') |
|
| 1604 | + } elseif ($action['type'] == 'move-file') |
|
| 1515 | 1605 | { |
| 1516 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1517 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1606 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1607 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1608 | + } |
|
| 1518 | 1609 | |
| 1519 | 1610 | $failure |= !rename($action['source'], $action['destination']); |
| 1520 | - } |
|
| 1521 | - elseif ($action['type'] == 'move-dir') |
|
| 1611 | + } elseif ($action['type'] == 'move-dir') |
|
| 1522 | 1612 | { |
| 1523 | - if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) |
|
| 1524 | - $failure |= !mktree($action['destination'], 0777); |
|
| 1613 | + if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) { |
|
| 1614 | + $failure |= !mktree($action['destination'], 0777); |
|
| 1615 | + } |
|
| 1525 | 1616 | |
| 1526 | 1617 | $failure |= !rename($action['source'], $action['destination']); |
| 1527 | - } |
|
| 1528 | - elseif ($action['type'] == 'remove-dir') |
|
| 1618 | + } elseif ($action['type'] == 'remove-dir') |
|
| 1529 | 1619 | { |
| 1530 | 1620 | deltree($action['filename']); |
| 1531 | 1621 | |
| 1532 | 1622 | // Any other theme folders? |
| 1533 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) |
|
| 1534 | - foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1623 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) { |
|
| 1624 | + foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1535 | 1625 | deltree($theme_destination); |
| 1536 | - } |
|
| 1537 | - elseif ($action['type'] == 'remove-file') |
|
| 1626 | + } |
|
| 1627 | + } elseif ($action['type'] == 'remove-file') |
|
| 1538 | 1628 | { |
| 1539 | 1629 | // Make sure the file exists before deleting it. |
| 1540 | 1630 | if (file_exists($action['filename'])) |
@@ -1543,16 +1633,18 @@ discard block |
||
| 1543 | 1633 | $failure |= !unlink($action['filename']); |
| 1544 | 1634 | } |
| 1545 | 1635 | // The file that was supposed to be deleted couldn't be found. |
| 1546 | - else |
|
| 1547 | - $failure = true; |
|
| 1636 | + else { |
|
| 1637 | + $failure = true; |
|
| 1638 | + } |
|
| 1548 | 1639 | |
| 1549 | 1640 | // Any other theme folders? |
| 1550 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) |
|
| 1551 | - foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1641 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) { |
|
| 1642 | + foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1552 | 1643 | if (file_exists($theme_destination)) |
| 1553 | 1644 | $failure |= !unlink($theme_destination); |
| 1554 | - else |
|
| 1555 | - $failure = true; |
|
| 1645 | + } else { |
|
| 1646 | + $failure = true; |
|
| 1647 | + } |
|
| 1556 | 1648 | } |
| 1557 | 1649 | } |
| 1558 | 1650 | |
@@ -1574,8 +1666,9 @@ discard block |
||
| 1574 | 1666 | { |
| 1575 | 1667 | static $near_version = 0; |
| 1576 | 1668 | |
| 1577 | - if ($reset) |
|
| 1578 | - $near_version = 0; |
|
| 1669 | + if ($reset) { |
|
| 1670 | + $near_version = 0; |
|
| 1671 | + } |
|
| 1579 | 1672 | |
| 1580 | 1673 | // Normalize the $versions while we remove our previous Doh! |
| 1581 | 1674 | $versions = explode(',', str_replace(array(' ', '2.0rc1-1'), array('', '2.0rc1.1'), strtolower($versions))); |
@@ -1584,16 +1677,19 @@ discard block |
||
| 1584 | 1677 | foreach ($versions as $for) |
| 1585 | 1678 | { |
| 1586 | 1679 | // Adjust for those wild cards |
| 1587 | - if (strpos($for, '*') !== false) |
|
| 1588 | - $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1680 | + if (strpos($for, '*') !== false) { |
|
| 1681 | + $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1682 | + } |
|
| 1589 | 1683 | |
| 1590 | 1684 | // If we have a range, grab the lower value, done this way so it looks normal-er to the user e.g. 2.0 vs 2.0.99 |
| 1591 | - if (strpos($for, '-') !== false) |
|
| 1592 | - list ($for, $higher) = explode('-', $for); |
|
| 1685 | + if (strpos($for, '-') !== false) { |
|
| 1686 | + list ($for, $higher) = explode('-', $for); |
|
| 1687 | + } |
|
| 1593 | 1688 | |
| 1594 | 1689 | // Do the compare, if the for is greater, than what we have but not greater than what we are running ..... |
| 1595 | - if (compareVersions($near_version, $for) === -1 && compareVersions($for, $the_version) !== 1) |
|
| 1596 | - $near_version = $for; |
|
| 1690 | + if (compareVersions($near_version, $for) === -1 && compareVersions($for, $the_version) !== 1) { |
|
| 1691 | + $near_version = $for; |
|
| 1692 | + } |
|
| 1597 | 1693 | } |
| 1598 | 1694 | |
| 1599 | 1695 | return !empty($near_version) ? $near_version : false; |
@@ -1616,15 +1712,17 @@ discard block |
||
| 1616 | 1712 | $versions = explode(',', str_replace(array(' ', '2.0rc1-1'), array('', '2.0rc1.1'), strtolower($versions))); |
| 1617 | 1713 | |
| 1618 | 1714 | // Perhaps we do accept anything? |
| 1619 | - if (in_array('all', $versions)) |
|
| 1620 | - return true; |
|
| 1715 | + if (in_array('all', $versions)) { |
|
| 1716 | + return true; |
|
| 1717 | + } |
|
| 1621 | 1718 | |
| 1622 | 1719 | // Loop through each version. |
| 1623 | 1720 | foreach ($versions as $for) |
| 1624 | 1721 | { |
| 1625 | 1722 | // Wild card spotted? |
| 1626 | - if (strpos($for, '*') !== false) |
|
| 1627 | - $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1723 | + if (strpos($for, '*') !== false) { |
|
| 1724 | + $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1725 | + } |
|
| 1628 | 1726 | |
| 1629 | 1727 | // Do we have a range? |
| 1630 | 1728 | if (strpos($for, '-') !== false) |
@@ -1632,12 +1730,14 @@ discard block |
||
| 1632 | 1730 | list ($lower, $upper) = explode('-', $for); |
| 1633 | 1731 | |
| 1634 | 1732 | // Compare the version against lower and upper bounds. |
| 1635 | - if (compareVersions($version, $lower) > -1 && compareVersions($version, $upper) < 1) |
|
| 1636 | - return true; |
|
| 1733 | + if (compareVersions($version, $lower) > -1 && compareVersions($version, $upper) < 1) { |
|
| 1734 | + return true; |
|
| 1735 | + } |
|
| 1637 | 1736 | } |
| 1638 | 1737 | // Otherwise check if they are equal... |
| 1639 | - elseif (compareVersions($version, $for) === 0) |
|
| 1640 | - return true; |
|
| 1738 | + elseif (compareVersions($version, $for) === 0) { |
|
| 1739 | + return true; |
|
| 1740 | + } |
|
| 1641 | 1741 | } |
| 1642 | 1742 | |
| 1643 | 1743 | return false; |
@@ -1677,12 +1777,14 @@ discard block |
||
| 1677 | 1777 | } |
| 1678 | 1778 | |
| 1679 | 1779 | // Are they the same, perhaps? |
| 1680 | - if ($versions[1] === $versions[2]) |
|
| 1681 | - return 0; |
|
| 1780 | + if ($versions[1] === $versions[2]) { |
|
| 1781 | + return 0; |
|
| 1782 | + } |
|
| 1682 | 1783 | |
| 1683 | 1784 | // Get version numbering categories... |
| 1684 | - if (!isset($categories)) |
|
| 1685 | - $categories = array_keys($versions[1]); |
|
| 1785 | + if (!isset($categories)) { |
|
| 1786 | + $categories = array_keys($versions[1]); |
|
| 1787 | + } |
|
| 1686 | 1788 | |
| 1687 | 1789 | // Loop through each category. |
| 1688 | 1790 | foreach ($categories as $category) |
@@ -1692,13 +1794,15 @@ discard block |
||
| 1692 | 1794 | { |
| 1693 | 1795 | // Dev builds are a problematic exception. |
| 1694 | 1796 | // (stable) dev < (stable) but (unstable) dev = (unstable) |
| 1695 | - if ($category == 'type') |
|
| 1696 | - return $versions[1][$category] > $versions[2][$category] ? ($versions[1]['dev'] ? -1 : 1) : ($versions[2]['dev'] ? 1 : -1); |
|
| 1697 | - elseif ($category == 'dev') |
|
| 1698 | - return $versions[1]['dev'] ? ($versions[2]['type'] == 'stable' ? -1 : 0) : ($versions[1]['type'] == 'stable' ? 1 : 0); |
|
| 1797 | + if ($category == 'type') { |
|
| 1798 | + return $versions[1][$category] > $versions[2][$category] ? ($versions[1]['dev'] ? -1 : 1) : ($versions[2]['dev'] ? 1 : -1); |
|
| 1799 | + } elseif ($category == 'dev') { |
|
| 1800 | + return $versions[1]['dev'] ? ($versions[2]['type'] == 'stable' ? -1 : 0) : ($versions[1]['type'] == 'stable' ? 1 : 0); |
|
| 1801 | + } |
|
| 1699 | 1802 | // Otherwise a simple comparison. |
| 1700 | - else |
|
| 1701 | - return $versions[1][$category] > $versions[2][$category] ? 1 : -1; |
|
| 1803 | + else { |
|
| 1804 | + return $versions[1][$category] > $versions[2][$category] ? 1 : -1; |
|
| 1805 | + } |
|
| 1702 | 1806 | } |
| 1703 | 1807 | } |
| 1704 | 1808 | |
@@ -1732,11 +1836,13 @@ discard block |
||
| 1732 | 1836 | ); |
| 1733 | 1837 | |
| 1734 | 1838 | // do we parse in a package directory? |
| 1735 | - if (!empty($temp_path)) |
|
| 1736 | - $dirs['$package'] = $temp_path; |
|
| 1839 | + if (!empty($temp_path)) { |
|
| 1840 | + $dirs['$package'] = $temp_path; |
|
| 1841 | + } |
|
| 1737 | 1842 | |
| 1738 | - if (strlen($path) == 0) |
|
| 1739 | - trigger_error('parse_path(): There should never be an empty filename', E_USER_ERROR); |
|
| 1843 | + if (strlen($path) == 0) { |
|
| 1844 | + trigger_error('parse_path(): There should never be an empty filename', E_USER_ERROR); |
|
| 1845 | + } |
|
| 1740 | 1846 | |
| 1741 | 1847 | return strtr($path, $dirs); |
| 1742 | 1848 | } |
@@ -1753,8 +1859,9 @@ discard block |
||
| 1753 | 1859 | /** @var ftp_connection $package_ftp */ |
| 1754 | 1860 | global $package_ftp; |
| 1755 | 1861 | |
| 1756 | - if (!file_exists($dir)) |
|
| 1757 | - return; |
|
| 1862 | + if (!file_exists($dir)) { |
|
| 1863 | + return; |
|
| 1864 | + } |
|
| 1758 | 1865 | |
| 1759 | 1866 | $current_dir = @opendir($dir); |
| 1760 | 1867 | if ($current_dir == false) |
@@ -1762,8 +1869,9 @@ discard block |
||
| 1762 | 1869 | if ($delete_dir && isset($package_ftp)) |
| 1763 | 1870 | { |
| 1764 | 1871 | $ftp_file = strtr($dir, array($_SESSION['pack_ftp']['root'] => '')); |
| 1765 | - if (!is_dir($dir)) |
|
| 1766 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1872 | + if (!is_dir($dir)) { |
|
| 1873 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1874 | + } |
|
| 1767 | 1875 | $package_ftp->unlink($ftp_file); |
| 1768 | 1876 | } |
| 1769 | 1877 | |
@@ -1772,26 +1880,28 @@ discard block |
||
| 1772 | 1880 | |
| 1773 | 1881 | while ($entryname = readdir($current_dir)) |
| 1774 | 1882 | { |
| 1775 | - if (in_array($entryname, array('.', '..'))) |
|
| 1776 | - continue; |
|
| 1883 | + if (in_array($entryname, array('.', '..'))) { |
|
| 1884 | + continue; |
|
| 1885 | + } |
|
| 1777 | 1886 | |
| 1778 | - if (is_dir($dir . '/' . $entryname)) |
|
| 1779 | - deltree($dir . '/' . $entryname); |
|
| 1780 | - else |
|
| 1887 | + if (is_dir($dir . '/' . $entryname)) { |
|
| 1888 | + deltree($dir . '/' . $entryname); |
|
| 1889 | + } else |
|
| 1781 | 1890 | { |
| 1782 | 1891 | // Here, 755 doesn't really matter since we're deleting it anyway. |
| 1783 | 1892 | if (isset($package_ftp)) |
| 1784 | 1893 | { |
| 1785 | 1894 | $ftp_file = strtr($dir . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
| 1786 | 1895 | |
| 1787 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1788 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1896 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1897 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1898 | + } |
|
| 1789 | 1899 | $package_ftp->unlink($ftp_file); |
| 1790 | - } |
|
| 1791 | - else |
|
| 1900 | + } else |
|
| 1792 | 1901 | { |
| 1793 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1794 | - smf_chmod($dir . '/' . $entryname, 0777); |
|
| 1902 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1903 | + smf_chmod($dir . '/' . $entryname, 0777); |
|
| 1904 | + } |
|
| 1795 | 1905 | unlink($dir . '/' . $entryname); |
| 1796 | 1906 | } |
| 1797 | 1907 | } |
@@ -1804,14 +1914,15 @@ discard block |
||
| 1804 | 1914 | if (isset($package_ftp)) |
| 1805 | 1915 | { |
| 1806 | 1916 | $ftp_file = strtr($dir, array($_SESSION['pack_ftp']['root'] => '')); |
| 1807 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1808 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1917 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1918 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1919 | + } |
|
| 1809 | 1920 | $package_ftp->unlink($ftp_file); |
| 1810 | - } |
|
| 1811 | - else |
|
| 1921 | + } else |
|
| 1812 | 1922 | { |
| 1813 | - if (!is_writable($dir)) |
|
| 1814 | - smf_chmod($dir, 0777); |
|
| 1923 | + if (!is_writable($dir)) { |
|
| 1924 | + smf_chmod($dir, 0777); |
|
| 1925 | + } |
|
| 1815 | 1926 | @rmdir($dir); |
| 1816 | 1927 | } |
| 1817 | 1928 | } |
@@ -1834,10 +1945,11 @@ discard block |
||
| 1834 | 1945 | { |
| 1835 | 1946 | if (!is_writable($strPath) && $mode !== false) |
| 1836 | 1947 | { |
| 1837 | - if (isset($package_ftp)) |
|
| 1838 | - $package_ftp->chmod(strtr($strPath, array($_SESSION['pack_ftp']['root'] => '')), $mode); |
|
| 1839 | - else |
|
| 1840 | - smf_chmod($strPath, $mode); |
|
| 1948 | + if (isset($package_ftp)) { |
|
| 1949 | + $package_ftp->chmod(strtr($strPath, array($_SESSION['pack_ftp']['root'] => '')), $mode); |
|
| 1950 | + } else { |
|
| 1951 | + smf_chmod($strPath, $mode); |
|
| 1952 | + } |
|
| 1841 | 1953 | } |
| 1842 | 1954 | |
| 1843 | 1955 | $test = @opendir($strPath); |
@@ -1845,36 +1957,37 @@ discard block |
||
| 1845 | 1957 | { |
| 1846 | 1958 | closedir($test); |
| 1847 | 1959 | return is_writable($strPath); |
| 1960 | + } else { |
|
| 1961 | + return false; |
|
| 1848 | 1962 | } |
| 1849 | - else |
|
| 1850 | - return false; |
|
| 1851 | 1963 | } |
| 1852 | 1964 | // Is this an invalid path and/or we can't make the directory? |
| 1853 | - if ($strPath == dirname($strPath) || !mktree(dirname($strPath), $mode)) |
|
| 1854 | - return false; |
|
| 1965 | + if ($strPath == dirname($strPath) || !mktree(dirname($strPath), $mode)) { |
|
| 1966 | + return false; |
|
| 1967 | + } |
|
| 1855 | 1968 | |
| 1856 | 1969 | if (!is_writable(dirname($strPath)) && $mode !== false) |
| 1857 | 1970 | { |
| 1858 | - if (isset($package_ftp)) |
|
| 1859 | - $package_ftp->chmod(dirname(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))), $mode); |
|
| 1860 | - else |
|
| 1861 | - smf_chmod(dirname($strPath), $mode); |
|
| 1971 | + if (isset($package_ftp)) { |
|
| 1972 | + $package_ftp->chmod(dirname(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))), $mode); |
|
| 1973 | + } else { |
|
| 1974 | + smf_chmod(dirname($strPath), $mode); |
|
| 1975 | + } |
|
| 1862 | 1976 | } |
| 1863 | 1977 | |
| 1864 | - if ($mode !== false && isset($package_ftp)) |
|
| 1865 | - return $package_ftp->create_dir(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))); |
|
| 1866 | - elseif ($mode === false) |
|
| 1978 | + if ($mode !== false && isset($package_ftp)) { |
|
| 1979 | + return $package_ftp->create_dir(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))); |
|
| 1980 | + } elseif ($mode === false) |
|
| 1867 | 1981 | { |
| 1868 | 1982 | $test = @opendir(dirname($strPath)); |
| 1869 | 1983 | if ($test) |
| 1870 | 1984 | { |
| 1871 | 1985 | closedir($test); |
| 1872 | 1986 | return true; |
| 1987 | + } else { |
|
| 1988 | + return false; |
|
| 1873 | 1989 | } |
| 1874 | - else |
|
| 1875 | - return false; |
|
| 1876 | - } |
|
| 1877 | - else |
|
| 1990 | + } else |
|
| 1878 | 1991 | { |
| 1879 | 1992 | @mkdir($strPath, $mode); |
| 1880 | 1993 | $test = @opendir($strPath); |
@@ -1882,9 +1995,9 @@ discard block |
||
| 1882 | 1995 | { |
| 1883 | 1996 | closedir($test); |
| 1884 | 1997 | return true; |
| 1998 | + } else { |
|
| 1999 | + return false; |
|
| 1885 | 2000 | } |
| 1886 | - else |
|
| 1887 | - return false; |
|
| 1888 | 2001 | } |
| 1889 | 2002 | } |
| 1890 | 2003 | |
@@ -1900,39 +2013,46 @@ discard block |
||
| 1900 | 2013 | /** @var ftp_connection $package_ftp */ |
| 1901 | 2014 | global $package_ftp; |
| 1902 | 2015 | |
| 1903 | - if (!file_exists($destination) || !is_writable($destination)) |
|
| 1904 | - mktree($destination, 0755); |
|
| 1905 | - if (!is_writable($destination)) |
|
| 1906 | - mktree($destination, 0777); |
|
| 2016 | + if (!file_exists($destination) || !is_writable($destination)) { |
|
| 2017 | + mktree($destination, 0755); |
|
| 2018 | + } |
|
| 2019 | + if (!is_writable($destination)) { |
|
| 2020 | + mktree($destination, 0777); |
|
| 2021 | + } |
|
| 1907 | 2022 | |
| 1908 | 2023 | $current_dir = opendir($source); |
| 1909 | - if ($current_dir == false) |
|
| 1910 | - return; |
|
| 2024 | + if ($current_dir == false) { |
|
| 2025 | + return; |
|
| 2026 | + } |
|
| 1911 | 2027 | |
| 1912 | 2028 | while ($entryname = readdir($current_dir)) |
| 1913 | 2029 | { |
| 1914 | - if (in_array($entryname, array('.', '..'))) |
|
| 1915 | - continue; |
|
| 2030 | + if (in_array($entryname, array('.', '..'))) { |
|
| 2031 | + continue; |
|
| 2032 | + } |
|
| 1916 | 2033 | |
| 1917 | - if (isset($package_ftp)) |
|
| 1918 | - $ftp_file = strtr($destination . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2034 | + if (isset($package_ftp)) { |
|
| 2035 | + $ftp_file = strtr($destination . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2036 | + } |
|
| 1919 | 2037 | |
| 1920 | 2038 | if (is_file($source . '/' . $entryname)) |
| 1921 | 2039 | { |
| 1922 | - if (isset($package_ftp) && !file_exists($destination . '/' . $entryname)) |
|
| 1923 | - $package_ftp->create_file($ftp_file); |
|
| 1924 | - elseif (!file_exists($destination . '/' . $entryname)) |
|
| 1925 | - @touch($destination . '/' . $entryname); |
|
| 2040 | + if (isset($package_ftp) && !file_exists($destination . '/' . $entryname)) { |
|
| 2041 | + $package_ftp->create_file($ftp_file); |
|
| 2042 | + } elseif (!file_exists($destination . '/' . $entryname)) { |
|
| 2043 | + @touch($destination . '/' . $entryname); |
|
| 2044 | + } |
|
| 1926 | 2045 | } |
| 1927 | 2046 | |
| 1928 | 2047 | package_chmod($destination . '/' . $entryname); |
| 1929 | 2048 | |
| 1930 | - if (is_dir($source . '/' . $entryname)) |
|
| 1931 | - copytree($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 1932 | - elseif (file_exists($destination . '/' . $entryname)) |
|
| 1933 | - package_put_contents($destination . '/' . $entryname, package_get_contents($source . '/' . $entryname)); |
|
| 1934 | - else |
|
| 1935 | - copy($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2049 | + if (is_dir($source . '/' . $entryname)) { |
|
| 2050 | + copytree($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2051 | + } elseif (file_exists($destination . '/' . $entryname)) { |
|
| 2052 | + package_put_contents($destination . '/' . $entryname, package_get_contents($source . '/' . $entryname)); |
|
| 2053 | + } else { |
|
| 2054 | + copy($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2055 | + } |
|
| 1936 | 2056 | } |
| 1937 | 2057 | |
| 1938 | 2058 | closedir($current_dir); |
@@ -1950,21 +2070,24 @@ discard block |
||
| 1950 | 2070 | $data = array(); |
| 1951 | 2071 | |
| 1952 | 2072 | $dir = @dir($path . $sub_path); |
| 1953 | - if (!$dir) |
|
| 1954 | - return array(); |
|
| 2073 | + if (!$dir) { |
|
| 2074 | + return array(); |
|
| 2075 | + } |
|
| 1955 | 2076 | while ($entry = $dir->read()) |
| 1956 | 2077 | { |
| 1957 | - if ($entry == '.' || $entry == '..') |
|
| 1958 | - continue; |
|
| 2078 | + if ($entry == '.' || $entry == '..') { |
|
| 2079 | + continue; |
|
| 2080 | + } |
|
| 1959 | 2081 | |
| 1960 | - if (is_dir($path . $sub_path . '/' . $entry)) |
|
| 1961 | - $data = array_merge($data, listtree($path, $sub_path . '/' . $entry)); |
|
| 1962 | - else |
|
| 1963 | - $data[] = array( |
|
| 2082 | + if (is_dir($path . $sub_path . '/' . $entry)) { |
|
| 2083 | + $data = array_merge($data, listtree($path, $sub_path . '/' . $entry)); |
|
| 2084 | + } else { |
|
| 2085 | + $data[] = array( |
|
| 1964 | 2086 | 'filename' => $sub_path == '' ? $entry : $sub_path . '/' . $entry, |
| 1965 | 2087 | 'size' => filesize($path . $sub_path . '/' . $entry), |
| 1966 | 2088 | 'skipped' => false, |
| 1967 | 2089 | ); |
| 2090 | + } |
|
| 1968 | 2091 | } |
| 1969 | 2092 | $dir->close(); |
| 1970 | 2093 | |
@@ -2019,8 +2142,9 @@ discard block |
||
| 2019 | 2142 | { |
| 2020 | 2143 | // If this filename is relative, if so take a guess at what it should be. |
| 2021 | 2144 | $real_filename = $filename; |
| 2022 | - if (strpos($filename, 'Themes') === 0) |
|
| 2023 | - $real_filename = $boarddir . '/' . $filename; |
|
| 2145 | + if (strpos($filename, 'Themes') === 0) { |
|
| 2146 | + $real_filename = $boarddir . '/' . $filename; |
|
| 2147 | + } |
|
| 2024 | 2148 | |
| 2025 | 2149 | if (strpos($real_filename, $theme['theme_dir']) === 0) |
| 2026 | 2150 | { |
@@ -2039,8 +2163,9 @@ discard block |
||
| 2039 | 2163 | foreach ($theme_paths as $id => $theme) |
| 2040 | 2164 | { |
| 2041 | 2165 | // Default is getting done anyway, so no need for involvement here. |
| 2042 | - if ($id == 1) |
|
| 2043 | - continue; |
|
| 2166 | + if ($id == 1) { |
|
| 2167 | + continue; |
|
| 2168 | + } |
|
| 2044 | 2169 | |
| 2045 | 2170 | // For every template, do we want it? Yea, no, maybe? |
| 2046 | 2171 | foreach ($template_changes[1] as $index => $template_file) |
@@ -2063,8 +2188,9 @@ discard block |
||
| 2063 | 2188 | ); |
| 2064 | 2189 | |
| 2065 | 2190 | // Sometimes though, we have some additional files for other themes, if we have add them to the mix. |
| 2066 | - if (isset($custom_themes_add[$files_to_change[1]])) |
|
| 2067 | - $files_to_change += $custom_themes_add[$files_to_change[1]]; |
|
| 2191 | + if (isset($custom_themes_add[$files_to_change[1]])) { |
|
| 2192 | + $files_to_change += $custom_themes_add[$files_to_change[1]]; |
|
| 2193 | + } |
|
| 2068 | 2194 | |
| 2069 | 2195 | // Now, loop through all the files we're changing, and, well, change them ;) |
| 2070 | 2196 | foreach ($files_to_change as $theme => $working_file) |
@@ -2098,11 +2224,13 @@ discard block |
||
| 2098 | 2224 | continue; |
| 2099 | 2225 | } |
| 2100 | 2226 | // Okay, we're creating this file then...? |
| 2101 | - elseif (!file_exists($working_file)) |
|
| 2102 | - $working_data = ''; |
|
| 2227 | + elseif (!file_exists($working_file)) { |
|
| 2228 | + $working_data = ''; |
|
| 2229 | + } |
|
| 2103 | 2230 | // Phew, it exists! Load 'er up! |
| 2104 | - else |
|
| 2105 | - $working_data = str_replace("\r", '', package_get_contents($working_file)); |
|
| 2231 | + else { |
|
| 2232 | + $working_data = str_replace("\r", '', package_get_contents($working_file)); |
|
| 2233 | + } |
|
| 2106 | 2234 | |
| 2107 | 2235 | $actions[] = array( |
| 2108 | 2236 | 'type' => 'opened', |
@@ -2123,8 +2251,8 @@ discard block |
||
| 2123 | 2251 | |
| 2124 | 2252 | // Grab all search items of this operation (in most cases just 1). |
| 2125 | 2253 | $searches = $operation->set('search'); |
| 2126 | - foreach ($searches as $i => $search) |
|
| 2127 | - $actual_operation['searches'][] = array( |
|
| 2254 | + foreach ($searches as $i => $search) { |
|
| 2255 | + $actual_operation['searches'][] = array( |
|
| 2128 | 2256 | 'position' => $search->exists('@position') && in_array(trim($search->fetch('@position')), array('before', 'after', 'replace', 'end')) ? trim($search->fetch('@position')) : 'replace', |
| 2129 | 2257 | 'is_reg_exp' => $search->exists('@regexp') && trim($search->fetch('@regexp')) === 'true', |
| 2130 | 2258 | 'loose_whitespace' => $search->exists('@whitespace') && trim($search->fetch('@whitespace')) === 'loose', |
@@ -2133,6 +2261,7 @@ discard block |
||
| 2133 | 2261 | 'preg_search' => '', |
| 2134 | 2262 | 'preg_replace' => '', |
| 2135 | 2263 | ); |
| 2264 | + } |
|
| 2136 | 2265 | |
| 2137 | 2266 | // At least one search should be defined. |
| 2138 | 2267 | if (empty($actual_operation['searches'])) |
@@ -2157,30 +2286,32 @@ discard block |
||
| 2157 | 2286 | // Reverse modification of regular expressions are not allowed. |
| 2158 | 2287 | if ($search['is_reg_exp']) |
| 2159 | 2288 | { |
| 2160 | - if ($actual_operation['error'] === 'fatal') |
|
| 2161 | - $actions[] = array( |
|
| 2289 | + if ($actual_operation['error'] === 'fatal') { |
|
| 2290 | + $actions[] = array( |
|
| 2162 | 2291 | 'type' => 'failure', |
| 2163 | 2292 | 'filename' => $working_file, |
| 2164 | 2293 | 'search' => $search['search'], |
| 2165 | 2294 | 'is_custom' => $theme > 1 ? $theme : 0, |
| 2166 | 2295 | ); |
| 2296 | + } |
|
| 2167 | 2297 | |
| 2168 | 2298 | // Continue to the next operation. |
| 2169 | 2299 | continue 2; |
| 2170 | 2300 | } |
| 2171 | 2301 | |
| 2172 | 2302 | // The replacement is now the search subject... |
| 2173 | - if ($search['position'] === 'replace' || $search['position'] === 'end') |
|
| 2174 | - $actual_operation['searches'][$i]['search'] = $search['add']; |
|
| 2175 | - else |
|
| 2303 | + if ($search['position'] === 'replace' || $search['position'] === 'end') { |
|
| 2304 | + $actual_operation['searches'][$i]['search'] = $search['add']; |
|
| 2305 | + } else |
|
| 2176 | 2306 | { |
| 2177 | 2307 | // Reversing a before/after modification becomes a replacement. |
| 2178 | 2308 | $actual_operation['searches'][$i]['position'] = 'replace'; |
| 2179 | 2309 | |
| 2180 | - if ($search['position'] === 'before') |
|
| 2181 | - $actual_operation['searches'][$i]['search'] .= $search['add']; |
|
| 2182 | - elseif ($search['position'] === 'after') |
|
| 2183 | - $actual_operation['searches'][$i]['search'] = $search['add'] . $search['search']; |
|
| 2310 | + if ($search['position'] === 'before') { |
|
| 2311 | + $actual_operation['searches'][$i]['search'] .= $search['add']; |
|
| 2312 | + } elseif ($search['position'] === 'after') { |
|
| 2313 | + $actual_operation['searches'][$i]['search'] = $search['add'] . $search['search']; |
|
| 2314 | + } |
|
| 2184 | 2315 | } |
| 2185 | 2316 | |
| 2186 | 2317 | // ...and the search subject is now the replacement. |
@@ -2208,16 +2339,17 @@ discard block |
||
| 2208 | 2339 | foreach ($actual_operation['searches'] as $i => $search) |
| 2209 | 2340 | { |
| 2210 | 2341 | // Not much needed if the search subject is already a regexp. |
| 2211 | - if ($search['is_reg_exp']) |
|
| 2212 | - $actual_operation['searches'][$i]['preg_search'] = $search['search']; |
|
| 2213 | - else |
|
| 2342 | + if ($search['is_reg_exp']) { |
|
| 2343 | + $actual_operation['searches'][$i]['preg_search'] = $search['search']; |
|
| 2344 | + } else |
|
| 2214 | 2345 | { |
| 2215 | 2346 | // Make the search subject fit into a regular expression. |
| 2216 | 2347 | $actual_operation['searches'][$i]['preg_search'] = preg_quote($search['search'], '~'); |
| 2217 | 2348 | |
| 2218 | 2349 | // Using 'loose', a random amount of tabs and spaces may be used. |
| 2219 | - if ($search['loose_whitespace']) |
|
| 2220 | - $actual_operation['searches'][$i]['preg_search'] = preg_replace('~[ \t]+~', '[ \t]+', $actual_operation['searches'][$i]['preg_search']); |
|
| 2350 | + if ($search['loose_whitespace']) { |
|
| 2351 | + $actual_operation['searches'][$i]['preg_search'] = preg_replace('~[ \t]+~', '[ \t]+', $actual_operation['searches'][$i]['preg_search']); |
|
| 2352 | + } |
|
| 2221 | 2353 | } |
| 2222 | 2354 | |
| 2223 | 2355 | // Shuzzup. This is done so we can safely use a regular expression. ($0 is bad!!) |
@@ -2243,8 +2375,7 @@ discard block |
||
| 2243 | 2375 | if ($undo) |
| 2244 | 2376 | { |
| 2245 | 2377 | $actual_operation['searches'][$i]['preg_replace'] = ''; |
| 2246 | - } |
|
| 2247 | - else |
|
| 2378 | + } else |
|
| 2248 | 2379 | { |
| 2249 | 2380 | $actual_operation['searches'][$i]['preg_search'] = '(\\n\\?\\>)?$'; |
| 2250 | 2381 | $actual_operation['searches'][$i]['preg_replace'] .= '$1'; |
@@ -2291,8 +2422,9 @@ discard block |
||
| 2291 | 2422 | } |
| 2292 | 2423 | |
| 2293 | 2424 | // Replace it into nothing? That's not an option...unless it's an undoing end. |
| 2294 | - if ($search['add'] === '' && ($search['position'] !== 'end' || !$undo)) |
|
| 2295 | - continue; |
|
| 2425 | + if ($search['add'] === '' && ($search['position'] !== 'end' || !$undo)) { |
|
| 2426 | + continue; |
|
| 2427 | + } |
|
| 2296 | 2428 | |
| 2297 | 2429 | // Finally, we're doing some replacements. |
| 2298 | 2430 | $working_data = preg_replace('~' . $actual_operation['searches'][$i]['preg_search'] . '~s', $actual_operation['searches'][$i]['preg_replace'], $working_data, 1); |
@@ -2317,22 +2449,25 @@ discard block |
||
| 2317 | 2449 | |
| 2318 | 2450 | package_chmod($working_file); |
| 2319 | 2451 | |
| 2320 | - if ((file_exists($working_file) && !is_writable($working_file)) || (!file_exists($working_file) && !is_writable(dirname($working_file)))) |
|
| 2321 | - $actions[] = array( |
|
| 2452 | + if ((file_exists($working_file) && !is_writable($working_file)) || (!file_exists($working_file) && !is_writable(dirname($working_file)))) { |
|
| 2453 | + $actions[] = array( |
|
| 2322 | 2454 | 'type' => 'chmod', |
| 2323 | 2455 | 'filename' => $working_file |
| 2324 | 2456 | ); |
| 2457 | + } |
|
| 2325 | 2458 | |
| 2326 | - if (basename($working_file) == 'Settings_bak.php') |
|
| 2327 | - continue; |
|
| 2459 | + if (basename($working_file) == 'Settings_bak.php') { |
|
| 2460 | + continue; |
|
| 2461 | + } |
|
| 2328 | 2462 | |
| 2329 | 2463 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2330 | 2464 | { |
| 2331 | 2465 | // No, no, not Settings.php! |
| 2332 | - if (basename($working_file) == 'Settings.php') |
|
| 2333 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2334 | - else |
|
| 2335 | - @copy($working_file, $working_file . '~'); |
|
| 2466 | + if (basename($working_file) == 'Settings.php') { |
|
| 2467 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2468 | + } else { |
|
| 2469 | + @copy($working_file, $working_file . '~'); |
|
| 2470 | + } |
|
| 2336 | 2471 | } |
| 2337 | 2472 | |
| 2338 | 2473 | // Always call this, even if in testing, because it won't really be written in testing mode. |
@@ -2399,8 +2534,9 @@ discard block |
||
| 2399 | 2534 | if ($code_match[1] != 'edit file' && $code_match[1] != 'file') |
| 2400 | 2535 | { |
| 2401 | 2536 | // It's a step, let's add that to the current steps. |
| 2402 | - if (isset($temp_changes[$step_counter])) |
|
| 2403 | - $temp_changes[$step_counter]['changes'][] = $code_match[0]; |
|
| 2537 | + if (isset($temp_changes[$step_counter])) { |
|
| 2538 | + $temp_changes[$step_counter]['changes'][] = $code_match[0]; |
|
| 2539 | + } |
|
| 2404 | 2540 | continue; |
| 2405 | 2541 | } |
| 2406 | 2542 | |
@@ -2417,11 +2553,13 @@ discard block |
||
| 2417 | 2553 | foreach ($theme_paths as $id => $theme) |
| 2418 | 2554 | { |
| 2419 | 2555 | // If this filename is relative, if so take a guess at what it should be. |
| 2420 | - if (strpos($filename, 'Themes') === 0) |
|
| 2421 | - $filename = $boarddir . '/' . $filename; |
|
| 2556 | + if (strpos($filename, 'Themes') === 0) { |
|
| 2557 | + $filename = $boarddir . '/' . $filename; |
|
| 2558 | + } |
|
| 2422 | 2559 | |
| 2423 | - if (strpos($filename, $theme['theme_dir']) === 0) |
|
| 2424 | - $template_changes[$id][$counter] = substr($filename, strlen($theme['theme_dir']) + 1); |
|
| 2560 | + if (strpos($filename, $theme['theme_dir']) === 0) { |
|
| 2561 | + $template_changes[$id][$counter] = substr($filename, strlen($theme['theme_dir']) + 1); |
|
| 2562 | + } |
|
| 2425 | 2563 | } |
| 2426 | 2564 | } |
| 2427 | 2565 | |
@@ -2434,8 +2572,9 @@ discard block |
||
| 2434 | 2572 | foreach ($theme_paths as $id => $theme) |
| 2435 | 2573 | { |
| 2436 | 2574 | // Don't do default, it means nothing to me. |
| 2437 | - if ($id == 1) |
|
| 2438 | - continue; |
|
| 2575 | + if ($id == 1) { |
|
| 2576 | + continue; |
|
| 2577 | + } |
|
| 2439 | 2578 | |
| 2440 | 2579 | // Now, for each file do we need to edit it? |
| 2441 | 2580 | foreach ($template_changes[1] as $pos => $template_file) |
@@ -2471,32 +2610,36 @@ discard block |
||
| 2471 | 2610 | package_chmod($working_file); |
| 2472 | 2611 | |
| 2473 | 2612 | // Don't even dare. |
| 2474 | - if (basename($working_file) == 'Settings_bak.php') |
|
| 2475 | - continue; |
|
| 2613 | + if (basename($working_file) == 'Settings_bak.php') { |
|
| 2614 | + continue; |
|
| 2615 | + } |
|
| 2476 | 2616 | |
| 2477 | - if (!is_writable($working_file)) |
|
| 2478 | - $actions[] = array( |
|
| 2617 | + if (!is_writable($working_file)) { |
|
| 2618 | + $actions[] = array( |
|
| 2479 | 2619 | 'type' => 'chmod', |
| 2480 | 2620 | 'filename' => $working_file |
| 2481 | 2621 | ); |
| 2622 | + } |
|
| 2482 | 2623 | |
| 2483 | 2624 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2484 | 2625 | { |
| 2485 | - if (basename($working_file) == 'Settings.php') |
|
| 2486 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2487 | - else |
|
| 2488 | - @copy($working_file, $working_file . '~'); |
|
| 2626 | + if (basename($working_file) == 'Settings.php') { |
|
| 2627 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2628 | + } else { |
|
| 2629 | + @copy($working_file, $working_file . '~'); |
|
| 2630 | + } |
|
| 2489 | 2631 | } |
| 2490 | 2632 | |
| 2491 | 2633 | package_put_contents($working_file, $working_data, $testing); |
| 2492 | 2634 | } |
| 2493 | 2635 | |
| 2494 | - if ($working_file !== null) |
|
| 2495 | - $actions[] = array( |
|
| 2636 | + if ($working_file !== null) { |
|
| 2637 | + $actions[] = array( |
|
| 2496 | 2638 | 'type' => 'saved', |
| 2497 | 2639 | 'filename' => $working_file, |
| 2498 | 2640 | 'is_custom' => $is_custom, |
| 2499 | 2641 | ); |
| 2642 | + } |
|
| 2500 | 2643 | |
| 2501 | 2644 | // Is this "now working on" file a theme specific one? |
| 2502 | 2645 | $is_custom = isset($theme_id_ref[$counter - 1]) ? $theme_id_ref[$counter - 1] : 0; |
@@ -2515,10 +2658,11 @@ discard block |
||
| 2515 | 2658 | { |
| 2516 | 2659 | $places_to_check = array($boarddir, $sourcedir, $settings['default_theme_dir'], $settings['default_theme_dir'] . '/languages'); |
| 2517 | 2660 | |
| 2518 | - foreach ($places_to_check as $place) |
|
| 2519 | - if (file_exists($place . '/' . $working_file)) |
|
| 2661 | + foreach ($places_to_check as $place) { |
|
| 2662 | + if (file_exists($place . '/' . $working_file)) |
|
| 2520 | 2663 | { |
| 2521 | 2664 | $working_file = $place . '/' . $working_file; |
| 2665 | + } |
|
| 2522 | 2666 | break; |
| 2523 | 2667 | } |
| 2524 | 2668 | } |
@@ -2532,8 +2676,7 @@ discard block |
||
| 2532 | 2676 | 'type' => 'opened', |
| 2533 | 2677 | 'filename' => $working_file |
| 2534 | 2678 | ); |
| 2535 | - } |
|
| 2536 | - else |
|
| 2679 | + } else |
|
| 2537 | 2680 | { |
| 2538 | 2681 | $actions[] = array( |
| 2539 | 2682 | 'type' => 'missing', |
@@ -2569,11 +2712,13 @@ discard block |
||
| 2569 | 2712 | $replace_with = $code_match[2]; |
| 2570 | 2713 | |
| 2571 | 2714 | // Add this afterward... |
| 2572 | - if ($code_match[1] == 'add' || $code_match[1] == 'add after') |
|
| 2573 | - $replace_with = $working_search . "\n" . $replace_with; |
|
| 2715 | + if ($code_match[1] == 'add' || $code_match[1] == 'add after') { |
|
| 2716 | + $replace_with = $working_search . "\n" . $replace_with; |
|
| 2717 | + } |
|
| 2574 | 2718 | // Add this beforehand. |
| 2575 | - elseif ($code_match[1] == 'before' || $code_match[1] == 'add before' || $code_match[1] == 'above' || $code_match[1] == 'add above') |
|
| 2576 | - $replace_with .= "\n" . $working_search; |
|
| 2719 | + elseif ($code_match[1] == 'before' || $code_match[1] == 'add before' || $code_match[1] == 'above' || $code_match[1] == 'add above') { |
|
| 2720 | + $replace_with .= "\n" . $working_search; |
|
| 2721 | + } |
|
| 2577 | 2722 | // Otherwise.. replace with $replace_with ;). |
| 2578 | 2723 | } |
| 2579 | 2724 | |
@@ -2636,29 +2781,32 @@ discard block |
||
| 2636 | 2781 | { |
| 2637 | 2782 | package_chmod($working_file); |
| 2638 | 2783 | |
| 2639 | - if (!is_writable($working_file)) |
|
| 2640 | - $actions[] = array( |
|
| 2784 | + if (!is_writable($working_file)) { |
|
| 2785 | + $actions[] = array( |
|
| 2641 | 2786 | 'type' => 'chmod', |
| 2642 | 2787 | 'filename' => $working_file |
| 2643 | 2788 | ); |
| 2789 | + } |
|
| 2644 | 2790 | |
| 2645 | 2791 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2646 | 2792 | { |
| 2647 | - if (basename($working_file) == 'Settings.php') |
|
| 2648 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2649 | - else |
|
| 2650 | - @copy($working_file, $working_file . '~'); |
|
| 2793 | + if (basename($working_file) == 'Settings.php') { |
|
| 2794 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2795 | + } else { |
|
| 2796 | + @copy($working_file, $working_file . '~'); |
|
| 2797 | + } |
|
| 2651 | 2798 | } |
| 2652 | 2799 | |
| 2653 | 2800 | package_put_contents($working_file, $working_data, $testing); |
| 2654 | 2801 | } |
| 2655 | 2802 | |
| 2656 | - if ($working_file !== null) |
|
| 2657 | - $actions[] = array( |
|
| 2803 | + if ($working_file !== null) { |
|
| 2804 | + $actions[] = array( |
|
| 2658 | 2805 | 'type' => 'saved', |
| 2659 | 2806 | 'filename' => $working_file, |
| 2660 | 2807 | 'is_custom' => $is_custom, |
| 2661 | 2808 | ); |
| 2809 | + } |
|
| 2662 | 2810 | |
| 2663 | 2811 | $actions[] = array( |
| 2664 | 2812 | 'type' => 'result', |
@@ -2684,17 +2832,19 @@ discard block |
||
| 2684 | 2832 | $mem_check = setMemoryLimit('128M'); |
| 2685 | 2833 | |
| 2686 | 2834 | // Windows doesn't seem to care about the memory_limit. |
| 2687 | - if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) |
|
| 2688 | - $package_cache = array(); |
|
| 2689 | - else |
|
| 2690 | - $package_cache = false; |
|
| 2835 | + if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) { |
|
| 2836 | + $package_cache = array(); |
|
| 2837 | + } else { |
|
| 2838 | + $package_cache = false; |
|
| 2839 | + } |
|
| 2691 | 2840 | } |
| 2692 | 2841 | |
| 2693 | - if (strpos($filename, 'Packages/') !== false || $package_cache === false || !isset($package_cache[$filename])) |
|
| 2694 | - return file_get_contents($filename); |
|
| 2695 | - else |
|
| 2696 | - return $package_cache[$filename]; |
|
| 2697 | -} |
|
| 2842 | + if (strpos($filename, 'Packages/') !== false || $package_cache === false || !isset($package_cache[$filename])) { |
|
| 2843 | + return file_get_contents($filename); |
|
| 2844 | + } else { |
|
| 2845 | + return $package_cache[$filename]; |
|
| 2846 | + } |
|
| 2847 | + } |
|
| 2698 | 2848 | |
| 2699 | 2849 | /** |
| 2700 | 2850 | * Writes data to a file, almost exactly like the file_put_contents() function. |
@@ -2718,19 +2868,22 @@ discard block |
||
| 2718 | 2868 | // Try to increase the memory limit - we don't want to run out of ram! |
| 2719 | 2869 | $mem_check = setMemoryLimit('128M'); |
| 2720 | 2870 | |
| 2721 | - if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) |
|
| 2722 | - $package_cache = array(); |
|
| 2723 | - else |
|
| 2724 | - $package_cache = false; |
|
| 2871 | + if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) { |
|
| 2872 | + $package_cache = array(); |
|
| 2873 | + } else { |
|
| 2874 | + $package_cache = false; |
|
| 2875 | + } |
|
| 2725 | 2876 | } |
| 2726 | 2877 | |
| 2727 | - if (isset($package_ftp)) |
|
| 2728 | - $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2878 | + if (isset($package_ftp)) { |
|
| 2879 | + $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2880 | + } |
|
| 2729 | 2881 | |
| 2730 | - if (!file_exists($filename) && isset($package_ftp)) |
|
| 2731 | - $package_ftp->create_file($ftp_file); |
|
| 2732 | - elseif (!file_exists($filename)) |
|
| 2733 | - @touch($filename); |
|
| 2882 | + if (!file_exists($filename) && isset($package_ftp)) { |
|
| 2883 | + $package_ftp->create_file($ftp_file); |
|
| 2884 | + } elseif (!file_exists($filename)) { |
|
| 2885 | + @touch($filename); |
|
| 2886 | + } |
|
| 2734 | 2887 | |
| 2735 | 2888 | package_chmod($filename); |
| 2736 | 2889 | |
@@ -2739,22 +2892,23 @@ discard block |
||
| 2739 | 2892 | $fp = @fopen($filename, in_array(substr($filename, -3), $text_filetypes) ? 'w' : 'wb'); |
| 2740 | 2893 | |
| 2741 | 2894 | // We should show an error message or attempt a rollback, no? |
| 2742 | - if (!$fp) |
|
| 2743 | - return false; |
|
| 2895 | + if (!$fp) { |
|
| 2896 | + return false; |
|
| 2897 | + } |
|
| 2744 | 2898 | |
| 2745 | 2899 | fwrite($fp, $data); |
| 2746 | 2900 | fclose($fp); |
| 2747 | - } |
|
| 2748 | - elseif (strpos($filename, 'Packages/') !== false || $package_cache === false) |
|
| 2749 | - return strlen($data); |
|
| 2750 | - else |
|
| 2901 | + } elseif (strpos($filename, 'Packages/') !== false || $package_cache === false) { |
|
| 2902 | + return strlen($data); |
|
| 2903 | + } else |
|
| 2751 | 2904 | { |
| 2752 | 2905 | $package_cache[$filename] = $data; |
| 2753 | 2906 | |
| 2754 | 2907 | // Permission denied, eh? |
| 2755 | 2908 | $fp = @fopen($filename, 'r+'); |
| 2756 | - if (!$fp) |
|
| 2757 | - return false; |
|
| 2909 | + if (!$fp) { |
|
| 2910 | + return false; |
|
| 2911 | + } |
|
| 2758 | 2912 | fclose($fp); |
| 2759 | 2913 | } |
| 2760 | 2914 | |
@@ -2772,19 +2926,22 @@ discard block |
||
| 2772 | 2926 | global $package_ftp, $package_cache; |
| 2773 | 2927 | static $text_filetypes = array('php', 'txt', '.js', 'css', 'vbs', 'tml', 'htm'); |
| 2774 | 2928 | |
| 2775 | - if (empty($package_cache)) |
|
| 2776 | - return; |
|
| 2929 | + if (empty($package_cache)) { |
|
| 2930 | + return; |
|
| 2931 | + } |
|
| 2777 | 2932 | |
| 2778 | 2933 | // First, let's check permissions! |
| 2779 | 2934 | foreach ($package_cache as $filename => $data) |
| 2780 | 2935 | { |
| 2781 | - if (isset($package_ftp)) |
|
| 2782 | - $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2936 | + if (isset($package_ftp)) { |
|
| 2937 | + $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2938 | + } |
|
| 2783 | 2939 | |
| 2784 | - if (!file_exists($filename) && isset($package_ftp)) |
|
| 2785 | - $package_ftp->create_file($ftp_file); |
|
| 2786 | - elseif (!file_exists($filename)) |
|
| 2787 | - @touch($filename); |
|
| 2940 | + if (!file_exists($filename) && isset($package_ftp)) { |
|
| 2941 | + $package_ftp->create_file($ftp_file); |
|
| 2942 | + } elseif (!file_exists($filename)) { |
|
| 2943 | + @touch($filename); |
|
| 2944 | + } |
|
| 2788 | 2945 | |
| 2789 | 2946 | $result = package_chmod($filename); |
| 2790 | 2947 | |
@@ -2838,8 +2995,9 @@ discard block |
||
| 2838 | 2995 | /** @var ftp_connection $package_ftp */ |
| 2839 | 2996 | global $package_ftp; |
| 2840 | 2997 | |
| 2841 | - if (file_exists($filename) && is_writable($filename) && $perm_state == 'writable') |
|
| 2842 | - return true; |
|
| 2998 | + if (file_exists($filename) && is_writable($filename) && $perm_state == 'writable') { |
|
| 2999 | + return true; |
|
| 3000 | + } |
|
| 2843 | 3001 | |
| 2844 | 3002 | // Start off checking without FTP. |
| 2845 | 3003 | if (!isset($package_ftp) || $package_ftp === false) |
@@ -2861,8 +3019,7 @@ discard block |
||
| 2861 | 3019 | |
| 2862 | 3020 | // Keep track of the writable status here. |
| 2863 | 3021 | $file_permissions = @fileperms($chmod_file); |
| 2864 | - } |
|
| 2865 | - else |
|
| 3022 | + } else |
|
| 2866 | 3023 | { |
| 2867 | 3024 | // This looks odd, but it's an attempt to work around PHP suExec. |
| 2868 | 3025 | if (!file_exists($chmod_file) && $perm_state == 'writable') |
@@ -2872,24 +3029,28 @@ discard block |
||
| 2872 | 3029 | mktree(dirname($chmod_file), 0755); |
| 2873 | 3030 | @touch($chmod_file); |
| 2874 | 3031 | smf_chmod($chmod_file, 0755); |
| 3032 | + } else { |
|
| 3033 | + $file_permissions = @fileperms($chmod_file); |
|
| 2875 | 3034 | } |
| 2876 | - else |
|
| 2877 | - $file_permissions = @fileperms($chmod_file); |
|
| 2878 | 3035 | } |
| 2879 | 3036 | |
| 2880 | 3037 | // This looks odd, but it's another attempt to work around PHP suExec. |
| 2881 | - if ($perm_state != 'writable') |
|
| 2882 | - smf_chmod($chmod_file, $perm_state == 'execute' ? 0755 : 0644); |
|
| 2883 | - else |
|
| 3038 | + if ($perm_state != 'writable') { |
|
| 3039 | + smf_chmod($chmod_file, $perm_state == 'execute' ? 0755 : 0644); |
|
| 3040 | + } else |
|
| 2884 | 3041 | { |
| 2885 | - if (!@is_writable($chmod_file)) |
|
| 2886 | - smf_chmod($chmod_file, 0755); |
|
| 2887 | - if (!@is_writable($chmod_file)) |
|
| 2888 | - smf_chmod($chmod_file, 0777); |
|
| 2889 | - if (!@is_writable(dirname($chmod_file))) |
|
| 2890 | - smf_chmod($chmod_file, 0755); |
|
| 2891 | - if (!@is_writable(dirname($chmod_file))) |
|
| 2892 | - smf_chmod($chmod_file, 0777); |
|
| 3042 | + if (!@is_writable($chmod_file)) { |
|
| 3043 | + smf_chmod($chmod_file, 0755); |
|
| 3044 | + } |
|
| 3045 | + if (!@is_writable($chmod_file)) { |
|
| 3046 | + smf_chmod($chmod_file, 0777); |
|
| 3047 | + } |
|
| 3048 | + if (!@is_writable(dirname($chmod_file))) { |
|
| 3049 | + smf_chmod($chmod_file, 0755); |
|
| 3050 | + } |
|
| 3051 | + if (!@is_writable(dirname($chmod_file))) { |
|
| 3052 | + smf_chmod($chmod_file, 0777); |
|
| 3053 | + } |
|
| 2893 | 3054 | } |
| 2894 | 3055 | |
| 2895 | 3056 | // The ultimate writable test. |
@@ -2898,20 +3059,22 @@ discard block |
||
| 2898 | 3059 | $fp = is_dir($chmod_file) ? @opendir($chmod_file) : @fopen($chmod_file, 'rb'); |
| 2899 | 3060 | if (@is_writable($chmod_file) && $fp) |
| 2900 | 3061 | { |
| 2901 | - if (!is_dir($chmod_file)) |
|
| 2902 | - fclose($fp); |
|
| 2903 | - else |
|
| 2904 | - closedir($fp); |
|
| 3062 | + if (!is_dir($chmod_file)) { |
|
| 3063 | + fclose($fp); |
|
| 3064 | + } else { |
|
| 3065 | + closedir($fp); |
|
| 3066 | + } |
|
| 2905 | 3067 | |
| 2906 | 3068 | // It worked! |
| 2907 | - if ($track_change) |
|
| 2908 | - $_SESSION['pack_ftp']['original_perms'][$chmod_file] = $file_permissions; |
|
| 3069 | + if ($track_change) { |
|
| 3070 | + $_SESSION['pack_ftp']['original_perms'][$chmod_file] = $file_permissions; |
|
| 3071 | + } |
|
| 2909 | 3072 | |
| 2910 | 3073 | return true; |
| 2911 | 3074 | } |
| 3075 | + } elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$chmod_file])) { |
|
| 3076 | + unset($_SESSION['pack_ftp']['original_perms'][$chmod_file]); |
|
| 2912 | 3077 | } |
| 2913 | - elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$chmod_file])) |
|
| 2914 | - unset($_SESSION['pack_ftp']['original_perms'][$chmod_file]); |
|
| 2915 | 3078 | } |
| 2916 | 3079 | |
| 2917 | 3080 | // If we're here we're a failure. |
@@ -2930,31 +3093,33 @@ discard block |
||
| 2930 | 3093 | mktree(dirname($filename), 0755); |
| 2931 | 3094 | $package_ftp->create_file($ftp_file); |
| 2932 | 3095 | $package_ftp->chmod($ftp_file, 0755); |
| 3096 | + } else { |
|
| 3097 | + $file_permissions = @fileperms($filename); |
|
| 2933 | 3098 | } |
| 2934 | - else |
|
| 2935 | - $file_permissions = @fileperms($filename); |
|
| 2936 | 3099 | |
| 2937 | 3100 | if ($perm_state != 'writable') |
| 2938 | 3101 | { |
| 2939 | 3102 | $package_ftp->chmod($ftp_file, $perm_state == 'execute' ? 0755 : 0644); |
| 2940 | - } |
|
| 2941 | - else |
|
| 3103 | + } else |
|
| 2942 | 3104 | { |
| 2943 | - if (!@is_writable($filename)) |
|
| 2944 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 2945 | - if (!@is_writable(dirname($filename))) |
|
| 2946 | - $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 3105 | + if (!@is_writable($filename)) { |
|
| 3106 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 3107 | + } |
|
| 3108 | + if (!@is_writable(dirname($filename))) { |
|
| 3109 | + $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 3110 | + } |
|
| 2947 | 3111 | } |
| 2948 | 3112 | |
| 2949 | 3113 | if (@is_writable($filename)) |
| 2950 | 3114 | { |
| 2951 | - if ($track_change) |
|
| 2952 | - $_SESSION['pack_ftp']['original_perms'][$filename] = $file_permissions; |
|
| 3115 | + if ($track_change) { |
|
| 3116 | + $_SESSION['pack_ftp']['original_perms'][$filename] = $file_permissions; |
|
| 3117 | + } |
|
| 2953 | 3118 | |
| 2954 | 3119 | return true; |
| 3120 | + } elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$filename])) { |
|
| 3121 | + unset($_SESSION['pack_ftp']['original_perms'][$filename]); |
|
| 2955 | 3122 | } |
| 2956 | - elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$filename])) |
|
| 2957 | - unset($_SESSION['pack_ftp']['original_perms'][$filename]); |
|
| 2958 | 3123 | } |
| 2959 | 3124 | |
| 2960 | 3125 | // Oh dear, we failed if we get here. |
@@ -2972,11 +3137,13 @@ discard block |
||
| 2972 | 3137 | $n = strlen($pass); |
| 2973 | 3138 | |
| 2974 | 3139 | $salt = session_id(); |
| 2975 | - while (strlen($salt) < $n) |
|
| 2976 | - $salt .= session_id(); |
|
| 3140 | + while (strlen($salt) < $n) { |
|
| 3141 | + $salt .= session_id(); |
|
| 3142 | + } |
|
| 2977 | 3143 | |
| 2978 | - for ($i = 0; $i < $n; $i++) |
|
| 2979 | - $pass{$i} = chr(ord($pass{$i}) ^ (ord($salt{$i}) - 32)); |
|
| 3144 | + for ($i = 0; $i < $n; $i++) { |
|
| 3145 | + $pass{$i} = chr(ord($pass{$i}) ^ (ord($salt{$i}) - 32)); |
|
| 3146 | + } |
|
| 2980 | 3147 | |
| 2981 | 3148 | return $pass; |
| 2982 | 3149 | } |
@@ -2995,8 +3162,9 @@ discard block |
||
| 2995 | 3162 | $base_files = array('index.php', 'SSI.php', 'agreement.txt', 'cron.php', 'ssi_examples.php', 'ssi_examples.shtml', 'subscriptions.php'); |
| 2996 | 3163 | foreach ($base_files as $file) |
| 2997 | 3164 | { |
| 2998 | - if (file_exists($boarddir . '/' . $file)) |
|
| 2999 | - $files[empty($_REQUEST['use_full_paths']) ? $file : $boarddir . '/' . $file] = $boarddir . '/' . $file; |
|
| 3165 | + if (file_exists($boarddir . '/' . $file)) { |
|
| 3166 | + $files[empty($_REQUEST['use_full_paths']) ? $file : $boarddir . '/' . $file] = $boarddir . '/' . $file; |
|
| 3167 | + } |
|
| 3000 | 3168 | } |
| 3001 | 3169 | |
| 3002 | 3170 | $dirs = array( |
@@ -3013,8 +3181,9 @@ discard block |
||
| 3013 | 3181 | 'theme_dir' => 'theme_dir', |
| 3014 | 3182 | ) |
| 3015 | 3183 | ); |
| 3016 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 3017 | - $dirs[$row['value']] = empty($_REQUEST['use_full_paths']) ? 'Themes/' . basename($row['value']) . '/' : strtr($row['value'] . '/', '\\', '/'); |
|
| 3184 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 3185 | + $dirs[$row['value']] = empty($_REQUEST['use_full_paths']) ? 'Themes/' . basename($row['value']) . '/' : strtr($row['value'] . '/', '\\', '/'); |
|
| 3186 | + } |
|
| 3018 | 3187 | $smcFunc['db_free_result']($request); |
| 3019 | 3188 | |
| 3020 | 3189 | try |
@@ -3029,11 +3198,13 @@ discard block |
||
| 3029 | 3198 | |
| 3030 | 3199 | foreach ($iter as $entry => $dir) |
| 3031 | 3200 | { |
| 3032 | - if ($dir->isDir()) |
|
| 3033 | - continue; |
|
| 3201 | + if ($dir->isDir()) { |
|
| 3202 | + continue; |
|
| 3203 | + } |
|
| 3034 | 3204 | |
| 3035 | - if (preg_match('~^(\.{1,2}|CVS|backup.*|help|images|.*\~)$~', $entry) != 0) |
|
| 3036 | - continue; |
|
| 3205 | + if (preg_match('~^(\.{1,2}|CVS|backup.*|help|images|.*\~)$~', $entry) != 0) { |
|
| 3206 | + continue; |
|
| 3207 | + } |
|
| 3037 | 3208 | |
| 3038 | 3209 | $files[empty($_REQUEST['use_full_paths']) ? str_replace(realpath($boarddir), '', $entry) : $entry] = $entry; |
| 3039 | 3210 | } |
@@ -3041,10 +3212,12 @@ discard block |
||
| 3041 | 3212 | $obj = new ArrayObject($files); |
| 3042 | 3213 | $iterator = $obj->getIterator(); |
| 3043 | 3214 | |
| 3044 | - if (!file_exists($packagesdir . '/backups')) |
|
| 3045 | - mktree($packagesdir . '/backups', 0777); |
|
| 3046 | - if (!is_writable($packagesdir . '/backups')) |
|
| 3047 | - package_chmod($packagesdir . '/backups'); |
|
| 3215 | + if (!file_exists($packagesdir . '/backups')) { |
|
| 3216 | + mktree($packagesdir . '/backups', 0777); |
|
| 3217 | + } |
|
| 3218 | + if (!is_writable($packagesdir . '/backups')) { |
|
| 3219 | + package_chmod($packagesdir . '/backups'); |
|
| 3220 | + } |
|
| 3048 | 3221 | $output_file = $packagesdir . '/backups/' . strftime('%Y-%m-%d_') . preg_replace('~[$\\\\/:<>|?*"\']~', '', $id); |
| 3049 | 3222 | $output_ext = '.tar'; |
| 3050 | 3223 | $output_ext_target = '.tar.gz'; |
@@ -3052,16 +3225,18 @@ discard block |
||
| 3052 | 3225 | if (file_exists($output_file . $output_ext_target)) |
| 3053 | 3226 | { |
| 3054 | 3227 | $i = 2; |
| 3055 | - while (file_exists($output_file . '_' . $i . $output_ext_target)) |
|
| 3056 | - $i++; |
|
| 3228 | + while (file_exists($output_file . '_' . $i . $output_ext_target)) { |
|
| 3229 | + $i++; |
|
| 3230 | + } |
|
| 3057 | 3231 | $output_file = $output_file . '_' . $i . $output_ext; |
| 3232 | + } else { |
|
| 3233 | + $output_file .= $output_ext; |
|
| 3058 | 3234 | } |
| 3059 | - else |
|
| 3060 | - $output_file .= $output_ext; |
|
| 3061 | 3235 | |
| 3062 | 3236 | @set_time_limit(300); |
| 3063 | - if (function_exists('apache_reset_timeout')) |
|
| 3064 | - @apache_reset_timeout(); |
|
| 3237 | + if (function_exists('apache_reset_timeout')) { |
|
| 3238 | + @apache_reset_timeout(); |
|
| 3239 | + } |
|
| 3065 | 3240 | |
| 3066 | 3241 | $a = new PharData($output_file); |
| 3067 | 3242 | $a->buildFromIterator($iterator); |
@@ -3073,8 +3248,7 @@ discard block |
||
| 3073 | 3248 | */ |
| 3074 | 3249 | unset($a); |
| 3075 | 3250 | unlink($output_file); |
| 3076 | - } |
|
| 3077 | - catch (Exception $e) |
|
| 3251 | + } catch (Exception $e) |
|
| 3078 | 3252 | { |
| 3079 | 3253 | log_error($e->getMessage(), 'backup'); |
| 3080 | 3254 | |
@@ -239,7 +239,7 @@ |
||
| 239 | 239 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 240 | 240 | $fts_language[$row['cfgname']] = $row['cfgname']; |
| 241 | 241 | |
| 242 | - $config_vars = array_merge ($config_vars, array( |
|
| 242 | + $config_vars = array_merge($config_vars, array( |
|
| 243 | 243 | '', |
| 244 | 244 | array('search_language', $txt['search_language'], 'db', 'select', $fts_language, 'pgFulltextSearch') |
| 245 | 245 | ) |
@@ -59,8 +59,9 @@ discard block |
||
| 59 | 59 | * @version 2.1 Beta 4 |
| 60 | 60 | */ |
| 61 | 61 | |
| 62 | -if (!defined('SMF')) |
|
| 62 | +if (!defined('SMF')) { |
|
| 63 | 63 | die('No direct access...'); |
| 64 | +} |
|
| 64 | 65 | |
| 65 | 66 | /** |
| 66 | 67 | * This is the main dispatcher. Sets up all the available sub-actions, all the tabs and selects |
@@ -111,10 +112,11 @@ discard block |
||
| 111 | 112 | $settings_not_writable = !is_writable($boarddir . '/Settings.php'); |
| 112 | 113 | $settings_backup_fail = !@is_writable($boarddir . '/Settings_bak.php') || !@copy($boarddir . '/Settings.php', $boarddir . '/Settings_bak.php'); |
| 113 | 114 | |
| 114 | - if ($settings_not_writable) |
|
| 115 | - $context['settings_message'] = '<div class="centertext"><strong>' . $txt['settings_not_writable'] . '</strong></div><br>'; |
|
| 116 | - elseif ($settings_backup_fail) |
|
| 117 | - $context['settings_message'] = '<div class="centertext"><strong>' . $txt['admin_backup_fail'] . '</strong></div><br>'; |
|
| 115 | + if ($settings_not_writable) { |
|
| 116 | + $context['settings_message'] = '<div class="centertext"><strong>' . $txt['settings_not_writable'] . '</strong></div><br>'; |
|
| 117 | + } elseif ($settings_backup_fail) { |
|
| 118 | + $context['settings_message'] = '<div class="centertext"><strong>' . $txt['admin_backup_fail'] . '</strong></div><br>'; |
|
| 119 | + } |
|
| 118 | 120 | |
| 119 | 121 | $context['settings_not_writable'] = $settings_not_writable; |
| 120 | 122 | |
@@ -142,10 +144,11 @@ discard block |
||
| 142 | 144 | |
| 143 | 145 | // If no cert, force_ssl must remain 0 |
| 144 | 146 | require_once($sourcedir . '/Subs.php'); |
| 145 | - if (!ssl_cert_found($boardurl) && empty($modSettings['force_ssl'])) |
|
| 146 | - $disable_force_ssl = true; |
|
| 147 | - else |
|
| 148 | - $disable_force_ssl = false; |
|
| 147 | + if (!ssl_cert_found($boardurl) && empty($modSettings['force_ssl'])) { |
|
| 148 | + $disable_force_ssl = true; |
|
| 149 | + } else { |
|
| 150 | + $disable_force_ssl = false; |
|
| 151 | + } |
|
| 149 | 152 | |
| 150 | 153 | /* If you're writing a mod, it's a bad idea to add things here.... |
| 151 | 154 | For each option: |
@@ -175,8 +178,9 @@ discard block |
||
| 175 | 178 | |
| 176 | 179 | call_integration_hook('integrate_general_settings', array(&$config_vars)); |
| 177 | 180 | |
| 178 | - if ($return_config) |
|
| 179 | - return $config_vars; |
|
| 181 | + if ($return_config) { |
|
| 182 | + return $config_vars; |
|
| 183 | + } |
|
| 180 | 184 | |
| 181 | 185 | // Setup the template stuff. |
| 182 | 186 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=general;save'; |
@@ -193,16 +197,18 @@ discard block |
||
| 193 | 197 | $registerSMStats = registerSMStats(); |
| 194 | 198 | |
| 195 | 199 | // Failed to register, disable it again. |
| 196 | - if (empty($registerSMStats)) |
|
| 197 | - $_POST['enable_sm_stats'] = 0; |
|
| 200 | + if (empty($registerSMStats)) { |
|
| 201 | + $_POST['enable_sm_stats'] = 0; |
|
| 202 | + } |
|
| 198 | 203 | } |
| 199 | 204 | |
| 200 | 205 | // Ensure all URLs are aligned with the new force_ssl setting |
| 201 | 206 | // Treat unset like 0 |
| 202 | - if (isset($_POST['force_ssl'])) |
|
| 203 | - AlignURLsWithSSLSetting($_POST['force_ssl']); |
|
| 204 | - else |
|
| 205 | - AlignURLsWithSSLSetting(0); |
|
| 207 | + if (isset($_POST['force_ssl'])) { |
|
| 208 | + AlignURLsWithSSLSetting($_POST['force_ssl']); |
|
| 209 | + } else { |
|
| 210 | + AlignURLsWithSSLSetting(0); |
|
| 211 | + } |
|
| 206 | 212 | |
| 207 | 213 | saveSettings($config_vars); |
| 208 | 214 | $_SESSION['adm-save'] = true; |
@@ -255,10 +261,11 @@ discard block |
||
| 255 | 261 | require_once($sourcedir . '/Subs-Admin.php'); |
| 256 | 262 | |
| 257 | 263 | // Check $boardurl |
| 258 | - if (!empty($new_force_ssl)) |
|
| 259 | - $newval = strtr($boardurl, array('http://' => 'https://')); |
|
| 260 | - else |
|
| 261 | - $newval = strtr($boardurl, array('https://' => 'http://')); |
|
| 264 | + if (!empty($new_force_ssl)) { |
|
| 265 | + $newval = strtr($boardurl, array('http://' => 'https://')); |
|
| 266 | + } else { |
|
| 267 | + $newval = strtr($boardurl, array('https://' => 'http://')); |
|
| 268 | + } |
|
| 262 | 269 | updateSettingsFile(array('boardurl' => '\'' . addslashes($newval) . '\'')); |
| 263 | 270 | |
| 264 | 271 | $new_settings = array(); |
@@ -266,20 +273,22 @@ discard block |
||
| 266 | 273 | // Check $smileys_url, but only if it points to a subfolder of $boardurl |
| 267 | 274 | if (BoardurlMatch($modSettings['smileys_url'])) |
| 268 | 275 | { |
| 269 | - if (!empty($new_force_ssl)) |
|
| 270 | - $newval = strtr($modSettings['smileys_url'], array('http://' => 'https://')); |
|
| 271 | - else |
|
| 272 | - $newval = strtr($modSettings['smileys_url'], array('https://' => 'http://')); |
|
| 276 | + if (!empty($new_force_ssl)) { |
|
| 277 | + $newval = strtr($modSettings['smileys_url'], array('http://' => 'https://')); |
|
| 278 | + } else { |
|
| 279 | + $newval = strtr($modSettings['smileys_url'], array('https://' => 'http://')); |
|
| 280 | + } |
|
| 273 | 281 | $new_settings['smileys_url'] = $newval; |
| 274 | 282 | } |
| 275 | 283 | |
| 276 | 284 | // Check $avatar_url, but only if it points to a subfolder of $boardurl |
| 277 | 285 | if (BoardurlMatch($modSettings['avatar_url'])) |
| 278 | 286 | { |
| 279 | - if (!empty($new_force_ssl)) |
|
| 280 | - $newval = strtr($modSettings['avatar_url'], array('http://' => 'https://')); |
|
| 281 | - else |
|
| 282 | - $newval = strtr($modSettings['avatar_url'], array('https://' => 'http://')); |
|
| 287 | + if (!empty($new_force_ssl)) { |
|
| 288 | + $newval = strtr($modSettings['avatar_url'], array('http://' => 'https://')); |
|
| 289 | + } else { |
|
| 290 | + $newval = strtr($modSettings['avatar_url'], array('https://' => 'http://')); |
|
| 291 | + } |
|
| 283 | 292 | $new_settings['avatar_url'] = $newval; |
| 284 | 293 | } |
| 285 | 294 | |
@@ -287,16 +296,18 @@ discard block |
||
| 287 | 296 | // This one had been optional in the past, make sure it is set first |
| 288 | 297 | if (isset($modSettings['custom_avatar_url']) && BoardurlMatch($modSettings['custom_avatar_url'])) |
| 289 | 298 | { |
| 290 | - if (!empty($new_force_ssl)) |
|
| 291 | - $newval = strtr($modSettings['custom_avatar_url'], array('http://' => 'https://')); |
|
| 292 | - else |
|
| 293 | - $newval = strtr($modSettings['custom_avatar_url'], array('https://' => 'http://')); |
|
| 299 | + if (!empty($new_force_ssl)) { |
|
| 300 | + $newval = strtr($modSettings['custom_avatar_url'], array('http://' => 'https://')); |
|
| 301 | + } else { |
|
| 302 | + $newval = strtr($modSettings['custom_avatar_url'], array('https://' => 'http://')); |
|
| 303 | + } |
|
| 294 | 304 | $new_settings['custom_avatar_url'] = $newval; |
| 295 | 305 | } |
| 296 | 306 | |
| 297 | 307 | // Save updates to the settings table |
| 298 | - if (!empty($new_settings)) |
|
| 299 | - updateSettings($new_settings, true); |
|
| 308 | + if (!empty($new_settings)) { |
|
| 309 | + updateSettings($new_settings, true); |
|
| 310 | + } |
|
| 300 | 311 | |
| 301 | 312 | // Now we move onto the themes. |
| 302 | 313 | // First, get a list of theme URLs... |
@@ -317,10 +328,11 @@ discard block |
||
| 317 | 328 | // First check to see if it points to a subfolder of $boardurl |
| 318 | 329 | if (BoardurlMatch($row['value'])) |
| 319 | 330 | { |
| 320 | - if (!empty($new_force_ssl)) |
|
| 321 | - $newval = strtr($row['value'], array('http://' => 'https://')); |
|
| 322 | - else |
|
| 323 | - $newval = strtr($row['value'], array('https://' => 'http://')); |
|
| 331 | + if (!empty($new_force_ssl)) { |
|
| 332 | + $newval = strtr($row['value'], array('http://' => 'https://')); |
|
| 333 | + } else { |
|
| 334 | + $newval = strtr($row['value'], array('https://' => 'http://')); |
|
| 335 | + } |
|
| 324 | 336 | $smcFunc['db_query']('', ' |
| 325 | 337 | UPDATE {db_prefix}themes |
| 326 | 338 | SET value = {string:theme_val} |
@@ -360,11 +372,12 @@ discard block |
||
| 360 | 372 | |
| 361 | 373 | // If leftmost portion of path matches boardurl, return true |
| 362 | 374 | $result = strpos($urlpath, $boardurlpath); |
| 363 | - if ($result === false || $result != 0) |
|
| 364 | - return false; |
|
| 365 | - else |
|
| 366 | - return true; |
|
| 367 | -} |
|
| 375 | + if ($result === false || $result != 0) { |
|
| 376 | + return false; |
|
| 377 | + } else { |
|
| 378 | + return true; |
|
| 379 | + } |
|
| 380 | + } |
|
| 368 | 381 | |
| 369 | 382 | /** |
| 370 | 383 | * Basic database and paths settings - database name, host, etc. |
@@ -403,8 +416,9 @@ discard block |
||
| 403 | 416 | $request = $smcFunc['db_query']('', 'SELECT cfgname FROM pg_ts_config', array()); |
| 404 | 417 | $fts_language = array(); |
| 405 | 418 | |
| 406 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 407 | - $fts_language[$row['cfgname']] = $row['cfgname']; |
|
| 419 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 420 | + $fts_language[$row['cfgname']] = $row['cfgname']; |
|
| 421 | + } |
|
| 408 | 422 | |
| 409 | 423 | $config_vars = array_merge ($config_vars, array( |
| 410 | 424 | '', |
@@ -416,20 +430,22 @@ discard block |
||
| 416 | 430 | |
| 417 | 431 | call_integration_hook('integrate_database_settings', array(&$config_vars)); |
| 418 | 432 | |
| 419 | - if ($return_config) |
|
| 420 | - return $config_vars; |
|
| 433 | + if ($return_config) { |
|
| 434 | + return $config_vars; |
|
| 435 | + } |
|
| 421 | 436 | |
| 422 | 437 | // Setup the template stuff. |
| 423 | 438 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=database;save'; |
| 424 | 439 | $context['settings_title'] = $txt['database_settings']; |
| 425 | 440 | $context['save_disabled'] = $context['settings_not_writable']; |
| 426 | 441 | |
| 427 | - if (!$smcFunc['db_allow_persistent']) |
|
| 428 | - addInlineJavaScript(' |
|
| 442 | + if (!$smcFunc['db_allow_persistent']) { |
|
| 443 | + addInlineJavaScript(' |
|
| 429 | 444 | $(function() |
| 430 | 445 | { |
| 431 | 446 | $("#db_persist").prop("disabled", true); |
| 432 | 447 | });', true); |
| 448 | + } |
|
| 433 | 449 | |
| 434 | 450 | // Saving settings? |
| 435 | 451 | if (isset($_REQUEST['save'])) |
@@ -499,13 +515,15 @@ discard block |
||
| 499 | 515 | hideGlobalCookies(); |
| 500 | 516 | });', true); |
| 501 | 517 | |
| 502 | - if (empty($user_settings['tfa_secret'])) |
|
| 503 | - addInlineJavaScript(''); |
|
| 518 | + if (empty($user_settings['tfa_secret'])) { |
|
| 519 | + addInlineJavaScript(''); |
|
| 520 | + } |
|
| 504 | 521 | |
| 505 | 522 | call_integration_hook('integrate_cookie_settings', array(&$config_vars)); |
| 506 | 523 | |
| 507 | - if ($return_config) |
|
| 508 | - return $config_vars; |
|
| 524 | + if ($return_config) { |
|
| 525 | + return $config_vars; |
|
| 526 | + } |
|
| 509 | 527 | |
| 510 | 528 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cookie;save'; |
| 511 | 529 | $context['settings_title'] = $txt['cookies_sessions_settings']; |
@@ -516,14 +534,17 @@ discard block |
||
| 516 | 534 | call_integration_hook('integrate_save_cookie_settings'); |
| 517 | 535 | |
| 518 | 536 | // Local and global do not play nicely together. |
| 519 | - if (!empty($_POST['localCookies']) && empty($_POST['globalCookies'])) |
|
| 520 | - unset ($_POST['globalCookies']); |
|
| 537 | + if (!empty($_POST['localCookies']) && empty($_POST['globalCookies'])) { |
|
| 538 | + unset ($_POST['globalCookies']); |
|
| 539 | + } |
|
| 521 | 540 | |
| 522 | - if (empty($modSettings['localCookies']) != empty($_POST['localCookies']) || empty($modSettings['globalCookies']) != empty($_POST['globalCookies'])) |
|
| 523 | - $scope_changed = true; |
|
| 541 | + if (empty($modSettings['localCookies']) != empty($_POST['localCookies']) || empty($modSettings['globalCookies']) != empty($_POST['globalCookies'])) { |
|
| 542 | + $scope_changed = true; |
|
| 543 | + } |
|
| 524 | 544 | |
| 525 | - if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false) |
|
| 526 | - fatal_lang_error('invalid_cookie_domain', false); |
|
| 545 | + if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false) { |
|
| 546 | + fatal_lang_error('invalid_cookie_domain', false); |
|
| 547 | + } |
|
| 527 | 548 | |
| 528 | 549 | saveSettings($config_vars); |
| 529 | 550 | |
@@ -606,8 +627,9 @@ discard block |
||
| 606 | 627 | |
| 607 | 628 | call_integration_hook('integrate_general_security_settings', array(&$config_vars)); |
| 608 | 629 | |
| 609 | - if ($return_config) |
|
| 610 | - return $config_vars; |
|
| 630 | + if ($return_config) { |
|
| 631 | + return $config_vars; |
|
| 632 | + } |
|
| 611 | 633 | |
| 612 | 634 | // Saving? |
| 613 | 635 | if (isset($_GET['save'])) |
@@ -646,8 +668,7 @@ discard block |
||
| 646 | 668 | $txt['cache_settings_message'] = $txt['detected_no_caching']; |
| 647 | 669 | $cache_level = array($txt['cache_off']); |
| 648 | 670 | $detected['none'] = $txt['cache_off']; |
| 649 | - } |
|
| 650 | - else |
|
| 671 | + } else |
|
| 651 | 672 | { |
| 652 | 673 | $txt['cache_settings_message'] = sprintf($txt['detected_accelerators'], implode(', ', $detected)); |
| 653 | 674 | $cache_level = array($txt['cache_off'], $txt['cache_level1'], $txt['cache_level2'], $txt['cache_level3']); |
@@ -684,8 +705,9 @@ discard block |
||
| 684 | 705 | } |
| 685 | 706 | } |
| 686 | 707 | } |
| 687 | - if ($return_config) |
|
| 688 | - return $config_vars; |
|
| 708 | + if ($return_config) { |
|
| 709 | + return $config_vars; |
|
| 710 | + } |
|
| 689 | 711 | |
| 690 | 712 | // Saving again? |
| 691 | 713 | if (isset($_GET['save'])) |
@@ -713,8 +735,9 @@ discard block |
||
| 713 | 735 | $context['save_disabled'] = $context['settings_not_writable']; |
| 714 | 736 | |
| 715 | 737 | // Decide what message to show. |
| 716 | - if (!$context['save_disabled']) |
|
| 717 | - $context['settings_message'] = $txt['caching_information']; |
|
| 738 | + if (!$context['save_disabled']) { |
|
| 739 | + $context['settings_message'] = $txt['caching_information']; |
|
| 740 | + } |
|
| 718 | 741 | |
| 719 | 742 | // Prepare the template. |
| 720 | 743 | prepareServerSettingsContext($config_vars); |
@@ -737,24 +760,25 @@ discard block |
||
| 737 | 760 | if (stripos(PHP_OS, 'win') === 0) |
| 738 | 761 | { |
| 739 | 762 | $context['settings_message'] = $txt['loadavg_disabled_windows']; |
| 740 | - if (isset($_GET['save'])) |
|
| 741 | - $_SESSION['adm-save'] = $txt['loadavg_disabled_windows']; |
|
| 742 | - } |
|
| 743 | - elseif (stripos(PHP_OS, 'darwin') === 0) |
|
| 763 | + if (isset($_GET['save'])) { |
|
| 764 | + $_SESSION['adm-save'] = $txt['loadavg_disabled_windows']; |
|
| 765 | + } |
|
| 766 | + } elseif (stripos(PHP_OS, 'darwin') === 0) |
|
| 744 | 767 | { |
| 745 | 768 | $context['settings_message'] = $txt['loadavg_disabled_osx']; |
| 746 | - if (isset($_GET['save'])) |
|
| 747 | - $_SESSION['adm-save'] = $txt['loadavg_disabled_osx']; |
|
| 748 | - } |
|
| 749 | - else |
|
| 769 | + if (isset($_GET['save'])) { |
|
| 770 | + $_SESSION['adm-save'] = $txt['loadavg_disabled_osx']; |
|
| 771 | + } |
|
| 772 | + } else |
|
| 750 | 773 | { |
| 751 | 774 | $modSettings['load_average'] = @file_get_contents('/proc/loadavg'); |
| 752 | - if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0) |
|
| 753 | - $modSettings['load_average'] = (float) $matches[1]; |
|
| 754 | - elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0) |
|
| 755 | - $modSettings['load_average'] = (float) $matches[1]; |
|
| 756 | - else |
|
| 757 | - unset($modSettings['load_average']); |
|
| 775 | + if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0) { |
|
| 776 | + $modSettings['load_average'] = (float) $matches[1]; |
|
| 777 | + } elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0) { |
|
| 778 | + $modSettings['load_average'] = (float) $matches[1]; |
|
| 779 | + } else { |
|
| 780 | + unset($modSettings['load_average']); |
|
| 781 | + } |
|
| 758 | 782 | |
| 759 | 783 | if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0) |
| 760 | 784 | { |
@@ -790,8 +814,9 @@ discard block |
||
| 790 | 814 | |
| 791 | 815 | call_integration_hook('integrate_loadavg_settings', array(&$config_vars)); |
| 792 | 816 | |
| 793 | - if ($return_config) |
|
| 794 | - return $config_vars; |
|
| 817 | + if ($return_config) { |
|
| 818 | + return $config_vars; |
|
| 819 | + } |
|
| 795 | 820 | |
| 796 | 821 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=loads;save'; |
| 797 | 822 | $context['settings_title'] = $txt['load_balancing_settings']; |
@@ -802,24 +827,27 @@ discard block |
||
| 802 | 827 | // Stupidity is not allowed. |
| 803 | 828 | foreach ($_POST as $key => $value) |
| 804 | 829 | { |
| 805 | - if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable' || !in_array($key, array_keys($default_values))) |
|
| 806 | - continue; |
|
| 807 | - else |
|
| 808 | - $_POST[$key] = (float) $value; |
|
| 809 | - |
|
| 810 | - if ($key == 'loadavg_auto_opt' && $value <= 1) |
|
| 811 | - $_POST['loadavg_auto_opt'] = 1.0; |
|
| 812 | - elseif ($key == 'loadavg_forum' && $value < 10) |
|
| 813 | - $_POST['loadavg_forum'] = 10.0; |
|
| 814 | - elseif ($value < 2) |
|
| 815 | - $_POST[$key] = 2.0; |
|
| 830 | + if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable' || !in_array($key, array_keys($default_values))) { |
|
| 831 | + continue; |
|
| 832 | + } else { |
|
| 833 | + $_POST[$key] = (float) $value; |
|
| 834 | + } |
|
| 835 | + |
|
| 836 | + if ($key == 'loadavg_auto_opt' && $value <= 1) { |
|
| 837 | + $_POST['loadavg_auto_opt'] = 1.0; |
|
| 838 | + } elseif ($key == 'loadavg_forum' && $value < 10) { |
|
| 839 | + $_POST['loadavg_forum'] = 10.0; |
|
| 840 | + } elseif ($value < 2) { |
|
| 841 | + $_POST[$key] = 2.0; |
|
| 842 | + } |
|
| 816 | 843 | } |
| 817 | 844 | |
| 818 | 845 | call_integration_hook('integrate_save_loadavg_settings'); |
| 819 | 846 | |
| 820 | 847 | saveDBSettings($config_vars); |
| 821 | - if (!isset($_SESSION['adm-save'])) |
|
| 822 | - $_SESSION['adm-save'] = true; |
|
| 848 | + if (!isset($_SESSION['adm-save'])) { |
|
| 849 | + $_SESSION['adm-save'] = true; |
|
| 850 | + } |
|
| 823 | 851 | redirectexit('action=admin;area=serversettings;sa=loads;' . $context['session_var'] . '=' . $context['session_id']); |
| 824 | 852 | } |
| 825 | 853 | |
@@ -855,10 +883,11 @@ discard block |
||
| 855 | 883 | |
| 856 | 884 | if (isset($_SESSION['adm-save'])) |
| 857 | 885 | { |
| 858 | - if ($_SESSION['adm-save'] === true) |
|
| 859 | - $context['saved_successful'] = true; |
|
| 860 | - else |
|
| 861 | - $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 886 | + if ($_SESSION['adm-save'] === true) { |
|
| 887 | + $context['saved_successful'] = true; |
|
| 888 | + } else { |
|
| 889 | + $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 890 | + } |
|
| 862 | 891 | |
| 863 | 892 | unset($_SESSION['adm-save']); |
| 864 | 893 | } |
@@ -866,9 +895,9 @@ discard block |
||
| 866 | 895 | $context['config_vars'] = array(); |
| 867 | 896 | foreach ($config_vars as $identifier => $config_var) |
| 868 | 897 | { |
| 869 | - if (!is_array($config_var) || !isset($config_var[1])) |
|
| 870 | - $context['config_vars'][] = $config_var; |
|
| 871 | - else |
|
| 898 | + if (!is_array($config_var) || !isset($config_var[1])) { |
|
| 899 | + $context['config_vars'][] = $config_var; |
|
| 900 | + } else |
|
| 872 | 901 | { |
| 873 | 902 | $varname = $config_var[0]; |
| 874 | 903 | global $$varname; |
@@ -903,16 +932,19 @@ discard block |
||
| 903 | 932 | if ($config_var[3] == 'int' || $config_var[3] == 'float') |
| 904 | 933 | { |
| 905 | 934 | // Default to a min of 0 if one isn't set |
| 906 | - if (isset($config_var['min'])) |
|
| 907 | - $context['config_vars'][$config_var[0]]['min'] = $config_var['min']; |
|
| 908 | - else |
|
| 909 | - $context['config_vars'][$config_var[0]]['min'] = 0; |
|
| 935 | + if (isset($config_var['min'])) { |
|
| 936 | + $context['config_vars'][$config_var[0]]['min'] = $config_var['min']; |
|
| 937 | + } else { |
|
| 938 | + $context['config_vars'][$config_var[0]]['min'] = 0; |
|
| 939 | + } |
|
| 910 | 940 | |
| 911 | - if (isset($config_var['max'])) |
|
| 912 | - $context['config_vars'][$config_var[0]]['max'] = $config_var['max']; |
|
| 941 | + if (isset($config_var['max'])) { |
|
| 942 | + $context['config_vars'][$config_var[0]]['max'] = $config_var['max']; |
|
| 943 | + } |
|
| 913 | 944 | |
| 914 | - if (isset($config_var['step'])) |
|
| 915 | - $context['config_vars'][$config_var[0]]['step'] = $config_var['step']; |
|
| 945 | + if (isset($config_var['step'])) { |
|
| 946 | + $context['config_vars'][$config_var[0]]['step'] = $config_var['step']; |
|
| 947 | + } |
|
| 916 | 948 | } |
| 917 | 949 | |
| 918 | 950 | // If this is a select box handle any data. |
@@ -920,12 +952,13 @@ discard block |
||
| 920 | 952 | { |
| 921 | 953 | // If it's associative |
| 922 | 954 | $config_values = array_values($config_var[4]); |
| 923 | - if (isset($config_values[0]) && is_array($config_values[0])) |
|
| 924 | - $context['config_vars'][$config_var[0]]['data'] = $config_var[4]; |
|
| 925 | - else |
|
| 955 | + if (isset($config_values[0]) && is_array($config_values[0])) { |
|
| 956 | + $context['config_vars'][$config_var[0]]['data'] = $config_var[4]; |
|
| 957 | + } else |
|
| 926 | 958 | { |
| 927 | - foreach ($config_var[4] as $key => $item) |
|
| 928 | - $context['config_vars'][$config_var[0]]['data'][] = array($key, $item); |
|
| 959 | + foreach ($config_var[4] as $key => $item) { |
|
| 960 | + $context['config_vars'][$config_var[0]]['data'][] = array($key, $item); |
|
| 961 | + } |
|
| 929 | 962 | } |
| 930 | 963 | } |
| 931 | 964 | } |
@@ -950,10 +983,11 @@ discard block |
||
| 950 | 983 | |
| 951 | 984 | if (isset($_SESSION['adm-save'])) |
| 952 | 985 | { |
| 953 | - if ($_SESSION['adm-save'] === true) |
|
| 954 | - $context['saved_successful'] = true; |
|
| 955 | - else |
|
| 956 | - $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 986 | + if ($_SESSION['adm-save'] === true) { |
|
| 987 | + $context['saved_successful'] = true; |
|
| 988 | + } else { |
|
| 989 | + $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 990 | + } |
|
| 957 | 991 | |
| 958 | 992 | unset($_SESSION['adm-save']); |
| 959 | 993 | } |
@@ -965,26 +999,30 @@ discard block |
||
| 965 | 999 | foreach ($config_vars as $config_var) |
| 966 | 1000 | { |
| 967 | 1001 | // HR? |
| 968 | - if (!is_array($config_var)) |
|
| 969 | - $context['config_vars'][] = $config_var; |
|
| 970 | - else |
|
| 1002 | + if (!is_array($config_var)) { |
|
| 1003 | + $context['config_vars'][] = $config_var; |
|
| 1004 | + } else |
|
| 971 | 1005 | { |
| 972 | 1006 | // If it has no name it doesn't have any purpose! |
| 973 | - if (empty($config_var[1])) |
|
| 974 | - continue; |
|
| 1007 | + if (empty($config_var[1])) { |
|
| 1008 | + continue; |
|
| 1009 | + } |
|
| 975 | 1010 | |
| 976 | 1011 | // Special case for inline permissions |
| 977 | - if ($config_var[0] == 'permissions' && allowedTo('manage_permissions')) |
|
| 978 | - $inlinePermissions[] = $config_var[1]; |
|
| 979 | - elseif ($config_var[0] == 'permissions') |
|
| 980 | - continue; |
|
| 1012 | + if ($config_var[0] == 'permissions' && allowedTo('manage_permissions')) { |
|
| 1013 | + $inlinePermissions[] = $config_var[1]; |
|
| 1014 | + } elseif ($config_var[0] == 'permissions') { |
|
| 1015 | + continue; |
|
| 1016 | + } |
|
| 981 | 1017 | |
| 982 | - if ($config_var[0] == 'boards') |
|
| 983 | - $board_list = true; |
|
| 1018 | + if ($config_var[0] == 'boards') { |
|
| 1019 | + $board_list = true; |
|
| 1020 | + } |
|
| 984 | 1021 | |
| 985 | 1022 | // Are we showing the BBC selection box? |
| 986 | - if ($config_var[0] == 'bbc') |
|
| 987 | - $bbcChoice[] = $config_var[1]; |
|
| 1023 | + if ($config_var[0] == 'bbc') { |
|
| 1024 | + $bbcChoice[] = $config_var[1]; |
|
| 1025 | + } |
|
| 988 | 1026 | |
| 989 | 1027 | // We need to do some parsing of the value before we pass it in. |
| 990 | 1028 | if (isset($modSettings[$config_var[1]])) |
@@ -1003,8 +1041,7 @@ discard block |
||
| 1003 | 1041 | default: |
| 1004 | 1042 | $value = $smcFunc['htmlspecialchars']($modSettings[$config_var[1]]); |
| 1005 | 1043 | } |
| 1006 | - } |
|
| 1007 | - else |
|
| 1044 | + } else |
|
| 1008 | 1045 | { |
| 1009 | 1046 | // Darn, it's empty. What type is expected? |
| 1010 | 1047 | switch ($config_var[0]) |
@@ -1044,16 +1081,19 @@ discard block |
||
| 1044 | 1081 | if ($config_var[0] == 'int' || $config_var[0] == 'float') |
| 1045 | 1082 | { |
| 1046 | 1083 | // Default to a min of 0 if one isn't set |
| 1047 | - if (isset($config_var['min'])) |
|
| 1048 | - $context['config_vars'][$config_var[1]]['min'] = $config_var['min']; |
|
| 1049 | - else |
|
| 1050 | - $context['config_vars'][$config_var[1]]['min'] = 0; |
|
| 1084 | + if (isset($config_var['min'])) { |
|
| 1085 | + $context['config_vars'][$config_var[1]]['min'] = $config_var['min']; |
|
| 1086 | + } else { |
|
| 1087 | + $context['config_vars'][$config_var[1]]['min'] = 0; |
|
| 1088 | + } |
|
| 1051 | 1089 | |
| 1052 | - if (isset($config_var['max'])) |
|
| 1053 | - $context['config_vars'][$config_var[1]]['max'] = $config_var['max']; |
|
| 1090 | + if (isset($config_var['max'])) { |
|
| 1091 | + $context['config_vars'][$config_var[1]]['max'] = $config_var['max']; |
|
| 1092 | + } |
|
| 1054 | 1093 | |
| 1055 | - if (isset($config_var['step'])) |
|
| 1056 | - $context['config_vars'][$config_var[1]]['step'] = $config_var['step']; |
|
| 1094 | + if (isset($config_var['step'])) { |
|
| 1095 | + $context['config_vars'][$config_var[1]]['step'] = $config_var['step']; |
|
| 1096 | + } |
|
| 1057 | 1097 | } |
| 1058 | 1098 | |
| 1059 | 1099 | // If this is a select box handle any data. |
@@ -1067,12 +1107,13 @@ discard block |
||
| 1067 | 1107 | } |
| 1068 | 1108 | |
| 1069 | 1109 | // If it's associative |
| 1070 | - if (isset($config_var[2][0]) && is_array($config_var[2][0])) |
|
| 1071 | - $context['config_vars'][$config_var[1]]['data'] = $config_var[2]; |
|
| 1072 | - else |
|
| 1110 | + if (isset($config_var[2][0]) && is_array($config_var[2][0])) { |
|
| 1111 | + $context['config_vars'][$config_var[1]]['data'] = $config_var[2]; |
|
| 1112 | + } else |
|
| 1073 | 1113 | { |
| 1074 | - foreach ($config_var[2] as $key => $item) |
|
| 1075 | - $context['config_vars'][$config_var[1]]['data'][] = array($key, $item); |
|
| 1114 | + foreach ($config_var[2] as $key => $item) { |
|
| 1115 | + $context['config_vars'][$config_var[1]]['data'][] = array($key, $item); |
|
| 1116 | + } |
|
| 1076 | 1117 | } |
| 1077 | 1118 | } |
| 1078 | 1119 | |
@@ -1081,17 +1122,19 @@ discard block |
||
| 1081 | 1122 | { |
| 1082 | 1123 | if (!is_numeric($k)) |
| 1083 | 1124 | { |
| 1084 | - if (substr($k, 0, 2) == 'on') |
|
| 1085 | - $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"'; |
|
| 1086 | - else |
|
| 1087 | - $context['config_vars'][$config_var[1]][$k] = $v; |
|
| 1125 | + if (substr($k, 0, 2) == 'on') { |
|
| 1126 | + $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"'; |
|
| 1127 | + } else { |
|
| 1128 | + $context['config_vars'][$config_var[1]][$k] = $v; |
|
| 1129 | + } |
|
| 1088 | 1130 | } |
| 1089 | 1131 | |
| 1090 | 1132 | // See if there are any other labels that might fit? |
| 1091 | - if (isset($txt['setting_' . $config_var[1]])) |
|
| 1092 | - $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]]; |
|
| 1093 | - elseif (isset($txt['groups_' . $config_var[1]])) |
|
| 1094 | - $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]]; |
|
| 1133 | + if (isset($txt['setting_' . $config_var[1]])) { |
|
| 1134 | + $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]]; |
|
| 1135 | + } elseif (isset($txt['groups_' . $config_var[1]])) { |
|
| 1136 | + $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]]; |
|
| 1137 | + } |
|
| 1095 | 1138 | } |
| 1096 | 1139 | |
| 1097 | 1140 | // Set the subtext in case it's part of the label. |
@@ -1124,8 +1167,9 @@ discard block |
||
| 1124 | 1167 | // What are the options, eh? |
| 1125 | 1168 | $temp = parse_bbc(false); |
| 1126 | 1169 | $bbcTags = array(); |
| 1127 | - foreach ($temp as $tag) |
|
| 1128 | - $bbcTags[] = $tag['tag']; |
|
| 1170 | + foreach ($temp as $tag) { |
|
| 1171 | + $bbcTags[] = $tag['tag']; |
|
| 1172 | + } |
|
| 1129 | 1173 | |
| 1130 | 1174 | $bbcTags = array_unique($bbcTags); |
| 1131 | 1175 | $totalTags = count($bbcTags); |
@@ -1140,8 +1184,9 @@ discard block |
||
| 1140 | 1184 | $col = 0; $i = 0; |
| 1141 | 1185 | foreach ($bbcTags as $tag) |
| 1142 | 1186 | { |
| 1143 | - if ($i % $tagsPerColumn == 0 && $i != 0) |
|
| 1144 | - $col++; |
|
| 1187 | + if ($i % $tagsPerColumn == 0 && $i != 0) { |
|
| 1188 | + $col++; |
|
| 1189 | + } |
|
| 1145 | 1190 | |
| 1146 | 1191 | $context['bbc_columns'][$col][] = array( |
| 1147 | 1192 | 'tag' => $tag, |
@@ -1184,18 +1229,21 @@ discard block |
||
| 1184 | 1229 | validateToken('admin-ssc'); |
| 1185 | 1230 | |
| 1186 | 1231 | // Fix the darn stupid cookiename! (more may not be allowed, but these for sure!) |
| 1187 | - if (isset($_POST['cookiename'])) |
|
| 1188 | - $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']); |
|
| 1232 | + if (isset($_POST['cookiename'])) { |
|
| 1233 | + $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']); |
|
| 1234 | + } |
|
| 1189 | 1235 | |
| 1190 | 1236 | // Fix the forum's URL if necessary. |
| 1191 | 1237 | if (isset($_POST['boardurl'])) |
| 1192 | 1238 | { |
| 1193 | - if (substr($_POST['boardurl'], -10) == '/index.php') |
|
| 1194 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
| 1195 | - elseif (substr($_POST['boardurl'], -1) == '/') |
|
| 1196 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
| 1197 | - if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') |
|
| 1198 | - $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
| 1239 | + if (substr($_POST['boardurl'], -10) == '/index.php') { |
|
| 1240 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
| 1241 | + } elseif (substr($_POST['boardurl'], -1) == '/') { |
|
| 1242 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
| 1243 | + } |
|
| 1244 | + if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') { |
|
| 1245 | + $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
| 1246 | + } |
|
| 1199 | 1247 | } |
| 1200 | 1248 | |
| 1201 | 1249 | // Any passwords? |
@@ -1230,21 +1278,21 @@ discard block |
||
| 1230 | 1278 | // Figure out which config vars we're saving here... |
| 1231 | 1279 | foreach ($config_vars as $var) |
| 1232 | 1280 | { |
| 1233 | - if (!is_array($var) || $var[2] != 'file' || (!in_array($var[0], $config_bools) && !isset($_POST[$var[0]]))) |
|
| 1234 | - continue; |
|
| 1281 | + if (!is_array($var) || $var[2] != 'file' || (!in_array($var[0], $config_bools) && !isset($_POST[$var[0]]))) { |
|
| 1282 | + continue; |
|
| 1283 | + } |
|
| 1235 | 1284 | |
| 1236 | 1285 | $config_var = $var[0]; |
| 1237 | 1286 | |
| 1238 | 1287 | if (in_array($config_var, $config_passwords)) |
| 1239 | 1288 | { |
| 1240 | - if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1]) |
|
| 1241 | - $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\''; |
|
| 1242 | - } |
|
| 1243 | - elseif (in_array($config_var, $config_strs)) |
|
| 1289 | + if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1]) { |
|
| 1290 | + $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\''; |
|
| 1291 | + } |
|
| 1292 | + } elseif (in_array($config_var, $config_strs)) |
|
| 1244 | 1293 | { |
| 1245 | 1294 | $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var], '\'\\') . '\''; |
| 1246 | - } |
|
| 1247 | - elseif (in_array($config_var, $config_ints)) |
|
| 1295 | + } elseif (in_array($config_var, $config_ints)) |
|
| 1248 | 1296 | { |
| 1249 | 1297 | $new_settings[$config_var] = (int) $_POST[$config_var]; |
| 1250 | 1298 | |
@@ -1253,17 +1301,17 @@ discard block |
||
| 1253 | 1301 | $new_settings[$config_var] = max($min, $new_settings[$config_var]); |
| 1254 | 1302 | |
| 1255 | 1303 | // Is there a max value for this as well? |
| 1256 | - if (isset($var['max'])) |
|
| 1257 | - $new_settings[$config_var] = min($var['max'], $new_settings[$config_var]); |
|
| 1258 | - } |
|
| 1259 | - elseif (in_array($config_var, $config_bools)) |
|
| 1304 | + if (isset($var['max'])) { |
|
| 1305 | + $new_settings[$config_var] = min($var['max'], $new_settings[$config_var]); |
|
| 1306 | + } |
|
| 1307 | + } elseif (in_array($config_var, $config_bools)) |
|
| 1260 | 1308 | { |
| 1261 | - if (!empty($_POST[$config_var])) |
|
| 1262 | - $new_settings[$config_var] = '1'; |
|
| 1263 | - else |
|
| 1264 | - $new_settings[$config_var] = '0'; |
|
| 1265 | - } |
|
| 1266 | - else |
|
| 1309 | + if (!empty($_POST[$config_var])) { |
|
| 1310 | + $new_settings[$config_var] = '1'; |
|
| 1311 | + } else { |
|
| 1312 | + $new_settings[$config_var] = '0'; |
|
| 1313 | + } |
|
| 1314 | + } else |
|
| 1267 | 1315 | { |
| 1268 | 1316 | // This shouldn't happen, but it might... |
| 1269 | 1317 | fatal_error('Unknown config_var \'' . $config_var . '\''); |
@@ -1279,30 +1327,35 @@ discard block |
||
| 1279 | 1327 | foreach ($config_vars as $config_var) |
| 1280 | 1328 | { |
| 1281 | 1329 | // We just saved the file-based settings, so skip their definitions. |
| 1282 | - if (!is_array($config_var) || $config_var[2] == 'file') |
|
| 1283 | - continue; |
|
| 1330 | + if (!is_array($config_var) || $config_var[2] == 'file') { |
|
| 1331 | + continue; |
|
| 1332 | + } |
|
| 1284 | 1333 | |
| 1285 | 1334 | $new_setting = array($config_var[3], $config_var[0]); |
| 1286 | 1335 | |
| 1287 | 1336 | // Select options need carried over, too. |
| 1288 | - if (isset($config_var[4])) |
|
| 1289 | - $new_setting[] = $config_var[4]; |
|
| 1337 | + if (isset($config_var[4])) { |
|
| 1338 | + $new_setting[] = $config_var[4]; |
|
| 1339 | + } |
|
| 1290 | 1340 | |
| 1291 | 1341 | // Include min and max if necessary |
| 1292 | - if (isset($config_var['min'])) |
|
| 1293 | - $new_setting['min'] = $config_var['min']; |
|
| 1342 | + if (isset($config_var['min'])) { |
|
| 1343 | + $new_setting['min'] = $config_var['min']; |
|
| 1344 | + } |
|
| 1294 | 1345 | |
| 1295 | - if (isset($config_var['max'])) |
|
| 1296 | - $new_setting['max'] = $config_var['max']; |
|
| 1346 | + if (isset($config_var['max'])) { |
|
| 1347 | + $new_setting['max'] = $config_var['max']; |
|
| 1348 | + } |
|
| 1297 | 1349 | |
| 1298 | 1350 | // Rewrite the definition a bit. |
| 1299 | 1351 | $new_settings[] = $new_setting; |
| 1300 | 1352 | } |
| 1301 | 1353 | |
| 1302 | 1354 | // Save the new database-based settings, if any. |
| 1303 | - if (!empty($new_settings)) |
|
| 1304 | - saveDBSettings($new_settings); |
|
| 1305 | -} |
|
| 1355 | + if (!empty($new_settings)) { |
|
| 1356 | + saveDBSettings($new_settings); |
|
| 1357 | + } |
|
| 1358 | + } |
|
| 1306 | 1359 | |
| 1307 | 1360 | /** |
| 1308 | 1361 | * Helper function for saving database settings. |
@@ -1320,22 +1373,25 @@ discard block |
||
| 1320 | 1373 | $inlinePermissions = array(); |
| 1321 | 1374 | foreach ($config_vars as $var) |
| 1322 | 1375 | { |
| 1323 | - if (!isset($var[1]) || (!isset($_POST[$var[1]]) && $var[0] != 'check' && $var[0] != 'permissions' && $var[0] != 'boards' && ($var[0] != 'bbc' || !isset($_POST[$var[1] . '_enabledTags'])))) |
|
| 1324 | - continue; |
|
| 1376 | + if (!isset($var[1]) || (!isset($_POST[$var[1]]) && $var[0] != 'check' && $var[0] != 'permissions' && $var[0] != 'boards' && ($var[0] != 'bbc' || !isset($_POST[$var[1] . '_enabledTags'])))) { |
|
| 1377 | + continue; |
|
| 1378 | + } |
|
| 1325 | 1379 | |
| 1326 | 1380 | // Checkboxes! |
| 1327 | - elseif ($var[0] == 'check') |
|
| 1328 | - $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0'; |
|
| 1381 | + elseif ($var[0] == 'check') { |
|
| 1382 | + $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0'; |
|
| 1383 | + } |
|
| 1329 | 1384 | // Select boxes! |
| 1330 | - elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2]))) |
|
| 1331 | - $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1332 | - elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array()) |
|
| 1385 | + elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2]))) { |
|
| 1386 | + $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1387 | + } elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array()) |
|
| 1333 | 1388 | { |
| 1334 | 1389 | // For security purposes we validate this line by line. |
| 1335 | 1390 | $lOptions = array(); |
| 1336 | - foreach ($_POST[$var[1]] as $invar) |
|
| 1337 | - if (in_array($invar, array_keys($var[2]))) |
|
| 1391 | + foreach ($_POST[$var[1]] as $invar) { |
|
| 1392 | + if (in_array($invar, array_keys($var[2]))) |
|
| 1338 | 1393 | $lOptions[] = $invar; |
| 1394 | + } |
|
| 1339 | 1395 | |
| 1340 | 1396 | $setArray[$var[1]] = $smcFunc['json_encode']($lOptions); |
| 1341 | 1397 | } |
@@ -1349,18 +1405,20 @@ discard block |
||
| 1349 | 1405 | $request = $smcFunc['db_query']('', ' |
| 1350 | 1406 | SELECT id_board |
| 1351 | 1407 | FROM {db_prefix}boards'); |
| 1352 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 1353 | - $board_list[$row[0]] = true; |
|
| 1408 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 1409 | + $board_list[$row[0]] = true; |
|
| 1410 | + } |
|
| 1354 | 1411 | |
| 1355 | 1412 | $smcFunc['db_free_result']($request); |
| 1356 | 1413 | } |
| 1357 | 1414 | |
| 1358 | 1415 | $lOptions = array(); |
| 1359 | 1416 | |
| 1360 | - if (!empty($_POST[$var[1]])) |
|
| 1361 | - foreach ($_POST[$var[1]] as $invar => $dummy) |
|
| 1417 | + if (!empty($_POST[$var[1]])) { |
|
| 1418 | + foreach ($_POST[$var[1]] as $invar => $dummy) |
|
| 1362 | 1419 | if (isset($board_list[$invar])) |
| 1363 | 1420 | $lOptions[] = $invar; |
| 1421 | + } |
|
| 1364 | 1422 | |
| 1365 | 1423 | $setArray[$var[1]] = !empty($lOptions) ? implode(',', $lOptions) : ''; |
| 1366 | 1424 | } |
@@ -1374,8 +1432,9 @@ discard block |
||
| 1374 | 1432 | $setArray[$var[1]] = max($min, $setArray[$var[1]]); |
| 1375 | 1433 | |
| 1376 | 1434 | // Do we have a max value for this as well? |
| 1377 | - if (isset($var['max'])) |
|
| 1378 | - $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1435 | + if (isset($var['max'])) { |
|
| 1436 | + $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1437 | + } |
|
| 1379 | 1438 | } |
| 1380 | 1439 | // Floating point! |
| 1381 | 1440 | elseif ($var[0] == 'float') |
@@ -1387,40 +1446,47 @@ discard block |
||
| 1387 | 1446 | $setArray[$var[1]] = max($min, $setArray[$var[1]]); |
| 1388 | 1447 | |
| 1389 | 1448 | // Do we have a max value for this as well? |
| 1390 | - if (isset($var['max'])) |
|
| 1391 | - $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1449 | + if (isset($var['max'])) { |
|
| 1450 | + $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1451 | + } |
|
| 1392 | 1452 | } |
| 1393 | 1453 | // Text! |
| 1394 | - elseif (in_array($var[0], array('text', 'large_text', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'time'))) |
|
| 1395 | - $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1454 | + elseif (in_array($var[0], array('text', 'large_text', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'time'))) { |
|
| 1455 | + $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1456 | + } |
|
| 1396 | 1457 | // Passwords! |
| 1397 | 1458 | elseif ($var[0] == 'password') |
| 1398 | 1459 | { |
| 1399 | - if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1]) |
|
| 1400 | - $setArray[$var[1]] = $_POST[$var[1]][0]; |
|
| 1460 | + if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1]) { |
|
| 1461 | + $setArray[$var[1]] = $_POST[$var[1]][0]; |
|
| 1462 | + } |
|
| 1401 | 1463 | } |
| 1402 | 1464 | // BBC. |
| 1403 | 1465 | elseif ($var[0] == 'bbc') |
| 1404 | 1466 | { |
| 1405 | 1467 | |
| 1406 | 1468 | $bbcTags = array(); |
| 1407 | - foreach (parse_bbc(false) as $tag) |
|
| 1408 | - $bbcTags[] = $tag['tag']; |
|
| 1469 | + foreach (parse_bbc(false) as $tag) { |
|
| 1470 | + $bbcTags[] = $tag['tag']; |
|
| 1471 | + } |
|
| 1409 | 1472 | |
| 1410 | - if (!isset($_POST[$var[1] . '_enabledTags'])) |
|
| 1411 | - $_POST[$var[1] . '_enabledTags'] = array(); |
|
| 1412 | - elseif (!is_array($_POST[$var[1] . '_enabledTags'])) |
|
| 1413 | - $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']); |
|
| 1473 | + if (!isset($_POST[$var[1] . '_enabledTags'])) { |
|
| 1474 | + $_POST[$var[1] . '_enabledTags'] = array(); |
|
| 1475 | + } elseif (!is_array($_POST[$var[1] . '_enabledTags'])) { |
|
| 1476 | + $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']); |
|
| 1477 | + } |
|
| 1414 | 1478 | |
| 1415 | 1479 | $setArray[$var[1]] = implode(',', array_diff($bbcTags, $_POST[$var[1] . '_enabledTags'])); |
| 1416 | 1480 | } |
| 1417 | 1481 | // Permissions? |
| 1418 | - elseif ($var[0] == 'permissions') |
|
| 1419 | - $inlinePermissions[] = $var[1]; |
|
| 1482 | + elseif ($var[0] == 'permissions') { |
|
| 1483 | + $inlinePermissions[] = $var[1]; |
|
| 1484 | + } |
|
| 1420 | 1485 | } |
| 1421 | 1486 | |
| 1422 | - if (!empty($setArray)) |
|
| 1423 | - updateSettings($setArray); |
|
| 1487 | + if (!empty($setArray)) { |
|
| 1488 | + updateSettings($setArray); |
|
| 1489 | + } |
|
| 1424 | 1490 | |
| 1425 | 1491 | // If we have inline permissions we need to save them. |
| 1426 | 1492 | if (!empty($inlinePermissions) && allowedTo('manage_permissions')) |
@@ -1457,18 +1523,21 @@ discard block |
||
| 1457 | 1523 | // put all of it into an array |
| 1458 | 1524 | foreach ($info_lines as $line) |
| 1459 | 1525 | { |
| 1460 | - if (preg_match('~(' . $remove . ')~', $line)) |
|
| 1461 | - continue; |
|
| 1526 | + if (preg_match('~(' . $remove . ')~', $line)) { |
|
| 1527 | + continue; |
|
| 1528 | + } |
|
| 1462 | 1529 | |
| 1463 | 1530 | // new category? |
| 1464 | - if (strpos($line, '<h2>') !== false) |
|
| 1465 | - $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category; |
|
| 1531 | + if (strpos($line, '<h2>') !== false) { |
|
| 1532 | + $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category; |
|
| 1533 | + } |
|
| 1466 | 1534 | |
| 1467 | 1535 | // load it as setting => value or the old setting local master |
| 1468 | - if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) |
|
| 1469 | - $pinfo[$category][$val[1]] = $val[2]; |
|
| 1470 | - elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) |
|
| 1471 | - $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]); |
|
| 1536 | + if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) { |
|
| 1537 | + $pinfo[$category][$val[1]] = $val[2]; |
|
| 1538 | + } elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) { |
|
| 1539 | + $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]); |
|
| 1540 | + } |
|
| 1472 | 1541 | } |
| 1473 | 1542 | |
| 1474 | 1543 | // load it in to context and display it |
@@ -1503,8 +1572,9 @@ discard block |
||
| 1503 | 1572 | $testAPI = new $cache_class_name(); |
| 1504 | 1573 | |
| 1505 | 1574 | // No Support? NEXT! |
| 1506 | - if (!$testAPI->isSupported(true)) |
|
| 1507 | - continue; |
|
| 1575 | + if (!$testAPI->isSupported(true)) { |
|
| 1576 | + continue; |
|
| 1577 | + } |
|
| 1508 | 1578 | |
| 1509 | 1579 | $apis[$tryCache] = isset($txt[$tryCache . '_cache']) ? $txt[$tryCache . '_cache'] : $tryCache; |
| 1510 | 1580 | } |
@@ -1529,8 +1599,9 @@ discard block |
||
| 1529 | 1599 | global $modSettings, $boardurl, $smcFunc; |
| 1530 | 1600 | |
| 1531 | 1601 | // Already have a key? Can't register again. |
| 1532 | - if (!empty($modSettings['sm_stats_key'])) |
|
| 1533 | - return true; |
|
| 1602 | + if (!empty($modSettings['sm_stats_key'])) { |
|
| 1603 | + return true; |
|
| 1604 | + } |
|
| 1534 | 1605 | |
| 1535 | 1606 | $fp = @fsockopen('www.simplemachines.org', 80, $errno, $errstr); |
| 1536 | 1607 | if ($fp) |
@@ -1541,8 +1612,9 @@ discard block |
||
| 1541 | 1612 | fwrite($fp, $out); |
| 1542 | 1613 | |
| 1543 | 1614 | $return_data = ''; |
| 1544 | - while (!feof($fp)) |
|
| 1545 | - $return_data .= fgets($fp, 128); |
|
| 1615 | + while (!feof($fp)) { |
|
| 1616 | + $return_data .= fgets($fp, 128); |
|
| 1617 | + } |
|
| 1546 | 1618 | |
| 1547 | 1619 | fclose($fp); |
| 1548 | 1620 | |
@@ -38,12 +38,12 @@ discard block |
||
| 38 | 38 | $version = $smcFunc['db_get_version'](); |
| 39 | 39 | // if we got a Beta Version |
| 40 | 40 | if (stripos($version, 'beta') !== false) |
| 41 | - $version = substr($version, 0, stripos($version, 'beta')).'.0'; |
|
| 41 | + $version = substr($version, 0, stripos($version, 'beta')) . '.0'; |
|
| 42 | 42 | // or RC |
| 43 | 43 | if (stripos($version, 'rc') !== false) |
| 44 | - $version = substr($version, 0, stripos($version, 'rc')).'.0'; |
|
| 44 | + $version = substr($version, 0, stripos($version, 'rc')) . '.0'; |
|
| 45 | 45 | |
| 46 | - if (version_compare($version,'9.5.0','>=')) |
|
| 46 | + if (version_compare($version, '9.5.0', '>=')) |
|
| 47 | 47 | $smcFunc['db_support_ignore'] = true; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | function smf_db_search_support($search_type) |
| 57 | 57 | { |
| 58 | - $supported_types = array('custom','fulltext'); |
|
| 58 | + $supported_types = array('custom', 'fulltext'); |
|
| 59 | 59 | |
| 60 | 60 | return in_array($search_type, $supported_types); |
| 61 | 61 | } |
@@ -109,9 +109,9 @@ discard block |
||
| 109 | 109 | if (preg_match('~^\s*INSERT\sIGNORE~i', $db_string) != 0) |
| 110 | 110 | { |
| 111 | 111 | $db_string = preg_replace('~^\s*INSERT\sIGNORE~i', 'INSERT', $db_string); |
| 112 | - if ($smcFunc['db_support_ignore']){ |
|
| 112 | + if ($smcFunc['db_support_ignore']) { |
|
| 113 | 113 | //pg style "INSERT INTO.... ON CONFLICT DO NOTHING" |
| 114 | - $db_string = $db_string.' ON CONFLICT DO NOTHING'; |
|
| 114 | + $db_string = $db_string . ' ON CONFLICT DO NOTHING'; |
|
| 115 | 115 | } |
| 116 | 116 | else |
| 117 | 117 | { |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | $language_ftx = $modSettings['search_language']; |
| 169 | 169 | else |
| 170 | 170 | { |
| 171 | - $request = $smcFunc['db_query']('',' |
|
| 171 | + $request = $smcFunc['db_query']('', ' |
|
| 172 | 172 | SELECT cfgname FROM pg_ts_config WHERE oid = current_setting({string:default_language})::regconfig', |
| 173 | 173 | array( |
| 174 | 174 | 'default_language' => 'default_text_search_config' |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Add the file functions to the $smcFunc array. |
@@ -23,29 +24,33 @@ discard block |
||
| 23 | 24 | { |
| 24 | 25 | global $smcFunc; |
| 25 | 26 | |
| 26 | - if (!isset($smcFunc['db_search_query']) || $smcFunc['db_search_query'] != 'smf_db_search_query') |
|
| 27 | - $smcFunc += array( |
|
| 27 | + if (!isset($smcFunc['db_search_query']) || $smcFunc['db_search_query'] != 'smf_db_search_query') { |
|
| 28 | + $smcFunc += array( |
|
| 28 | 29 | 'db_search_query' => 'smf_db_search_query', |
| 29 | 30 | 'db_search_support' => 'smf_db_search_support', |
| 30 | 31 | 'db_create_word_search' => 'smf_db_create_word_search', |
| 31 | 32 | 'db_support_ignore' => false, |
| 32 | 33 | 'db_search_language' => 'smf_db_search_language', |
| 33 | 34 | ); |
| 35 | + } |
|
| 34 | 36 | |
| 35 | 37 | db_extend(); |
| 36 | 38 | |
| 37 | 39 | //pg 9.5 got ignore support |
| 38 | 40 | $version = $smcFunc['db_get_version'](); |
| 39 | 41 | // if we got a Beta Version |
| 40 | - if (stripos($version, 'beta') !== false) |
|
| 41 | - $version = substr($version, 0, stripos($version, 'beta')).'.0'; |
|
| 42 | + if (stripos($version, 'beta') !== false) { |
|
| 43 | + $version = substr($version, 0, stripos($version, 'beta')).'.0'; |
|
| 44 | + } |
|
| 42 | 45 | // or RC |
| 43 | - if (stripos($version, 'rc') !== false) |
|
| 44 | - $version = substr($version, 0, stripos($version, 'rc')).'.0'; |
|
| 46 | + if (stripos($version, 'rc') !== false) { |
|
| 47 | + $version = substr($version, 0, stripos($version, 'rc')).'.0'; |
|
| 48 | + } |
|
| 45 | 49 | |
| 46 | - if (version_compare($version,'9.5.0','>=')) |
|
| 47 | - $smcFunc['db_support_ignore'] = true; |
|
| 48 | -} |
|
| 50 | + if (version_compare($version,'9.5.0','>=')) { |
|
| 51 | + $smcFunc['db_support_ignore'] = true; |
|
| 52 | + } |
|
| 53 | + } |
|
| 49 | 54 | |
| 50 | 55 | /** |
| 51 | 56 | * This function will tell you whether this database type supports this search type. |
@@ -104,16 +109,16 @@ discard block |
||
| 104 | 109 | ), |
| 105 | 110 | ); |
| 106 | 111 | |
| 107 | - if (isset($replacements[$identifier])) |
|
| 108 | - $db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string); |
|
| 112 | + if (isset($replacements[$identifier])) { |
|
| 113 | + $db_string = preg_replace(array_keys($replacements[$identifier]), array_values($replacements[$identifier]), $db_string); |
|
| 114 | + } |
|
| 109 | 115 | if (preg_match('~^\s*INSERT\sIGNORE~i', $db_string) != 0) |
| 110 | 116 | { |
| 111 | 117 | $db_string = preg_replace('~^\s*INSERT\sIGNORE~i', 'INSERT', $db_string); |
| 112 | 118 | if ($smcFunc['db_support_ignore']){ |
| 113 | 119 | //pg style "INSERT INTO.... ON CONFLICT DO NOTHING" |
| 114 | 120 | $db_string = $db_string.' ON CONFLICT DO NOTHING'; |
| 115 | - } |
|
| 116 | - else |
|
| 121 | + } else |
|
| 117 | 122 | { |
| 118 | 123 | // Don't error on multi-insert. |
| 119 | 124 | $db_values['db_error_skip'] = true; |
@@ -121,8 +126,9 @@ discard block |
||
| 121 | 126 | } |
| 122 | 127 | |
| 123 | 128 | //fix double quotes |
| 124 | - if ($identifier == 'insert_into_log_messages_fulltext') |
|
| 125 | - $db_values = str_replace('"', "'", $db_values); |
|
| 129 | + if ($identifier == 'insert_into_log_messages_fulltext') { |
|
| 130 | + $db_values = str_replace('"', "'", $db_values); |
|
| 131 | + } |
|
| 126 | 132 | |
| 127 | 133 | $return = $smcFunc['db_query']('', $db_string, |
| 128 | 134 | $db_values, $connection |
@@ -164,9 +170,9 @@ discard block |
||
| 164 | 170 | |
| 165 | 171 | $language_ftx = 'english'; |
| 166 | 172 | |
| 167 | - if (!empty($modSettings['search_language'])) |
|
| 168 | - $language_ftx = $modSettings['search_language']; |
|
| 169 | - else |
|
| 173 | + if (!empty($modSettings['search_language'])) { |
|
| 174 | + $language_ftx = $modSettings['search_language']; |
|
| 175 | + } else |
|
| 170 | 176 | { |
| 171 | 177 | $request = $smcFunc['db_query']('',' |
| 172 | 178 | SELECT cfgname FROM pg_ts_config WHERE oid = current_setting({string:default_language})::regconfig', |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -27,8 +28,9 @@ discard block |
||
| 27 | 28 | { |
| 28 | 29 | $supported = function_exists('zend_shm_cache_fetch') || function_exists('output_cache_get'); |
| 29 | 30 | |
| 30 | - if ($test) |
|
| 31 | - return $supported; |
|
| 31 | + if ($test) { |
|
| 32 | + return $supported; |
|
| 33 | + } |
|
| 32 | 34 | return parent::isSupported() && $supported; |
| 33 | 35 | } |
| 34 | 36 | |
@@ -40,10 +42,11 @@ discard block |
||
| 40 | 42 | $key = $this->prefix . strtr($key, ':/', '-_'); |
| 41 | 43 | |
| 42 | 44 | // Zend's pricey stuff. |
| 43 | - if (function_exists('zend_shm_cache_fetch')) |
|
| 44 | - return zend_shm_cache_fetch('SMF::' . $key); |
|
| 45 | - elseif (function_exists('output_cache_get')) |
|
| 46 | - return output_cache_get($key, $ttl); |
|
| 45 | + if (function_exists('zend_shm_cache_fetch')) { |
|
| 46 | + return zend_shm_cache_fetch('SMF::' . $key); |
|
| 47 | + } elseif (function_exists('output_cache_get')) { |
|
| 48 | + return output_cache_get($key, $ttl); |
|
| 49 | + } |
|
| 47 | 50 | } |
| 48 | 51 | |
| 49 | 52 | /** |
@@ -53,10 +56,11 @@ discard block |
||
| 53 | 56 | { |
| 54 | 57 | $key = $this->prefix . strtr($key, ':/', '-_'); |
| 55 | 58 | |
| 56 | - if (function_exists('zend_shm_cache_store')) |
|
| 57 | - return zend_shm_cache_store('SMF::' . $key, $value, $ttl); |
|
| 58 | - elseif (function_exists('output_cache_put')) |
|
| 59 | - return output_cache_put($key, $value); |
|
| 59 | + if (function_exists('zend_shm_cache_store')) { |
|
| 60 | + return zend_shm_cache_store('SMF::' . $key, $value, $ttl); |
|
| 61 | + } elseif (function_exists('output_cache_put')) { |
|
| 62 | + return output_cache_put($key, $value); |
|
| 63 | + } |
|
| 60 | 64 | } |
| 61 | 65 | |
| 62 | 66 | /** |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -27,8 +28,9 @@ discard block |
||
| 27 | 28 | { |
| 28 | 29 | $supported = function_exists('apc_fetch') && function_exists('apc_store'); |
| 29 | 30 | |
| 30 | - if ($test) |
|
| 31 | - return $supported; |
|
| 31 | + if ($test) { |
|
| 32 | + return $supported; |
|
| 33 | + } |
|
| 32 | 34 | return parent::isSupported() && $supported; |
| 33 | 35 | } |
| 34 | 36 | |
@@ -50,10 +52,11 @@ discard block |
||
| 50 | 52 | $key = $this->prefix . strtr($key, ':/', '-_'); |
| 51 | 53 | |
| 52 | 54 | // An extended key is needed to counteract a bug in APC. |
| 53 | - if ($value === null) |
|
| 54 | - return apc_delete($key . 'smf'); |
|
| 55 | - else |
|
| 56 | - return apc_store($key . 'smf', $value, $ttl); |
|
| 55 | + if ($value === null) { |
|
| 56 | + return apc_delete($key . 'smf'); |
|
| 57 | + } else { |
|
| 58 | + return apc_store($key . 'smf', $value, $ttl); |
|
| 59 | + } |
|
| 57 | 60 | } |
| 58 | 61 | |
| 59 | 62 | /** |
@@ -67,9 +70,9 @@ discard block |
||
| 67 | 70 | // Always returns true. |
| 68 | 71 | apc_clear_cache('user'); |
| 69 | 72 | apc_clear_cache('system'); |
| 73 | + } elseif ($type === 'user') { |
|
| 74 | + apc_clear_cache('user'); |
|
| 70 | 75 | } |
| 71 | - elseif ($type === 'user') |
|
| 72 | - apc_clear_cache('user'); |
|
| 73 | 76 | |
| 74 | 77 | $this->invalidateCache(); |
| 75 | 78 | return true; |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * This is a handling function for all things post moderation. |
@@ -39,8 +40,9 @@ discard block |
||
| 39 | 40 | ); |
| 40 | 41 | |
| 41 | 42 | // Pick something valid... |
| 42 | - if (!isset($_REQUEST['sa']) || !isset($subActions[$_REQUEST['sa']])) |
|
| 43 | - $_REQUEST['sa'] = 'replies'; |
|
| 43 | + if (!isset($_REQUEST['sa']) || !isset($subActions[$_REQUEST['sa']])) { |
|
| 44 | + $_REQUEST['sa'] = 'replies'; |
|
| 45 | + } |
|
| 44 | 46 | |
| 45 | 47 | call_integration_hook('integrate_post_moderation', array(&$subActions)); |
| 46 | 48 | |
@@ -68,13 +70,15 @@ discard block |
||
| 68 | 70 | $approve_boards = $approve_boards == array(0) ? $filter_board : array_intersect($approve_boards, $filter_board); |
| 69 | 71 | } |
| 70 | 72 | |
| 71 | - if ($approve_boards == array(0)) |
|
| 72 | - $approve_query = ''; |
|
| 73 | - elseif (!empty($approve_boards)) |
|
| 74 | - $approve_query = ' AND m.id_board IN (' . implode(',', $approve_boards) . ')'; |
|
| 73 | + if ($approve_boards == array(0)) { |
|
| 74 | + $approve_query = ''; |
|
| 75 | + } elseif (!empty($approve_boards)) { |
|
| 76 | + $approve_query = ' AND m.id_board IN (' . implode(',', $approve_boards) . ')'; |
|
| 77 | + } |
|
| 75 | 78 | // Nada, zip, etc... |
| 76 | - else |
|
| 77 | - $approve_query = ' AND 1=0'; |
|
| 79 | + else { |
|
| 80 | + $approve_query = ' AND 1=0'; |
|
| 81 | + } |
|
| 78 | 82 | |
| 79 | 83 | // We also need to know where we can delete topics and/or replies to. |
| 80 | 84 | if ($context['current_view'] == 'topics') |
@@ -82,8 +86,7 @@ discard block |
||
| 82 | 86 | $delete_own_boards = boardsAllowedTo('remove_own'); |
| 83 | 87 | $delete_any_boards = boardsAllowedTo('remove_any'); |
| 84 | 88 | $delete_own_replies = array(); |
| 85 | - } |
|
| 86 | - else |
|
| 89 | + } else |
|
| 87 | 90 | { |
| 88 | 91 | $delete_own_boards = boardsAllowedTo('delete_own'); |
| 89 | 92 | $delete_any_boards = boardsAllowedTo('delete_any'); |
@@ -92,21 +95,25 @@ discard block |
||
| 92 | 95 | |
| 93 | 96 | $toAction = array(); |
| 94 | 97 | // Check if we have something to do? |
| 95 | - if (isset($_GET['approve'])) |
|
| 96 | - $toAction[] = (int) $_GET['approve']; |
|
| 98 | + if (isset($_GET['approve'])) { |
|
| 99 | + $toAction[] = (int) $_GET['approve']; |
|
| 100 | + } |
|
| 97 | 101 | // Just a deletion? |
| 98 | - elseif (isset($_GET['delete'])) |
|
| 99 | - $toAction[] = (int) $_GET['delete']; |
|
| 102 | + elseif (isset($_GET['delete'])) { |
|
| 103 | + $toAction[] = (int) $_GET['delete']; |
|
| 104 | + } |
|
| 100 | 105 | // Lots of approvals? |
| 101 | - elseif (isset($_POST['item'])) |
|
| 102 | - foreach ($_POST['item'] as $item) |
|
| 106 | + elseif (isset($_POST['item'])) { |
|
| 107 | + foreach ($_POST['item'] as $item) |
|
| 103 | 108 | $toAction[] = (int) $item; |
| 109 | + } |
|
| 104 | 110 | |
| 105 | 111 | // What are we actually doing. |
| 106 | - if (isset($_GET['approve']) || (isset($_POST['do']) && $_POST['do'] == 'approve')) |
|
| 107 | - $curAction = 'approve'; |
|
| 108 | - elseif (isset($_GET['delete']) || (isset($_POST['do']) && $_POST['do'] == 'delete')) |
|
| 109 | - $curAction = 'delete'; |
|
| 112 | + if (isset($_GET['approve']) || (isset($_POST['do']) && $_POST['do'] == 'approve')) { |
|
| 113 | + $curAction = 'approve'; |
|
| 114 | + } elseif (isset($_GET['delete']) || (isset($_POST['do']) && $_POST['do'] == 'delete')) { |
|
| 115 | + $curAction = 'delete'; |
|
| 116 | + } |
|
| 110 | 117 | |
| 111 | 118 | // Right, so we have something to do? |
| 112 | 119 | if (!empty($toAction) && isset($curAction)) |
@@ -135,8 +142,9 @@ discard block |
||
| 135 | 142 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 136 | 143 | { |
| 137 | 144 | // If it's not within what our view is ignore it... |
| 138 | - if (($row['id_msg'] == $row['id_first_msg'] && $context['current_view'] != 'topics') || ($row['id_msg'] != $row['id_first_msg'] && $context['current_view'] != 'replies')) |
|
| 139 | - continue; |
|
| 145 | + if (($row['id_msg'] == $row['id_first_msg'] && $context['current_view'] != 'topics') || ($row['id_msg'] != $row['id_first_msg'] && $context['current_view'] != 'replies')) { |
|
| 146 | + continue; |
|
| 147 | + } |
|
| 140 | 148 | |
| 141 | 149 | $can_add = false; |
| 142 | 150 | // If we're approving this is simple. |
@@ -148,18 +156,22 @@ discard block |
||
| 148 | 156 | elseif ($curAction == 'delete') |
| 149 | 157 | { |
| 150 | 158 | // Own post is easy! |
| 151 | - if ($row['id_member'] == $user_info['id'] && ($delete_own_boards == array(0) || in_array($row['id_board'], $delete_own_boards))) |
|
| 152 | - $can_add = true; |
|
| 159 | + if ($row['id_member'] == $user_info['id'] && ($delete_own_boards == array(0) || in_array($row['id_board'], $delete_own_boards))) { |
|
| 160 | + $can_add = true; |
|
| 161 | + } |
|
| 153 | 162 | // Is it a reply to their own topic? |
| 154 | - elseif ($row['id_member'] == $row['id_member_started'] && $row['id_msg'] != $row['id_first_msg'] && ($delete_own_replies == array(0) || in_array($row['id_board'], $delete_own_replies))) |
|
| 155 | - $can_add = true; |
|
| 163 | + elseif ($row['id_member'] == $row['id_member_started'] && $row['id_msg'] != $row['id_first_msg'] && ($delete_own_replies == array(0) || in_array($row['id_board'], $delete_own_replies))) { |
|
| 164 | + $can_add = true; |
|
| 165 | + } |
|
| 156 | 166 | // Someone elses? |
| 157 | - elseif ($row['id_member'] != $user_info['id'] && ($delete_any_boards == array(0) || in_array($row['id_board'], $delete_any_boards))) |
|
| 158 | - $can_add = true; |
|
| 167 | + elseif ($row['id_member'] != $user_info['id'] && ($delete_any_boards == array(0) || in_array($row['id_board'], $delete_any_boards))) { |
|
| 168 | + $can_add = true; |
|
| 169 | + } |
|
| 159 | 170 | } |
| 160 | 171 | |
| 161 | - if ($can_add) |
|
| 162 | - $anItem = $context['current_view'] == 'topics' ? $row['id_topic'] : $row['id_msg']; |
|
| 172 | + if ($can_add) { |
|
| 173 | + $anItem = $context['current_view'] == 'topics' ? $row['id_topic'] : $row['id_msg']; |
|
| 174 | + } |
|
| 163 | 175 | $toAction[] = $anItem; |
| 164 | 176 | |
| 165 | 177 | // All clear. What have we got now, what, what? |
@@ -177,8 +189,7 @@ discard block |
||
| 177 | 189 | if ($curAction == 'approve') |
| 178 | 190 | { |
| 179 | 191 | approveMessages($toAction, $details, $context['current_view']); |
| 180 | - } |
|
| 181 | - else |
|
| 192 | + } else |
|
| 182 | 193 | { |
| 183 | 194 | removeMessages($toAction, $details, $context['current_view']); |
| 184 | 195 | } |
@@ -265,16 +276,19 @@ discard block |
||
| 265 | 276 | for ($i = 1; $row = $smcFunc['db_fetch_assoc']($request); $i++) |
| 266 | 277 | { |
| 267 | 278 | // Can delete is complicated, let's solve it first... is it their own post? |
| 268 | - if ($row['id_member'] == $user_info['id'] && ($delete_own_boards == array(0) || in_array($row['id_board'], $delete_own_boards))) |
|
| 269 | - $can_delete = true; |
|
| 279 | + if ($row['id_member'] == $user_info['id'] && ($delete_own_boards == array(0) || in_array($row['id_board'], $delete_own_boards))) { |
|
| 280 | + $can_delete = true; |
|
| 281 | + } |
|
| 270 | 282 | // Is it a reply to their own topic? |
| 271 | - elseif ($row['id_member'] == $row['id_member_started'] && $row['id_msg'] != $row['id_first_msg'] && ($delete_own_replies == array(0) || in_array($row['id_board'], $delete_own_replies))) |
|
| 272 | - $can_delete = true; |
|
| 283 | + elseif ($row['id_member'] == $row['id_member_started'] && $row['id_msg'] != $row['id_first_msg'] && ($delete_own_replies == array(0) || in_array($row['id_board'], $delete_own_replies))) { |
|
| 284 | + $can_delete = true; |
|
| 285 | + } |
|
| 273 | 286 | // Someone elses? |
| 274 | - elseif ($row['id_member'] != $user_info['id'] && ($delete_any_boards == array(0) || in_array($row['id_board'], $delete_any_boards))) |
|
| 275 | - $can_delete = true; |
|
| 276 | - else |
|
| 277 | - $can_delete = false; |
|
| 287 | + elseif ($row['id_member'] != $user_info['id'] && ($delete_any_boards == array(0) || in_array($row['id_board'], $delete_any_boards))) { |
|
| 288 | + $can_delete = true; |
|
| 289 | + } else { |
|
| 290 | + $can_delete = false; |
|
| 291 | + } |
|
| 278 | 292 | |
| 279 | 293 | $context['unapproved_items'][] = array( |
| 280 | 294 | 'id' => $row['id_msg'], |
@@ -323,28 +337,31 @@ discard block |
||
| 323 | 337 | // Once again, permissions are king! |
| 324 | 338 | $approve_boards = boardsAllowedTo('approve_posts'); |
| 325 | 339 | |
| 326 | - if ($approve_boards == array(0)) |
|
| 327 | - $approve_query = ''; |
|
| 328 | - elseif (!empty($approve_boards)) |
|
| 329 | - $approve_query = ' AND m.id_board IN (' . implode(',', $approve_boards) . ')'; |
|
| 330 | - else |
|
| 331 | - $approve_query = ' AND 1=0'; |
|
| 340 | + if ($approve_boards == array(0)) { |
|
| 341 | + $approve_query = ''; |
|
| 342 | + } elseif (!empty($approve_boards)) { |
|
| 343 | + $approve_query = ' AND m.id_board IN (' . implode(',', $approve_boards) . ')'; |
|
| 344 | + } else { |
|
| 345 | + $approve_query = ' AND 1=0'; |
|
| 346 | + } |
|
| 332 | 347 | |
| 333 | 348 | // Get together the array of things to act on, if any. |
| 334 | 349 | $attachments = array(); |
| 335 | - if (isset($_GET['approve'])) |
|
| 336 | - $attachments[] = (int) $_GET['approve']; |
|
| 337 | - elseif (isset($_GET['delete'])) |
|
| 338 | - $attachments[] = (int) $_GET['delete']; |
|
| 339 | - elseif (isset($_POST['item'])) |
|
| 340 | - foreach ($_POST['item'] as $item) |
|
| 350 | + if (isset($_GET['approve'])) { |
|
| 351 | + $attachments[] = (int) $_GET['approve']; |
|
| 352 | + } elseif (isset($_GET['delete'])) { |
|
| 353 | + $attachments[] = (int) $_GET['delete']; |
|
| 354 | + } elseif (isset($_POST['item'])) { |
|
| 355 | + foreach ($_POST['item'] as $item) |
|
| 341 | 356 | $attachments[] = (int) $item; |
| 357 | + } |
|
| 342 | 358 | |
| 343 | 359 | // Are we approving or deleting? |
| 344 | - if (isset($_GET['approve']) || (isset($_POST['do']) && $_POST['do'] == 'approve')) |
|
| 345 | - $curAction = 'approve'; |
|
| 346 | - elseif (isset($_GET['delete']) || (isset($_POST['do']) && $_POST['do'] == 'delete')) |
|
| 347 | - $curAction = 'delete'; |
|
| 360 | + if (isset($_GET['approve']) || (isset($_POST['do']) && $_POST['do'] == 'approve')) { |
|
| 361 | + $curAction = 'approve'; |
|
| 362 | + } elseif (isset($_GET['delete']) || (isset($_POST['do']) && $_POST['do'] == 'delete')) { |
|
| 363 | + $curAction = 'delete'; |
|
| 364 | + } |
|
| 348 | 365 | |
| 349 | 366 | // Something to do, let's do it! |
| 350 | 367 | if (!empty($attachments) && isset($curAction)) |
@@ -372,17 +389,19 @@ discard block |
||
| 372 | 389 | ) |
| 373 | 390 | ); |
| 374 | 391 | $attachments = array(); |
| 375 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 376 | - $attachments[] = $row['id_attach']; |
|
| 392 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 393 | + $attachments[] = $row['id_attach']; |
|
| 394 | + } |
|
| 377 | 395 | $smcFunc['db_free_result']($request); |
| 378 | 396 | |
| 379 | 397 | // Assuming it wasn't all like, proper illegal, we can do the approving. |
| 380 | 398 | if (!empty($attachments)) |
| 381 | 399 | { |
| 382 | - if ($curAction == 'approve') |
|
| 383 | - ApproveAttachments($attachments); |
|
| 384 | - else |
|
| 385 | - removeAttachments(array('id_attach' => $attachments, 'do_logging' => true)); |
|
| 400 | + if ($curAction == 'approve') { |
|
| 401 | + ApproveAttachments($attachments); |
|
| 402 | + } else { |
|
| 403 | + removeAttachments(array('id_attach' => $attachments, 'do_logging' => true)); |
|
| 404 | + } |
|
| 386 | 405 | } |
| 387 | 406 | } |
| 388 | 407 | |
@@ -682,15 +701,16 @@ discard block |
||
| 682 | 701 | { |
| 683 | 702 | approveTopics($topic, !$approved); |
| 684 | 703 | |
| 685 | - if ($starter != $user_info['id']) |
|
| 686 | - logAction(($approved ? 'un' : '') . 'approve_topic', array('topic' => $topic, 'subject' => $subject, 'member' => $starter, 'board' => $board)); |
|
| 687 | - } |
|
| 688 | - else |
|
| 704 | + if ($starter != $user_info['id']) { |
|
| 705 | + logAction(($approved ? 'un' : '') . 'approve_topic', array('topic' => $topic, 'subject' => $subject, 'member' => $starter, 'board' => $board)); |
|
| 706 | + } |
|
| 707 | + } else |
|
| 689 | 708 | { |
| 690 | 709 | approvePosts($_REQUEST['msg'], !$approved); |
| 691 | 710 | |
| 692 | - if ($poster != $user_info['id']) |
|
| 693 | - logAction(($approved ? 'un' : '') . 'approve', array('topic' => $topic, 'subject' => $subject, 'member' => $poster, 'board' => $board)); |
|
| 711 | + if ($poster != $user_info['id']) { |
|
| 712 | + logAction(($approved ? 'un' : '') . 'approve', array('topic' => $topic, 'subject' => $subject, 'member' => $poster, 'board' => $board)); |
|
| 713 | + } |
|
| 694 | 714 | } |
| 695 | 715 | |
| 696 | 716 | redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg']); |
@@ -716,8 +736,7 @@ discard block |
||
| 716 | 736 | { |
| 717 | 737 | logAction('approve_topic', array('topic' => $topic, 'subject' => $messageDetails[$topic]['subject'], 'member' => $messageDetails[$topic]['member'], 'board' => $messageDetails[$topic]['board'])); |
| 718 | 738 | } |
| 719 | - } |
|
| 720 | - else |
|
| 739 | + } else |
|
| 721 | 740 | { |
| 722 | 741 | approvePosts($messages); |
| 723 | 742 | // and tell the world about it again |
@@ -745,8 +764,9 @@ discard block |
||
| 745 | 764 | ) |
| 746 | 765 | ); |
| 747 | 766 | $msgs = array(); |
| 748 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 749 | - $msgs[] = $row[0]; |
|
| 767 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 768 | + $msgs[] = $row[0]; |
|
| 769 | + } |
|
| 750 | 770 | $smcFunc['db_free_result']($request); |
| 751 | 771 | |
| 752 | 772 | if (!empty($msgs)) |
@@ -765,8 +785,9 @@ discard block |
||
| 765 | 785 | ) |
| 766 | 786 | ); |
| 767 | 787 | $attaches = array(); |
| 768 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 769 | - $attaches[] = $row[0]; |
|
| 788 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 789 | + $attaches[] = $row[0]; |
|
| 790 | + } |
|
| 770 | 791 | $smcFunc['db_free_result']($request); |
| 771 | 792 | |
| 772 | 793 | if (!empty($attaches)) |
@@ -794,12 +815,12 @@ discard block |
||
| 794 | 815 | { |
| 795 | 816 | removeTopics($messages); |
| 796 | 817 | // and tell the world about it |
| 797 | - foreach ($messages as $topic) |
|
| 798 | - // Note, only log topic ID in native form if it's not gone forever. |
|
| 818 | + foreach ($messages as $topic) { |
|
| 819 | + // Note, only log topic ID in native form if it's not gone forever. |
|
| 799 | 820 | logAction('remove', array( |
| 800 | 821 | (empty($modSettings['recycle_enable']) || $modSettings['recycle_board'] != $messageDetails[$topic]['board'] ? 'topic' : 'old_topic_id') => $topic, 'subject' => $messageDetails[$topic]['subject'], 'member' => $messageDetails[$topic]['member'], 'board' => $messageDetails[$topic]['board'])); |
| 801 | - } |
|
| 802 | - else |
|
| 822 | + } |
|
| 823 | + } else |
|
| 803 | 824 | { |
| 804 | 825 | foreach ($messages as $post) |
| 805 | 826 | { |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * This function shows the board index. |
@@ -34,8 +35,9 @@ discard block |
||
| 34 | 35 | $context['canonical_url'] = $scripturl; |
| 35 | 36 | |
| 36 | 37 | // Do not let search engines index anything if there is a random thing in $_GET. |
| 37 | - if (!empty($_GET)) |
|
| 38 | - $context['robot_no_index'] = true; |
|
| 38 | + if (!empty($_GET)) { |
|
| 39 | + $context['robot_no_index'] = true; |
|
| 40 | + } |
|
| 39 | 41 | |
| 40 | 42 | // Retrieve the categories and boards. |
| 41 | 43 | require_once($sourcedir . '/Subs-BoardIndex.php'); |
@@ -62,11 +64,12 @@ discard block |
||
| 62 | 64 | $context['latest_posts'] = cache_quick_get('boardindex-latest_posts:' . md5($user_info['query_wanna_see_board'] . $user_info['language']), 'Subs-Recent.php', 'cache_getLastPosts', array($latestPostOptions)); |
| 63 | 65 | } |
| 64 | 66 | |
| 65 | - if (!empty($context['latest_posts']) || !empty($context['latest_post'])) |
|
| 66 | - $context['info_center'][] = array( |
|
| 67 | + if (!empty($context['latest_posts']) || !empty($context['latest_post'])) { |
|
| 68 | + $context['info_center'][] = array( |
|
| 67 | 69 | 'tpl' => 'recent', |
| 68 | 70 | 'txt' => 'recent_posts', |
| 69 | 71 | ); |
| 72 | + } |
|
| 70 | 73 | } |
| 71 | 74 | |
| 72 | 75 | // Load the calendar? |
@@ -87,20 +90,22 @@ discard block |
||
| 87 | 90 | // This is used to show the "how-do-I-edit" help. |
| 88 | 91 | $context['calendar_can_edit'] = allowedTo('calendar_edit_any'); |
| 89 | 92 | |
| 90 | - if ($context['show_calendar']) |
|
| 91 | - $context['info_center'][] = array( |
|
| 93 | + if ($context['show_calendar']) { |
|
| 94 | + $context['info_center'][] = array( |
|
| 92 | 95 | 'tpl' => 'calendar', |
| 93 | 96 | 'txt' => $context['calendar_only_today'] ? 'calendar_today' : 'calendar_upcoming', |
| 94 | 97 | ); |
| 98 | + } |
|
| 95 | 99 | } |
| 96 | 100 | |
| 97 | 101 | // And stats. |
| 98 | 102 | $context['show_stats'] = allowedTo('view_stats') && !empty($modSettings['trackStats']); |
| 99 | - if ($settings['show_stats_index']) |
|
| 100 | - $context['info_center'][] = array( |
|
| 103 | + if ($settings['show_stats_index']) { |
|
| 104 | + $context['info_center'][] = array( |
|
| 101 | 105 | 'tpl' => 'stats', |
| 102 | 106 | 'txt' => 'forum_stats', |
| 103 | 107 | ); |
| 108 | + } |
|
| 104 | 109 | |
| 105 | 110 | // Now the online stuff |
| 106 | 111 | require_once($sourcedir . '/Subs-MembersOnline.php'); |
@@ -118,12 +123,14 @@ discard block |
||
| 118 | 123 | ); |
| 119 | 124 | |
| 120 | 125 | // Track most online statistics? (Subs-MembersOnline.php) |
| 121 | - if (!empty($modSettings['trackStats'])) |
|
| 122 | - trackStatsUsersOnline($context['num_guests'] + $context['num_spiders'] + $context['num_users_online']); |
|
| 126 | + if (!empty($modSettings['trackStats'])) { |
|
| 127 | + trackStatsUsersOnline($context['num_guests'] + $context['num_spiders'] + $context['num_users_online']); |
|
| 128 | + } |
|
| 123 | 129 | |
| 124 | 130 | // Are we showing all membergroups on the board index? |
| 125 | - if (!empty($settings['show_group_key'])) |
|
| 126 | - $context['membergroups'] = cache_quick_get('membergroup_list', 'Subs-Membergroups.php', 'cache_getMembergroupList', array()); |
|
| 131 | + if (!empty($settings['show_group_key'])) { |
|
| 132 | + $context['membergroups'] = cache_quick_get('membergroup_list', 'Subs-Membergroups.php', 'cache_getMembergroupList', array()); |
|
| 133 | + } |
|
| 127 | 134 | |
| 128 | 135 | // And back to normality. |
| 129 | 136 | $context['page_title'] = sprintf($txt['forum_index'], $context['forum_name']); |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Mark a board or multiple boards read. |
@@ -28,14 +29,16 @@ discard block |
||
| 28 | 29 | global $user_info, $modSettings, $smcFunc; |
| 29 | 30 | |
| 30 | 31 | // Force $boards to be an array. |
| 31 | - if (!is_array($boards)) |
|
| 32 | - $boards = array($boards); |
|
| 33 | - else |
|
| 34 | - $boards = array_unique($boards); |
|
| 32 | + if (!is_array($boards)) { |
|
| 33 | + $boards = array($boards); |
|
| 34 | + } else { |
|
| 35 | + $boards = array_unique($boards); |
|
| 36 | + } |
|
| 35 | 37 | |
| 36 | 38 | // No boards, nothing to mark as read. |
| 37 | - if (empty($boards)) |
|
| 38 | - return; |
|
| 39 | + if (empty($boards)) { |
|
| 40 | + return; |
|
| 41 | + } |
|
| 39 | 42 | |
| 40 | 43 | // Allow the user to mark a board as unread. |
| 41 | 44 | if ($unread) |
@@ -65,8 +68,9 @@ discard block |
||
| 65 | 68 | else |
| 66 | 69 | { |
| 67 | 70 | $markRead = array(); |
| 68 | - foreach ($boards as $board) |
|
| 69 | - $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], $board); |
|
| 71 | + foreach ($boards as $board) { |
|
| 72 | + $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], $board); |
|
| 73 | + } |
|
| 70 | 74 | |
| 71 | 75 | // Update log_mark_read and log_boards. |
| 72 | 76 | $smcFunc['db_insert']('replace', |
@@ -99,8 +103,9 @@ discard block |
||
| 99 | 103 | list ($lowest_topic) = $smcFunc['db_fetch_row']($result); |
| 100 | 104 | $smcFunc['db_free_result']($result); |
| 101 | 105 | |
| 102 | - if (empty($lowest_topic)) |
|
| 103 | - return; |
|
| 106 | + if (empty($lowest_topic)) { |
|
| 107 | + return; |
|
| 108 | + } |
|
| 104 | 109 | |
| 105 | 110 | // @todo SLOW This query seems to eat it sometimes. |
| 106 | 111 | $result = $smcFunc['db_query']('', ' |
@@ -118,12 +123,13 @@ discard block |
||
| 118 | 123 | ) |
| 119 | 124 | ); |
| 120 | 125 | $topics = array(); |
| 121 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 122 | - $topics[] = $row['id_topic']; |
|
| 126 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 127 | + $topics[] = $row['id_topic']; |
|
| 128 | + } |
|
| 123 | 129 | $smcFunc['db_free_result']($result); |
| 124 | 130 | |
| 125 | - if (!empty($topics)) |
|
| 126 | - $smcFunc['db_query']('', ' |
|
| 131 | + if (!empty($topics)) { |
|
| 132 | + $smcFunc['db_query']('', ' |
|
| 127 | 133 | DELETE FROM {db_prefix}log_topics |
| 128 | 134 | WHERE id_member = {int:current_member} |
| 129 | 135 | AND id_topic IN ({array_int:topic_list})', |
@@ -132,7 +138,8 @@ discard block |
||
| 132 | 138 | 'topic_list' => $topics, |
| 133 | 139 | ) |
| 134 | 140 | ); |
| 135 | -} |
|
| 141 | + } |
|
| 142 | + } |
|
| 136 | 143 | |
| 137 | 144 | /** |
| 138 | 145 | * Mark one or more boards as read. |
@@ -157,23 +164,26 @@ discard block |
||
| 157 | 164 | ) |
| 158 | 165 | ); |
| 159 | 166 | $boards = array(); |
| 160 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 161 | - $boards[] = $row['id_board']; |
|
| 167 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 168 | + $boards[] = $row['id_board']; |
|
| 169 | + } |
|
| 162 | 170 | $smcFunc['db_free_result']($result); |
| 163 | 171 | |
| 164 | - if (!empty($boards)) |
|
| 165 | - markBoardsRead($boards, isset($_REQUEST['unread'])); |
|
| 172 | + if (!empty($boards)) { |
|
| 173 | + markBoardsRead($boards, isset($_REQUEST['unread'])); |
|
| 174 | + } |
|
| 166 | 175 | |
| 167 | 176 | $_SESSION['id_msg_last_visit'] = $modSettings['maxMsgID']; |
| 168 | - if (!empty($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'action=unread') !== false) |
|
| 169 | - redirectexit('action=unread'); |
|
| 177 | + if (!empty($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'action=unread') !== false) { |
|
| 178 | + redirectexit('action=unread'); |
|
| 179 | + } |
|
| 170 | 180 | |
| 171 | - if (isset($_SESSION['topicseen_cache'])) |
|
| 172 | - $_SESSION['topicseen_cache'] = array(); |
|
| 181 | + if (isset($_SESSION['topicseen_cache'])) { |
|
| 182 | + $_SESSION['topicseen_cache'] = array(); |
|
| 183 | + } |
|
| 173 | 184 | |
| 174 | 185 | redirectexit(); |
| 175 | - } |
|
| 176 | - elseif (isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'unreadreplies') |
|
| 186 | + } elseif (isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'unreadreplies') |
|
| 177 | 187 | { |
| 178 | 188 | // Make sure all the topics are integers! |
| 179 | 189 | $topics = array_map('intval', explode('-', $_REQUEST['topics'])); |
@@ -189,13 +199,15 @@ discard block |
||
| 189 | 199 | ) |
| 190 | 200 | ); |
| 191 | 201 | $logged_topics = array(); |
| 192 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 193 | - $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 202 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 203 | + $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 204 | + } |
|
| 194 | 205 | $smcFunc['db_free_result']($request); |
| 195 | 206 | |
| 196 | 207 | $markRead = array(); |
| 197 | - foreach ($topics as $id_topic) |
|
| 198 | - $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], $id_topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 208 | + foreach ($topics as $id_topic) { |
|
| 209 | + $markRead[] = array($modSettings['maxMsgID'], $user_info['id'], $id_topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 210 | + } |
|
| 199 | 211 | |
| 200 | 212 | $smcFunc['db_insert']('replace', |
| 201 | 213 | '{db_prefix}log_topics', |
@@ -204,8 +216,9 @@ discard block |
||
| 204 | 216 | array('id_member', 'id_topic') |
| 205 | 217 | ); |
| 206 | 218 | |
| 207 | - if (isset($_SESSION['topicseen_cache'])) |
|
| 208 | - $_SESSION['topicseen_cache'] = array(); |
|
| 219 | + if (isset($_SESSION['topicseen_cache'])) { |
|
| 220 | + $_SESSION['topicseen_cache'] = array(); |
|
| 221 | + } |
|
| 209 | 222 | |
| 210 | 223 | redirectexit('action=unreadreplies'); |
| 211 | 224 | } |
@@ -230,11 +243,13 @@ discard block |
||
| 230 | 243 | if (!empty($_GET['t'])) |
| 231 | 244 | { |
| 232 | 245 | // If they read the whole topic, go back to the beginning. |
| 233 | - if ($_GET['t'] >= $topicinfo['id_last_msg']) |
|
| 234 | - $earlyMsg = 0; |
|
| 246 | + if ($_GET['t'] >= $topicinfo['id_last_msg']) { |
|
| 247 | + $earlyMsg = 0; |
|
| 248 | + } |
|
| 235 | 249 | // If they want to mark the whole thing read, same. |
| 236 | - elseif ($_GET['t'] <= $topicinfo['id_first_msg']) |
|
| 237 | - $earlyMsg = 0; |
|
| 250 | + elseif ($_GET['t'] <= $topicinfo['id_first_msg']) { |
|
| 251 | + $earlyMsg = 0; |
|
| 252 | + } |
|
| 238 | 253 | // Otherwise, get the latest message before the named one. |
| 239 | 254 | else |
| 240 | 255 | { |
@@ -255,9 +270,9 @@ discard block |
||
| 255 | 270 | } |
| 256 | 271 | } |
| 257 | 272 | // Marking read from first page? That's the whole topic. |
| 258 | - elseif ($_REQUEST['start'] == 0) |
|
| 259 | - $earlyMsg = 0; |
|
| 260 | - else |
|
| 273 | + elseif ($_REQUEST['start'] == 0) { |
|
| 274 | + $earlyMsg = 0; |
|
| 275 | + } else |
|
| 261 | 276 | { |
| 262 | 277 | $result = $smcFunc['db_query']('', ' |
| 263 | 278 | SELECT id_msg |
@@ -285,8 +300,7 @@ discard block |
||
| 285 | 300 | ); |
| 286 | 301 | |
| 287 | 302 | redirectexit('board=' . $board . '.0'); |
| 288 | - } |
|
| 289 | - else |
|
| 303 | + } else |
|
| 290 | 304 | { |
| 291 | 305 | $categories = array(); |
| 292 | 306 | $boards = array(); |
@@ -294,17 +308,20 @@ discard block |
||
| 294 | 308 | if (isset($_REQUEST['c'])) |
| 295 | 309 | { |
| 296 | 310 | $_REQUEST['c'] = explode(',', $_REQUEST['c']); |
| 297 | - foreach ($_REQUEST['c'] as $c) |
|
| 298 | - $categories[] = (int) $c; |
|
| 311 | + foreach ($_REQUEST['c'] as $c) { |
|
| 312 | + $categories[] = (int) $c; |
|
| 313 | + } |
|
| 299 | 314 | } |
| 300 | 315 | if (isset($_REQUEST['boards'])) |
| 301 | 316 | { |
| 302 | 317 | $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
| 303 | - foreach ($_REQUEST['boards'] as $b) |
|
| 304 | - $boards[] = (int) $b; |
|
| 318 | + foreach ($_REQUEST['boards'] as $b) { |
|
| 319 | + $boards[] = (int) $b; |
|
| 320 | + } |
|
| 321 | + } |
|
| 322 | + if (!empty($board)) { |
|
| 323 | + $boards[] = (int) $board; |
|
| 305 | 324 | } |
| 306 | - if (!empty($board)) |
|
| 307 | - $boards[] = (int) $board; |
|
| 308 | 325 | |
| 309 | 326 | if (isset($_REQUEST['children']) && !empty($boards)) |
| 310 | 327 | { |
@@ -324,9 +341,10 @@ discard block |
||
| 324 | 341 | 'board_list' => $boards, |
| 325 | 342 | ) |
| 326 | 343 | ); |
| 327 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 328 | - if (in_array($row['id_parent'], $boards)) |
|
| 344 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 345 | + if (in_array($row['id_parent'], $boards)) |
|
| 329 | 346 | $boards[] = $row['id_board']; |
| 347 | + } |
|
| 330 | 348 | $smcFunc['db_free_result']($request); |
| 331 | 349 | } |
| 332 | 350 | |
@@ -343,8 +361,9 @@ discard block |
||
| 343 | 361 | $clauseParameters['board_list'] = $boards; |
| 344 | 362 | } |
| 345 | 363 | |
| 346 | - if (empty($clauses)) |
|
| 347 | - redirectexit(); |
|
| 364 | + if (empty($clauses)) { |
|
| 365 | + redirectexit(); |
|
| 366 | + } |
|
| 348 | 367 | |
| 349 | 368 | $request = $smcFunc['db_query']('', ' |
| 350 | 369 | SELECT b.id_board |
@@ -355,19 +374,22 @@ discard block |
||
| 355 | 374 | )) |
| 356 | 375 | ); |
| 357 | 376 | $boards = array(); |
| 358 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 359 | - $boards[] = $row['id_board']; |
|
| 377 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 378 | + $boards[] = $row['id_board']; |
|
| 379 | + } |
|
| 360 | 380 | $smcFunc['db_free_result']($request); |
| 361 | 381 | |
| 362 | - if (empty($boards)) |
|
| 363 | - redirectexit(); |
|
| 382 | + if (empty($boards)) { |
|
| 383 | + redirectexit(); |
|
| 384 | + } |
|
| 364 | 385 | |
| 365 | 386 | markBoardsRead($boards, isset($_REQUEST['unread'])); |
| 366 | 387 | |
| 367 | 388 | foreach ($boards as $b) |
| 368 | 389 | { |
| 369 | - if (isset($_SESSION['topicseen_cache'][$b])) |
|
| 370 | - $_SESSION['topicseen_cache'][$b] = array(); |
|
| 390 | + if (isset($_SESSION['topicseen_cache'][$b])) { |
|
| 391 | + $_SESSION['topicseen_cache'][$b] = array(); |
|
| 392 | + } |
|
| 371 | 393 | } |
| 372 | 394 | |
| 373 | 395 | if (!isset($_REQUEST['unread'])) |
@@ -385,8 +407,9 @@ discard block |
||
| 385 | 407 | if ($smcFunc['db_num_rows']($result) > 0) |
| 386 | 408 | { |
| 387 | 409 | $logBoardInserts = array(); |
| 388 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 389 | - $logBoardInserts[] = array($modSettings['maxMsgID'], $user_info['id'], $row['id_board']); |
|
| 410 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 411 | + $logBoardInserts[] = array($modSettings['maxMsgID'], $user_info['id'], $row['id_board']); |
|
| 412 | + } |
|
| 390 | 413 | |
| 391 | 414 | $smcFunc['db_insert']('replace', |
| 392 | 415 | '{db_prefix}log_boards', |
@@ -397,17 +420,18 @@ discard block |
||
| 397 | 420 | } |
| 398 | 421 | $smcFunc['db_free_result']($result); |
| 399 | 422 | |
| 400 | - if (empty($board)) |
|
| 401 | - redirectexit(); |
|
| 402 | - else |
|
| 403 | - redirectexit('board=' . $board . '.0'); |
|
| 404 | - } |
|
| 405 | - else |
|
| 423 | + if (empty($board)) { |
|
| 424 | + redirectexit(); |
|
| 425 | + } else { |
|
| 426 | + redirectexit('board=' . $board . '.0'); |
|
| 427 | + } |
|
| 428 | + } else |
|
| 406 | 429 | { |
| 407 | - if (empty($board_info['parent'])) |
|
| 408 | - redirectexit(); |
|
| 409 | - else |
|
| 410 | - redirectexit('board=' . $board_info['parent'] . '.0'); |
|
| 430 | + if (empty($board_info['parent'])) { |
|
| 431 | + redirectexit(); |
|
| 432 | + } else { |
|
| 433 | + redirectexit('board=' . $board_info['parent'] . '.0'); |
|
| 434 | + } |
|
| 411 | 435 | } |
| 412 | 436 | } |
| 413 | 437 | } |
@@ -432,11 +456,13 @@ discard block |
||
| 432 | 456 | 'selected_message' => (int) $messageID, |
| 433 | 457 | ) |
| 434 | 458 | ); |
| 435 | - if ($smcFunc['db_num_rows']($result) > 0) |
|
| 436 | - list ($memberID) = $smcFunc['db_fetch_row']($result); |
|
| 459 | + if ($smcFunc['db_num_rows']($result) > 0) { |
|
| 460 | + list ($memberID) = $smcFunc['db_fetch_row']($result); |
|
| 461 | + } |
|
| 437 | 462 | // The message doesn't even exist. |
| 438 | - else |
|
| 439 | - $memberID = 0; |
|
| 463 | + else { |
|
| 464 | + $memberID = 0; |
|
| 465 | + } |
|
| 440 | 466 | $smcFunc['db_free_result']($result); |
| 441 | 467 | |
| 442 | 468 | return (int) $memberID; |
@@ -457,8 +483,9 @@ discard block |
||
| 457 | 483 | getBoardTree(); |
| 458 | 484 | |
| 459 | 485 | // Make sure given boards and categories exist. |
| 460 | - if (!isset($boards[$board_id]) || (isset($boardOptions['target_board']) && !isset($boards[$boardOptions['target_board']])) || (isset($boardOptions['target_category']) && !isset($cat_tree[$boardOptions['target_category']]))) |
|
| 461 | - fatal_lang_error('no_board'); |
|
| 486 | + if (!isset($boards[$board_id]) || (isset($boardOptions['target_board']) && !isset($boards[$boardOptions['target_board']])) || (isset($boardOptions['target_category']) && !isset($cat_tree[$boardOptions['target_category']]))) { |
|
| 487 | + fatal_lang_error('no_board'); |
|
| 488 | + } |
|
| 462 | 489 | |
| 463 | 490 | $id = $board_id; |
| 464 | 491 | call_integration_hook('integrate_pre_modify_board', array($id, &$boardOptions)); |
@@ -486,8 +513,9 @@ discard block |
||
| 486 | 513 | $child_level = 0; |
| 487 | 514 | $id_parent = 0; |
| 488 | 515 | $after = 0; |
| 489 | - foreach ($cat_tree[$id_cat]['children'] as $id_board => $dummy) |
|
| 490 | - $after = max($after, $boards[$id_board]['order']); |
|
| 516 | + foreach ($cat_tree[$id_cat]['children'] as $id_board => $dummy) { |
|
| 517 | + $after = max($after, $boards[$id_board]['order']); |
|
| 518 | + } |
|
| 491 | 519 | } |
| 492 | 520 | |
| 493 | 521 | // Make the board a child of a given board. |
@@ -498,17 +526,19 @@ discard block |
||
| 498 | 526 | $id_parent = $boardOptions['target_board']; |
| 499 | 527 | |
| 500 | 528 | // People can be creative, in many ways... |
| 501 | - if (isChildOf($id_parent, $board_id)) |
|
| 502 | - fatal_lang_error('mboards_parent_own_child_error', false); |
|
| 503 | - elseif ($id_parent == $board_id) |
|
| 504 | - fatal_lang_error('mboards_board_own_child_error', false); |
|
| 529 | + if (isChildOf($id_parent, $board_id)) { |
|
| 530 | + fatal_lang_error('mboards_parent_own_child_error', false); |
|
| 531 | + } elseif ($id_parent == $board_id) { |
|
| 532 | + fatal_lang_error('mboards_board_own_child_error', false); |
|
| 533 | + } |
|
| 505 | 534 | |
| 506 | 535 | $after = $boards[$boardOptions['target_board']]['order']; |
| 507 | 536 | |
| 508 | 537 | // Check if there are already children and (if so) get the max board order. |
| 509 | - if (!empty($boards[$id_parent]['tree']['children']) && empty($boardOptions['move_first_child'])) |
|
| 510 | - foreach ($boards[$id_parent]['tree']['children'] as $childBoard_id => $dummy) |
|
| 538 | + if (!empty($boards[$id_parent]['tree']['children']) && empty($boardOptions['move_first_child'])) { |
|
| 539 | + foreach ($boards[$id_parent]['tree']['children'] as $childBoard_id => $dummy) |
|
| 511 | 540 | $after = max($after, $boards[$childBoard_id]['order']); |
| 541 | + } |
|
| 512 | 542 | } |
| 513 | 543 | |
| 514 | 544 | // Place a board before or after another board, on the same child level. |
@@ -521,8 +551,9 @@ discard block |
||
| 521 | 551 | } |
| 522 | 552 | |
| 523 | 553 | // Oops...? |
| 524 | - else |
|
| 525 | - trigger_error('modifyBoard(): The move_to value \'' . $boardOptions['move_to'] . '\' is incorrect', E_USER_ERROR); |
|
| 554 | + else { |
|
| 555 | + trigger_error('modifyBoard(): The move_to value \'' . $boardOptions['move_to'] . '\' is incorrect', E_USER_ERROR); |
|
| 556 | + } |
|
| 526 | 557 | |
| 527 | 558 | // Get a list of children of this board. |
| 528 | 559 | $childList = array(); |
@@ -531,14 +562,16 @@ discard block |
||
| 531 | 562 | // See if there are changes that affect children. |
| 532 | 563 | $childUpdates = array(); |
| 533 | 564 | $levelDiff = $child_level - $boards[$board_id]['level']; |
| 534 | - if ($levelDiff != 0) |
|
| 535 | - $childUpdates[] = 'child_level = child_level ' . ($levelDiff > 0 ? '+ ' : '') . '{int:level_diff}'; |
|
| 536 | - if ($id_cat != $boards[$board_id]['category']) |
|
| 537 | - $childUpdates[] = 'id_cat = {int:category}'; |
|
| 565 | + if ($levelDiff != 0) { |
|
| 566 | + $childUpdates[] = 'child_level = child_level ' . ($levelDiff > 0 ? '+ ' : '') . '{int:level_diff}'; |
|
| 567 | + } |
|
| 568 | + if ($id_cat != $boards[$board_id]['category']) { |
|
| 569 | + $childUpdates[] = 'id_cat = {int:category}'; |
|
| 570 | + } |
|
| 538 | 571 | |
| 539 | 572 | // Fix the children of this board. |
| 540 | - if (!empty($childList) && !empty($childUpdates)) |
|
| 541 | - $smcFunc['db_query']('', ' |
|
| 573 | + if (!empty($childList) && !empty($childUpdates)) { |
|
| 574 | + $smcFunc['db_query']('', ' |
|
| 542 | 575 | UPDATE {db_prefix}boards |
| 543 | 576 | SET ' . implode(', |
| 544 | 577 | ', $childUpdates) . ' |
@@ -549,6 +582,7 @@ discard block |
||
| 549 | 582 | 'level_diff' => $levelDiff, |
| 550 | 583 | ) |
| 551 | 584 | ); |
| 585 | + } |
|
| 552 | 586 | |
| 553 | 587 | // Make some room for this spot. |
| 554 | 588 | $smcFunc['db_query']('', ' |
@@ -644,8 +678,8 @@ discard block |
||
| 644 | 678 | call_integration_hook('integrate_modify_board', array($id, $boardOptions, &$boardUpdates, &$boardUpdateParameters)); |
| 645 | 679 | |
| 646 | 680 | // Do the updates (if any). |
| 647 | - if (!empty($boardUpdates)) |
|
| 648 | - $smcFunc['db_query']('', ' |
|
| 681 | + if (!empty($boardUpdates)) { |
|
| 682 | + $smcFunc['db_query']('', ' |
|
| 649 | 683 | UPDATE {db_prefix}boards |
| 650 | 684 | SET |
| 651 | 685 | ' . implode(', |
@@ -655,6 +689,7 @@ discard block |
||
| 655 | 689 | 'selected_board' => $board_id, |
| 656 | 690 | )) |
| 657 | 691 | ); |
| 692 | + } |
|
| 658 | 693 | |
| 659 | 694 | // Set moderators of this board. |
| 660 | 695 | if (isset($boardOptions['moderators']) || isset($boardOptions['moderator_string']) || isset($boardOptions['moderator_groups']) || isset($boardOptions['moderator_group_string'])) |
@@ -679,13 +714,15 @@ discard block |
||
| 679 | 714 | { |
| 680 | 715 | $moderators[$k] = trim($moderators[$k]); |
| 681 | 716 | |
| 682 | - if (strlen($moderators[$k]) == 0) |
|
| 683 | - unset($moderators[$k]); |
|
| 717 | + if (strlen($moderators[$k]) == 0) { |
|
| 718 | + unset($moderators[$k]); |
|
| 719 | + } |
|
| 684 | 720 | } |
| 685 | 721 | |
| 686 | 722 | // Find all the id_member's for the member_name's in the list. |
| 687 | - if (empty($boardOptions['moderators'])) |
|
| 688 | - $boardOptions['moderators'] = array(); |
|
| 723 | + if (empty($boardOptions['moderators'])) { |
|
| 724 | + $boardOptions['moderators'] = array(); |
|
| 725 | + } |
|
| 689 | 726 | if (!empty($moderators)) |
| 690 | 727 | { |
| 691 | 728 | $request = $smcFunc['db_query']('', ' |
@@ -698,8 +735,9 @@ discard block |
||
| 698 | 735 | 'limit' => count($moderators), |
| 699 | 736 | ) |
| 700 | 737 | ); |
| 701 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 702 | - $boardOptions['moderators'][] = $row['id_member']; |
|
| 738 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 739 | + $boardOptions['moderators'][] = $row['id_member']; |
|
| 740 | + } |
|
| 703 | 741 | $smcFunc['db_free_result']($request); |
| 704 | 742 | } |
| 705 | 743 | } |
@@ -708,8 +746,9 @@ discard block |
||
| 708 | 746 | if (!empty($boardOptions['moderators'])) |
| 709 | 747 | { |
| 710 | 748 | $inserts = array(); |
| 711 | - foreach ($boardOptions['moderators'] as $moderator) |
|
| 712 | - $inserts[] = array($board_id, $moderator); |
|
| 749 | + foreach ($boardOptions['moderators'] as $moderator) { |
|
| 750 | + $inserts[] = array($board_id, $moderator); |
|
| 751 | + } |
|
| 713 | 752 | |
| 714 | 753 | $smcFunc['db_insert']('insert', |
| 715 | 754 | '{db_prefix}moderators', |
@@ -739,14 +778,16 @@ discard block |
||
| 739 | 778 | { |
| 740 | 779 | $moderator_groups[$k] = trim($moderator_groups[$k]); |
| 741 | 780 | |
| 742 | - if (strlen($moderator_groups[$k]) == 0) |
|
| 743 | - unset($moderator_groups[$k]); |
|
| 781 | + if (strlen($moderator_groups[$k]) == 0) { |
|
| 782 | + unset($moderator_groups[$k]); |
|
| 783 | + } |
|
| 744 | 784 | } |
| 745 | 785 | |
| 746 | 786 | /* Find all the id_group's for all the group names in the list |
| 747 | 787 | But skip any invalid ones (invisible/post groups/Administrator/Moderator) */ |
| 748 | - if (empty($boardOptions['moderator_groups'])) |
|
| 749 | - $boardOptions['moderator_groups'] = array(); |
|
| 788 | + if (empty($boardOptions['moderator_groups'])) { |
|
| 789 | + $boardOptions['moderator_groups'] = array(); |
|
| 790 | + } |
|
| 750 | 791 | if (!empty($moderator_groups)) |
| 751 | 792 | { |
| 752 | 793 | $request = $smcFunc['db_query']('', ' |
@@ -777,8 +818,9 @@ discard block |
||
| 777 | 818 | if (!empty($boardOptions['moderator_groups'])) |
| 778 | 819 | { |
| 779 | 820 | $inserts = array(); |
| 780 | - foreach ($boardOptions['moderator_groups'] as $moderator_group) |
|
| 781 | - $inserts[] = array($board_id, $moderator_group); |
|
| 821 | + foreach ($boardOptions['moderator_groups'] as $moderator_group) { |
|
| 822 | + $inserts[] = array($board_id, $moderator_group); |
|
| 823 | + } |
|
| 782 | 824 | |
| 783 | 825 | $smcFunc['db_insert']('insert', |
| 784 | 826 | '{db_prefix}moderator_groups', |
@@ -792,14 +834,16 @@ discard block |
||
| 792 | 834 | updateSettings(array('settings_updated' => time())); |
| 793 | 835 | } |
| 794 | 836 | |
| 795 | - if (isset($boardOptions['move_to'])) |
|
| 796 | - reorderBoards(); |
|
| 837 | + if (isset($boardOptions['move_to'])) { |
|
| 838 | + reorderBoards(); |
|
| 839 | + } |
|
| 797 | 840 | |
| 798 | 841 | clean_cache('data'); |
| 799 | 842 | |
| 800 | - if (empty($boardOptions['dont_log'])) |
|
| 801 | - logAction('edit_board', array('board' => $board_id), 'admin'); |
|
| 802 | -} |
|
| 843 | + if (empty($boardOptions['dont_log'])) { |
|
| 844 | + logAction('edit_board', array('board' => $board_id), 'admin'); |
|
| 845 | + } |
|
| 846 | + } |
|
| 803 | 847 | |
| 804 | 848 | /** |
| 805 | 849 | * Create a new board and set its properties and position. |
@@ -815,11 +859,13 @@ discard block |
||
| 815 | 859 | global $boards, $smcFunc; |
| 816 | 860 | |
| 817 | 861 | // Trigger an error if one of the required values is not set. |
| 818 | - if (!isset($boardOptions['board_name']) || trim($boardOptions['board_name']) == '' || !isset($boardOptions['move_to']) || !isset($boardOptions['target_category'])) |
|
| 819 | - trigger_error('createBoard(): One or more of the required options is not set', E_USER_ERROR); |
|
| 862 | + if (!isset($boardOptions['board_name']) || trim($boardOptions['board_name']) == '' || !isset($boardOptions['move_to']) || !isset($boardOptions['target_category'])) { |
|
| 863 | + trigger_error('createBoard(): One or more of the required options is not set', E_USER_ERROR); |
|
| 864 | + } |
|
| 820 | 865 | |
| 821 | - if (in_array($boardOptions['move_to'], array('child', 'before', 'after')) && !isset($boardOptions['target_board'])) |
|
| 822 | - trigger_error('createBoard(): Target board is not set', E_USER_ERROR); |
|
| 866 | + if (in_array($boardOptions['move_to'], array('child', 'before', 'after')) && !isset($boardOptions['target_board'])) { |
|
| 867 | + trigger_error('createBoard(): Target board is not set', E_USER_ERROR); |
|
| 868 | + } |
|
| 823 | 869 | |
| 824 | 870 | // Set every optional value to its default value. |
| 825 | 871 | $boardOptions += array( |
@@ -853,8 +899,9 @@ discard block |
||
| 853 | 899 | 1 |
| 854 | 900 | ); |
| 855 | 901 | |
| 856 | - if (empty($board_id)) |
|
| 857 | - return 0; |
|
| 902 | + if (empty($board_id)) { |
|
| 903 | + return 0; |
|
| 904 | + } |
|
| 858 | 905 | |
| 859 | 906 | // Change the board according to the given specifications. |
| 860 | 907 | modifyBoard($board_id, $boardOptions); |
@@ -917,8 +964,9 @@ discard block |
||
| 917 | 964 | global $sourcedir, $boards, $smcFunc; |
| 918 | 965 | |
| 919 | 966 | // No boards to delete? Return! |
| 920 | - if (empty($boards_to_remove)) |
|
| 921 | - return; |
|
| 967 | + if (empty($boards_to_remove)) { |
|
| 968 | + return; |
|
| 969 | + } |
|
| 922 | 970 | |
| 923 | 971 | getBoardTree(); |
| 924 | 972 | |
@@ -929,12 +977,14 @@ discard block |
||
| 929 | 977 | { |
| 930 | 978 | // Get a list of the child boards that will also be removed. |
| 931 | 979 | $child_boards_to_remove = array(); |
| 932 | - foreach ($boards_to_remove as $board_to_remove) |
|
| 933 | - recursiveBoards($child_boards_to_remove, $boards[$board_to_remove]['tree']); |
|
| 980 | + foreach ($boards_to_remove as $board_to_remove) { |
|
| 981 | + recursiveBoards($child_boards_to_remove, $boards[$board_to_remove]['tree']); |
|
| 982 | + } |
|
| 934 | 983 | |
| 935 | 984 | // Merge the children with their parents. |
| 936 | - if (!empty($child_boards_to_remove)) |
|
| 937 | - $boards_to_remove = array_unique(array_merge($boards_to_remove, $child_boards_to_remove)); |
|
| 985 | + if (!empty($child_boards_to_remove)) { |
|
| 986 | + $boards_to_remove = array_unique(array_merge($boards_to_remove, $child_boards_to_remove)); |
|
| 987 | + } |
|
| 938 | 988 | } |
| 939 | 989 | // Move the children to a safe home. |
| 940 | 990 | else |
@@ -942,10 +992,11 @@ discard block |
||
| 942 | 992 | foreach ($boards_to_remove as $id_board) |
| 943 | 993 | { |
| 944 | 994 | // @todo Separate category? |
| 945 | - if ($moveChildrenTo === 0) |
|
| 946 | - fixChildren($id_board, 0, 0); |
|
| 947 | - else |
|
| 948 | - fixChildren($id_board, $boards[$moveChildrenTo]['level'] + 1, $moveChildrenTo); |
|
| 995 | + if ($moveChildrenTo === 0) { |
|
| 996 | + fixChildren($id_board, 0, 0); |
|
| 997 | + } else { |
|
| 998 | + fixChildren($id_board, $boards[$moveChildrenTo]['level'] + 1, $moveChildrenTo); |
|
| 999 | + } |
|
| 949 | 1000 | } |
| 950 | 1001 | } |
| 951 | 1002 | |
@@ -959,8 +1010,9 @@ discard block |
||
| 959 | 1010 | ) |
| 960 | 1011 | ); |
| 961 | 1012 | $topics = array(); |
| 962 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 963 | - $topics[] = $row['id_topic']; |
|
| 1013 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1014 | + $topics[] = $row['id_topic']; |
|
| 1015 | + } |
|
| 964 | 1016 | $smcFunc['db_free_result']($request); |
| 965 | 1017 | |
| 966 | 1018 | require_once($sourcedir . '/RemoveTopic.php'); |
@@ -1048,8 +1100,9 @@ discard block |
||
| 1048 | 1100 | clean_cache('data'); |
| 1049 | 1101 | |
| 1050 | 1102 | // Let's do some serious logging. |
| 1051 | - foreach ($boards_to_remove as $id_board) |
|
| 1052 | - logAction('delete_board', array('boardname' => $boards[$id_board]['name']), 'admin'); |
|
| 1103 | + foreach ($boards_to_remove as $id_board) { |
|
| 1104 | + logAction('delete_board', array('boardname' => $boards[$id_board]['name']), 'admin'); |
|
| 1105 | + } |
|
| 1053 | 1106 | |
| 1054 | 1107 | reorderBoards(); |
| 1055 | 1108 | } |
@@ -1068,8 +1121,8 @@ discard block |
||
| 1068 | 1121 | $board_order = 0; |
| 1069 | 1122 | foreach ($cat_tree as $catID => $dummy) |
| 1070 | 1123 | { |
| 1071 | - foreach ($boardList[$catID] as $boardID) |
|
| 1072 | - if ($boards[$boardID]['order'] != ++$board_order) |
|
| 1124 | + foreach ($boardList[$catID] as $boardID) { |
|
| 1125 | + if ($boards[$boardID]['order'] != ++$board_order) |
|
| 1073 | 1126 | $smcFunc['db_query']('', ' |
| 1074 | 1127 | UPDATE {db_prefix}boards |
| 1075 | 1128 | SET board_order = {int:new_order} |
@@ -1079,6 +1132,7 @@ discard block |
||
| 1079 | 1132 | 'selected_board' => $boardID, |
| 1080 | 1133 | ) |
| 1081 | 1134 | ); |
| 1135 | + } |
|
| 1082 | 1136 | } |
| 1083 | 1137 | |
| 1084 | 1138 | // Empty the board order cache |
@@ -1107,8 +1161,9 @@ discard block |
||
| 1107 | 1161 | ) |
| 1108 | 1162 | ); |
| 1109 | 1163 | $children = array(); |
| 1110 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 1111 | - $children[] = $row['id_board']; |
|
| 1164 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 1165 | + $children[] = $row['id_board']; |
|
| 1166 | + } |
|
| 1112 | 1167 | $smcFunc['db_free_result']($result); |
| 1113 | 1168 | |
| 1114 | 1169 | // ...and set it to a new parent and child_level. |
@@ -1124,9 +1179,10 @@ discard block |
||
| 1124 | 1179 | ); |
| 1125 | 1180 | |
| 1126 | 1181 | // Recursively fix the children of the children. |
| 1127 | - foreach ($children as $child) |
|
| 1128 | - fixChildren($child, $newLevel + 1, $child); |
|
| 1129 | -} |
|
| 1182 | + foreach ($children as $child) { |
|
| 1183 | + fixChildren($child, $newLevel + 1, $child); |
|
| 1184 | + } |
|
| 1185 | + } |
|
| 1130 | 1186 | |
| 1131 | 1187 | /** |
| 1132 | 1188 | * Tries to load up the entire board order and category very very quickly |
@@ -1143,8 +1199,9 @@ discard block |
||
| 1143 | 1199 | 'boards' => array(), |
| 1144 | 1200 | ); |
| 1145 | 1201 | |
| 1146 | - if (!empty($tree_order['boards'])) |
|
| 1147 | - return $tree_order; |
|
| 1202 | + if (!empty($tree_order['boards'])) { |
|
| 1203 | + return $tree_order; |
|
| 1204 | + } |
|
| 1148 | 1205 | |
| 1149 | 1206 | if (($cached = cache_get_data('board_order', 86400)) !== null) |
| 1150 | 1207 | { |
@@ -1160,8 +1217,9 @@ discard block |
||
| 1160 | 1217 | ); |
| 1161 | 1218 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1162 | 1219 | { |
| 1163 | - if (!in_array($row['id_cat'], $tree_order['cats'])) |
|
| 1164 | - $tree_order['cats'][] = $row['id_cat']; |
|
| 1220 | + if (!in_array($row['id_cat'], $tree_order['cats'])) { |
|
| 1221 | + $tree_order['cats'][] = $row['id_cat']; |
|
| 1222 | + } |
|
| 1165 | 1223 | $tree_order['boards'][] = $row['id_board']; |
| 1166 | 1224 | } |
| 1167 | 1225 | $smcFunc['db_free_result']($request); |
@@ -1181,16 +1239,19 @@ discard block |
||
| 1181 | 1239 | $tree = getTreeOrder(); |
| 1182 | 1240 | |
| 1183 | 1241 | $ordered = array(); |
| 1184 | - foreach ($tree['boards'] as $board) |
|
| 1185 | - if (!empty($boards[$board])) |
|
| 1242 | + foreach ($tree['boards'] as $board) { |
|
| 1243 | + if (!empty($boards[$board])) |
|
| 1186 | 1244 | { |
| 1187 | 1245 | $ordered[$board] = $boards[$board]; |
| 1246 | + } |
|
| 1188 | 1247 | |
| 1189 | - if (is_array($ordered[$board]) && !empty($ordered[$board]['boards'])) |
|
| 1190 | - sortBoards($ordered[$board]['boards']); |
|
| 1248 | + if (is_array($ordered[$board]) && !empty($ordered[$board]['boards'])) { |
|
| 1249 | + sortBoards($ordered[$board]['boards']); |
|
| 1250 | + } |
|
| 1191 | 1251 | |
| 1192 | - if (is_array($ordered[$board]) && !empty($ordered[$board]['children'])) |
|
| 1193 | - sortBoards($ordered[$board]['children']); |
|
| 1252 | + if (is_array($ordered[$board]) && !empty($ordered[$board]['children'])) { |
|
| 1253 | + sortBoards($ordered[$board]['children']); |
|
| 1254 | + } |
|
| 1194 | 1255 | } |
| 1195 | 1256 | |
| 1196 | 1257 | $boards = $ordered; |
@@ -1206,12 +1267,14 @@ discard block |
||
| 1206 | 1267 | $tree = getTreeOrder(); |
| 1207 | 1268 | |
| 1208 | 1269 | $ordered = array(); |
| 1209 | - foreach ($tree['cats'] as $cat) |
|
| 1210 | - if (!empty($categories[$cat])) |
|
| 1270 | + foreach ($tree['cats'] as $cat) { |
|
| 1271 | + if (!empty($categories[$cat])) |
|
| 1211 | 1272 | { |
| 1212 | 1273 | $ordered[$cat] = $categories[$cat]; |
| 1213 | - if (!empty($ordered[$cat]['boards'])) |
|
| 1214 | - sortBoards($ordered[$cat]['boards']); |
|
| 1274 | + } |
|
| 1275 | + if (!empty($ordered[$cat]['boards'])) { |
|
| 1276 | + sortBoards($ordered[$cat]['boards']); |
|
| 1277 | + } |
|
| 1215 | 1278 | } |
| 1216 | 1279 | |
| 1217 | 1280 | $categories = $ordered; |
@@ -1227,8 +1290,9 @@ discard block |
||
| 1227 | 1290 | { |
| 1228 | 1291 | global $smcFunc, $scripturl, $txt; |
| 1229 | 1292 | |
| 1230 | - if (empty($boards)) |
|
| 1231 | - return array(); |
|
| 1293 | + if (empty($boards)) { |
|
| 1294 | + return array(); |
|
| 1295 | + } |
|
| 1232 | 1296 | |
| 1233 | 1297 | $request = $smcFunc['db_query']('', ' |
| 1234 | 1298 | SELECT mem.id_member, mem.real_name, mo.id_board |
@@ -1242,8 +1306,9 @@ discard block |
||
| 1242 | 1306 | $moderators = array(); |
| 1243 | 1307 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1244 | 1308 | { |
| 1245 | - if (empty($moderators[$row['id_board']])) |
|
| 1246 | - $moderators[$row['id_board']] = array(); |
|
| 1309 | + if (empty($moderators[$row['id_board']])) { |
|
| 1310 | + $moderators[$row['id_board']] = array(); |
|
| 1311 | + } |
|
| 1247 | 1312 | |
| 1248 | 1313 | $moderators[$row['id_board']][] = array( |
| 1249 | 1314 | 'id' => $row['id_member'], |
@@ -1267,8 +1332,9 @@ discard block |
||
| 1267 | 1332 | { |
| 1268 | 1333 | global $smcFunc, $scripturl, $txt; |
| 1269 | 1334 | |
| 1270 | - if (empty($boards)) |
|
| 1271 | - return array(); |
|
| 1335 | + if (empty($boards)) { |
|
| 1336 | + return array(); |
|
| 1337 | + } |
|
| 1272 | 1338 | |
| 1273 | 1339 | $request = $smcFunc['db_query']('', ' |
| 1274 | 1340 | SELECT mg.id_group, mg.group_name, bg.id_board |
@@ -1282,8 +1348,9 @@ discard block |
||
| 1282 | 1348 | $groups = array(); |
| 1283 | 1349 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1284 | 1350 | { |
| 1285 | - if (empty($groups[$row['id_board']])) |
|
| 1286 | - $groups[$row['id_board']] = array(); |
|
| 1351 | + if (empty($groups[$row['id_board']])) { |
|
| 1352 | + $groups[$row['id_board']] = array(); |
|
| 1353 | + } |
|
| 1287 | 1354 | |
| 1288 | 1355 | $groups[$row['id_board']][] = array( |
| 1289 | 1356 | 'id' => $row['id_group'], |
@@ -1358,8 +1425,9 @@ discard block |
||
| 1358 | 1425 | |
| 1359 | 1426 | if (!empty($row['id_board'])) |
| 1360 | 1427 | { |
| 1361 | - if ($row['child_level'] != $curLevel) |
|
| 1362 | - $prevBoard = 0; |
|
| 1428 | + if ($row['child_level'] != $curLevel) { |
|
| 1429 | + $prevBoard = 0; |
|
| 1430 | + } |
|
| 1363 | 1431 | |
| 1364 | 1432 | $boards[$row['id_board']] = array( |
| 1365 | 1433 | 'id' => $row['id_board'], |
@@ -1391,16 +1459,16 @@ discard block |
||
| 1391 | 1459 | 'children' => array() |
| 1392 | 1460 | ); |
| 1393 | 1461 | $boards[$row['id_board']]['tree'] = &$cat_tree[$row['id_cat']]['children'][$row['id_board']]; |
| 1394 | - } |
|
| 1395 | - else |
|
| 1462 | + } else |
|
| 1396 | 1463 | { |
| 1397 | 1464 | // Parent doesn't exist! |
| 1398 | - if (!isset($boards[$row['id_parent']]['tree'])) |
|
| 1399 | - fatal_lang_error('no_valid_parent', false, array($row['board_name'])); |
|
| 1465 | + if (!isset($boards[$row['id_parent']]['tree'])) { |
|
| 1466 | + fatal_lang_error('no_valid_parent', false, array($row['board_name'])); |
|
| 1467 | + } |
|
| 1400 | 1468 | |
| 1401 | 1469 | // Wrong childlevel...we can silently fix this... |
| 1402 | - if ($boards[$row['id_parent']]['tree']['node']['level'] != $row['child_level'] - 1) |
|
| 1403 | - $smcFunc['db_query']('', ' |
|
| 1470 | + if ($boards[$row['id_parent']]['tree']['node']['level'] != $row['child_level'] - 1) { |
|
| 1471 | + $smcFunc['db_query']('', ' |
|
| 1404 | 1472 | UPDATE {db_prefix}boards |
| 1405 | 1473 | SET child_level = {int:new_child_level} |
| 1406 | 1474 | WHERE id_board = {int:selected_board}', |
@@ -1409,6 +1477,7 @@ discard block |
||
| 1409 | 1477 | 'selected_board' => $row['id_board'], |
| 1410 | 1478 | ) |
| 1411 | 1479 | ); |
| 1480 | + } |
|
| 1412 | 1481 | |
| 1413 | 1482 | $boards[$row['id_parent']]['tree']['children'][$row['id_board']] = array( |
| 1414 | 1483 | 'node' => &$boards[$row['id_board']], |
@@ -1442,8 +1511,9 @@ discard block |
||
| 1442 | 1511 | */ |
| 1443 | 1512 | function recursiveBoards(&$_boardList, &$_tree) |
| 1444 | 1513 | { |
| 1445 | - if (empty($_tree['children'])) |
|
| 1446 | - return; |
|
| 1514 | + if (empty($_tree['children'])) { |
|
| 1515 | + return; |
|
| 1516 | + } |
|
| 1447 | 1517 | |
| 1448 | 1518 | foreach ($_tree['children'] as $id => $node) |
| 1449 | 1519 | { |
@@ -1462,11 +1532,13 @@ discard block |
||
| 1462 | 1532 | { |
| 1463 | 1533 | global $boards; |
| 1464 | 1534 | |
| 1465 | - if (empty($boards[$child]['parent'])) |
|
| 1466 | - return false; |
|
| 1535 | + if (empty($boards[$child]['parent'])) { |
|
| 1536 | + return false; |
|
| 1537 | + } |
|
| 1467 | 1538 | |
| 1468 | - if ($boards[$child]['parent'] == $parent) |
|
| 1469 | - return true; |
|
| 1539 | + if ($boards[$child]['parent'] == $parent) { |
|
| 1540 | + return true; |
|
| 1541 | + } |
|
| 1470 | 1542 | |
| 1471 | 1543 | return isChildOf($boards[$child]['parent'], $parent); |
| 1472 | 1544 | } |
@@ -16,8 +16,9 @@ discard block |
||
| 16 | 16 | * @version 2.1 Beta 4 |
| 17 | 17 | */ |
| 18 | 18 | |
| 19 | -if (!defined('SMF')) |
|
| 19 | +if (!defined('SMF')) { |
|
| 20 | 20 | die('No direct access...'); |
| 21 | +} |
|
| 21 | 22 | |
| 22 | 23 | |
| 23 | 24 | /** |
@@ -28,14 +29,16 @@ discard block |
||
| 28 | 29 | function sha1_smf($str) |
| 29 | 30 | { |
| 30 | 31 | // If we have mhash loaded in, use it instead! |
| 31 | - if (function_exists('mhash') && defined('MHASH_SHA1')) |
|
| 32 | - return bin2hex(mhash(MHASH_SHA1, $str)); |
|
| 32 | + if (function_exists('mhash') && defined('MHASH_SHA1')) { |
|
| 33 | + return bin2hex(mhash(MHASH_SHA1, $str)); |
|
| 34 | + } |
|
| 33 | 35 | |
| 34 | 36 | $nblk = (strlen($str) + 8 >> 6) + 1; |
| 35 | 37 | $blks = array_pad(array(), $nblk * 16, 0); |
| 36 | 38 | |
| 37 | - for ($i = 0; $i < strlen($str); $i++) |
|
| 38 | - $blks[$i >> 2] |= ord($str{$i}) << (24 - ($i % 4) * 8); |
|
| 39 | + for ($i = 0; $i < strlen($str); $i++) { |
|
| 40 | + $blks[$i >> 2] |= ord($str{$i}) << (24 - ($i % 4) * 8); |
|
| 41 | + } |
|
| 39 | 42 | |
| 40 | 43 | $blks[$i >> 2] |= 0x80 << (24 - ($i % 4) * 8); |
| 41 | 44 | |
@@ -70,10 +73,11 @@ discard block |
||
| 70 | 73 | |
| 71 | 74 | for ($j = 0; $j < 80; $j++) |
| 72 | 75 | { |
| 73 | - if ($j < 16) |
|
| 74 | - $w[$j] = isset($x[$i + $j]) ? $x[$i + $j] : 0; |
|
| 75 | - else |
|
| 76 | - $w[$j] = sha1_rol($w[$j - 3] ^ $w[$j - 8] ^ $w[$j - 14] ^ $w[$j - 16], 1); |
|
| 76 | + if ($j < 16) { |
|
| 77 | + $w[$j] = isset($x[$i + $j]) ? $x[$i + $j] : 0; |
|
| 78 | + } else { |
|
| 79 | + $w[$j] = sha1_rol($w[$j - 3] ^ $w[$j - 8] ^ $w[$j - 14] ^ $w[$j - 16], 1); |
|
| 80 | + } |
|
| 77 | 81 | |
| 78 | 82 | $t = sha1_rol($a, 5) + sha1_ft($j, $b, $c, $d) + $e + $w[$j] + sha1_kt($j); |
| 79 | 83 | $e = $d; |
@@ -103,12 +107,15 @@ discard block |
||
| 103 | 107 | */ |
| 104 | 108 | function sha1_ft($t, $b, $c, $d) |
| 105 | 109 | { |
| 106 | - if ($t < 20) |
|
| 107 | - return ($b & $c) | ((~$b) & $d); |
|
| 108 | - if ($t < 40) |
|
| 109 | - return $b ^ $c ^ $d; |
|
| 110 | - if ($t < 60) |
|
| 111 | - return ($b & $c) | ($b & $d) | ($c & $d); |
|
| 110 | + if ($t < 20) { |
|
| 111 | + return ($b & $c) | ((~$b) & $d); |
|
| 112 | + } |
|
| 113 | + if ($t < 40) { |
|
| 114 | + return $b ^ $c ^ $d; |
|
| 115 | + } |
|
| 116 | + if ($t < 60) { |
|
| 117 | + return ($b & $c) | ($b & $d) | ($c & $d); |
|
| 118 | + } |
|
| 112 | 119 | |
| 113 | 120 | return $b ^ $c ^ $d; |
| 114 | 121 | } |
@@ -132,10 +139,11 @@ discard block |
||
| 132 | 139 | function sha1_rol($num, $cnt) |
| 133 | 140 | { |
| 134 | 141 | // Unfortunately, PHP uses unsigned 32-bit longs only. So we have to kludge it a bit. |
| 135 | - if ($num & 0x80000000) |
|
| 136 | - $a = ($num >> 1 & 0x7fffffff) >> (31 - $cnt); |
|
| 137 | - else |
|
| 138 | - $a = $num >> (32 - $cnt); |
|
| 142 | + if ($num & 0x80000000) { |
|
| 143 | + $a = ($num >> 1 & 0x7fffffff) >> (31 - $cnt); |
|
| 144 | + } else { |
|
| 145 | + $a = $num >> (32 - $cnt); |
|
| 146 | + } |
|
| 139 | 147 | |
| 140 | 148 | return ($num << $cnt) | $a; |
| 141 | 149 | } |