@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * The main controlling function doesn't have much to do... yet. |
@@ -43,8 +44,7 @@ discard block |
||
| 43 | 44 | 'settings' => 'ModifyCalendarSettings' |
| 44 | 45 | ); |
| 45 | 46 | $default = 'holidays'; |
| 46 | - } |
|
| 47 | - else |
|
| 47 | + } else |
|
| 48 | 48 | { |
| 49 | 49 | $subActions = array( |
| 50 | 50 | 'settings' => 'ModifyCalendarSettings' |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | 'help' => 'calendar', |
| 61 | 61 | 'description' => $txt['calendar_settings_desc'], |
| 62 | 62 | ); |
| 63 | - if (!empty($modSettings['cal_enabled'])) |
|
| 64 | - $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
| 63 | + if (!empty($modSettings['cal_enabled'])) { |
|
| 64 | + $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
| 65 | 65 | 'holidays' => array( |
| 66 | 66 | 'description' => $txt['manage_holidays_desc'], |
| 67 | 67 | ), |
@@ -69,6 +69,7 @@ discard block |
||
| 69 | 69 | 'description' => $txt['calendar_settings_desc'], |
| 70 | 70 | ), |
| 71 | 71 | ); |
| 72 | + } |
|
| 72 | 73 | |
| 73 | 74 | call_integration_hook('integrate_manage_calendar', array(&$subActions)); |
| 74 | 75 | |
@@ -88,8 +89,9 @@ discard block |
||
| 88 | 89 | checkSession(); |
| 89 | 90 | validateToken('admin-mc'); |
| 90 | 91 | |
| 91 | - foreach ($_REQUEST['holiday'] as $id => $value) |
|
| 92 | - $_REQUEST['holiday'][$id] = (int) $id; |
|
| 92 | + foreach ($_REQUEST['holiday'] as $id => $value) { |
|
| 93 | + $_REQUEST['holiday'][$id] = (int) $id; |
|
| 94 | + } |
|
| 93 | 95 | |
| 94 | 96 | // Now the IDs are "safe" do the delete... |
| 95 | 97 | require_once($sourcedir . '/Subs-Calendar.php'); |
@@ -209,8 +211,9 @@ discard block |
||
| 209 | 211 | $context['sub_template'] = 'edit_holiday'; |
| 210 | 212 | |
| 211 | 213 | // Cast this for safety... |
| 212 | - if (isset($_REQUEST['holiday'])) |
|
| 213 | - $_REQUEST['holiday'] = (int) $_REQUEST['holiday']; |
|
| 214 | + if (isset($_REQUEST['holiday'])) { |
|
| 215 | + $_REQUEST['holiday'] = (int) $_REQUEST['holiday']; |
|
| 216 | + } |
|
| 214 | 217 | |
| 215 | 218 | // Submitting? |
| 216 | 219 | if (isset($_POST[$context['session_var']]) && (isset($_REQUEST['delete']) || $_REQUEST['title'] != '')) |
@@ -221,19 +224,19 @@ discard block |
||
| 221 | 224 | $_REQUEST['title'] = $smcFunc['substr']($_REQUEST['title'], 0, 60); |
| 222 | 225 | $_REQUEST['holiday'] = isset($_REQUEST['holiday']) ? (int) $_REQUEST['holiday'] : 0; |
| 223 | 226 | |
| 224 | - if (isset($_REQUEST['delete'])) |
|
| 225 | - $smcFunc['db_query']('', ' |
|
| 227 | + if (isset($_REQUEST['delete'])) { |
|
| 228 | + $smcFunc['db_query']('', ' |
|
| 226 | 229 | DELETE FROM {db_prefix}calendar_holidays |
| 227 | 230 | WHERE id_holiday = {int:selected_holiday}', |
| 228 | 231 | array( |
| 229 | 232 | 'selected_holiday' => $_REQUEST['holiday'], |
| 230 | 233 | ) |
| 231 | 234 | ); |
| 232 | - else |
|
| 235 | + } else |
|
| 233 | 236 | { |
| 234 | 237 | $date = strftime($_REQUEST['year'] <= 4 ? '0004-%m-%d' : '%Y-%m-%d', mktime(0, 0, 0, $_REQUEST['month'], $_REQUEST['day'], $_REQUEST['year'])); |
| 235 | - if (isset($_REQUEST['edit'])) |
|
| 236 | - $smcFunc['db_query']('', ' |
|
| 238 | + if (isset($_REQUEST['edit'])) { |
|
| 239 | + $smcFunc['db_query']('', ' |
|
| 237 | 240 | UPDATE {db_prefix}calendar_holidays |
| 238 | 241 | SET event_date = {date:holiday_date}, title = {string:holiday_title} |
| 239 | 242 | WHERE id_holiday = {int:selected_holiday}', |
@@ -243,8 +246,8 @@ discard block |
||
| 243 | 246 | 'holiday_title' => $_REQUEST['title'], |
| 244 | 247 | ) |
| 245 | 248 | ); |
| 246 | - else |
|
| 247 | - $smcFunc['db_insert']('', |
|
| 249 | + } else { |
|
| 250 | + $smcFunc['db_insert']('', |
|
| 248 | 251 | '{db_prefix}calendar_holidays', |
| 249 | 252 | array( |
| 250 | 253 | 'event_date' => 'date', 'title' => 'string-60', |
@@ -254,6 +257,7 @@ discard block |
||
| 254 | 257 | ), |
| 255 | 258 | array('id_holiday') |
| 256 | 259 | ); |
| 260 | + } |
|
| 257 | 261 | } |
| 258 | 262 | |
| 259 | 263 | updateSettings(array( |
@@ -265,14 +269,15 @@ discard block |
||
| 265 | 269 | } |
| 266 | 270 | |
| 267 | 271 | // Default states... |
| 268 | - if ($context['is_new']) |
|
| 269 | - $context['holiday'] = array( |
|
| 272 | + if ($context['is_new']) { |
|
| 273 | + $context['holiday'] = array( |
|
| 270 | 274 | 'id' => 0, |
| 271 | 275 | 'day' => date('d'), |
| 272 | 276 | 'month' => date('m'), |
| 273 | 277 | 'year' => '0000', |
| 274 | 278 | 'title' => '' |
| 275 | 279 | ); |
| 280 | + } |
|
| 276 | 281 | // If it's not new load the data. |
| 277 | 282 | else |
| 278 | 283 | { |
@@ -285,14 +290,15 @@ discard block |
||
| 285 | 290 | 'selected_holiday' => $_REQUEST['holiday'], |
| 286 | 291 | ) |
| 287 | 292 | ); |
| 288 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 289 | - $context['holiday'] = array( |
|
| 293 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 294 | + $context['holiday'] = array( |
|
| 290 | 295 | 'id' => $row['id_holiday'], |
| 291 | 296 | 'day' => $row['day'], |
| 292 | 297 | 'month' => $row['month'], |
| 293 | 298 | 'year' => $row['year'] <= 4 ? 0 : $row['year'], |
| 294 | 299 | 'title' => $row['title'] |
| 295 | 300 | ); |
| 301 | + } |
|
| 296 | 302 | $smcFunc['db_free_result']($request); |
| 297 | 303 | } |
| 298 | 304 | |
@@ -319,16 +325,17 @@ discard block |
||
| 319 | 325 | array( |
| 320 | 326 | ) |
| 321 | 327 | ); |
| 322 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 323 | - $boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name']; |
|
| 328 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 329 | + $boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name']; |
|
| 330 | + } |
|
| 324 | 331 | $smcFunc['db_free_result']($request); |
| 325 | 332 | |
| 326 | 333 | require_once($sourcedir . '/Subs-Boards.php'); |
| 327 | 334 | sortBoards($boards); |
| 328 | 335 | |
| 329 | 336 | // Look, all the calendar settings - of which there are many! |
| 330 | - if (!empty($modSettings['cal_enabled'])) |
|
| 331 | - $config_vars = array( |
|
| 337 | + if (!empty($modSettings['cal_enabled'])) { |
|
| 338 | + $config_vars = array( |
|
| 332 | 339 | array('check', 'cal_enabled'), |
| 333 | 340 | '', |
| 334 | 341 | // All the permissions: |
@@ -371,14 +378,16 @@ discard block |
||
| 371 | 378 | array('check', 'cal_short_days'), |
| 372 | 379 | array('check', 'cal_short_months'), |
| 373 | 380 | ); |
| 374 | - else |
|
| 375 | - $config_vars = array( |
|
| 381 | + } else { |
|
| 382 | + $config_vars = array( |
|
| 376 | 383 | array('check', 'cal_enabled'), |
| 377 | 384 | ); |
| 385 | + } |
|
| 378 | 386 | |
| 379 | 387 | call_integration_hook('integrate_modify_calendar_settings', array(&$config_vars)); |
| 380 | - if ($return_config) |
|
| 381 | - return $config_vars; |
|
| 388 | + if ($return_config) { |
|
| 389 | + return $config_vars; |
|
| 390 | + } |
|
| 382 | 391 | |
| 383 | 392 | // Get the settings template fired up. |
| 384 | 393 | require_once($sourcedir . '/ManageServer.php'); |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Delete one or more members. |
@@ -43,30 +44,32 @@ discard block |
||
| 43 | 44 | setMemoryLimit('128M'); |
| 44 | 45 | |
| 45 | 46 | // If it's not an array, make it so! |
| 46 | - if (!is_array($users)) |
|
| 47 | - $users = array($users); |
|
| 48 | - else |
|
| 49 | - $users = array_unique($users); |
|
| 47 | + if (!is_array($users)) { |
|
| 48 | + $users = array($users); |
|
| 49 | + } else { |
|
| 50 | + $users = array_unique($users); |
|
| 51 | + } |
|
| 50 | 52 | |
| 51 | 53 | // Make sure there's no void user in here. |
| 52 | 54 | $users = array_diff($users, array(0)); |
| 53 | 55 | |
| 54 | 56 | // How many are they deleting? |
| 55 | - if (empty($users)) |
|
| 56 | - return; |
|
| 57 | - elseif (count($users) == 1) |
|
| 57 | + if (empty($users)) { |
|
| 58 | + return; |
|
| 59 | + } elseif (count($users) == 1) |
|
| 58 | 60 | { |
| 59 | 61 | list ($user) = $users; |
| 60 | 62 | |
| 61 | - if ($user == $user_info['id']) |
|
| 62 | - isAllowedTo('profile_remove_own'); |
|
| 63 | - else |
|
| 64 | - isAllowedTo('profile_remove_any'); |
|
| 65 | - } |
|
| 66 | - else |
|
| 63 | + if ($user == $user_info['id']) { |
|
| 64 | + isAllowedTo('profile_remove_own'); |
|
| 65 | + } else { |
|
| 66 | + isAllowedTo('profile_remove_any'); |
|
| 67 | + } |
|
| 68 | + } else |
|
| 67 | 69 | { |
| 68 | - foreach ($users as $k => $v) |
|
| 69 | - $users[$k] = (int) $v; |
|
| 70 | + foreach ($users as $k => $v) { |
|
| 71 | + $users[$k] = (int) $v; |
|
| 72 | + } |
|
| 70 | 73 | |
| 71 | 74 | // Deleting more than one? You can't have more than one account... |
| 72 | 75 | isAllowedTo('profile_remove_any'); |
@@ -88,26 +91,30 @@ discard block |
||
| 88 | 91 | $user_log_details = array(); |
| 89 | 92 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 90 | 93 | { |
| 91 | - if ($row['is_admin']) |
|
| 92 | - $admins[] = $row['id_member']; |
|
| 94 | + if ($row['is_admin']) { |
|
| 95 | + $admins[] = $row['id_member']; |
|
| 96 | + } |
|
| 93 | 97 | $user_log_details[$row['id_member']] = array($row['id_member'], $row['member_name']); |
| 94 | 98 | } |
| 95 | 99 | $smcFunc['db_free_result']($request); |
| 96 | 100 | |
| 97 | - if (empty($user_log_details)) |
|
| 98 | - return; |
|
| 101 | + if (empty($user_log_details)) { |
|
| 102 | + return; |
|
| 103 | + } |
|
| 99 | 104 | |
| 100 | 105 | // Make sure they aren't trying to delete administrators if they aren't one. But don't bother checking if it's just themself. |
| 101 | 106 | if (!empty($admins) && ($check_not_admin || (!allowedTo('admin_forum') && (count($users) != 1 || $users[0] != $user_info['id'])))) |
| 102 | 107 | { |
| 103 | 108 | $users = array_diff($users, $admins); |
| 104 | - foreach ($admins as $id) |
|
| 105 | - unset($user_log_details[$id]); |
|
| 109 | + foreach ($admins as $id) { |
|
| 110 | + unset($user_log_details[$id]); |
|
| 111 | + } |
|
| 106 | 112 | } |
| 107 | 113 | |
| 108 | 114 | // No one left? |
| 109 | - if (empty($users)) |
|
| 110 | - return; |
|
| 115 | + if (empty($users)) { |
|
| 116 | + return; |
|
| 117 | + } |
|
| 111 | 118 | |
| 112 | 119 | // Log the action - regardless of who is deleting it. |
| 113 | 120 | $log_changes = array(); |
@@ -124,8 +131,9 @@ discard block |
||
| 124 | 131 | ); |
| 125 | 132 | |
| 126 | 133 | // Remove any cached data if enabled. |
| 127 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) |
|
| 128 | - cache_put_data('user_settings-' . $user[0], null, 60); |
|
| 134 | + if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) { |
|
| 135 | + cache_put_data('user_settings-' . $user[0], null, 60); |
|
| 136 | + } |
|
| 129 | 137 | } |
| 130 | 138 | |
| 131 | 139 | // Make these peoples' posts guest posts. |
@@ -388,8 +396,8 @@ discard block |
||
| 388 | 396 | 'buddy_list' => implode(', buddy_list) != 0 OR FIND_IN_SET(', $users), |
| 389 | 397 | ) |
| 390 | 398 | ); |
| 391 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 392 | - $smcFunc['db_query']('', ' |
|
| 399 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 400 | + $smcFunc['db_query']('', ' |
|
| 393 | 401 | UPDATE {db_prefix}members |
| 394 | 402 | SET |
| 395 | 403 | pm_ignore_list = {string:pm_ignore_list}, |
@@ -401,6 +409,7 @@ discard block |
||
| 401 | 409 | 'buddy_list' => implode(',', array_diff(explode(',', $row['buddy_list']), $users)), |
| 402 | 410 | ) |
| 403 | 411 | ); |
| 412 | + } |
|
| 404 | 413 | $smcFunc['db_free_result']($request); |
| 405 | 414 | |
| 406 | 415 | // Make sure no member's birthday is still sticking in the calendar... |
@@ -455,29 +464,34 @@ discard block |
||
| 455 | 464 | elseif ($regOptions['interface'] == 'guest') |
| 456 | 465 | { |
| 457 | 466 | // You cannot register twice... |
| 458 | - if (empty($user_info['is_guest'])) |
|
| 459 | - redirectexit(); |
|
| 467 | + if (empty($user_info['is_guest'])) { |
|
| 468 | + redirectexit(); |
|
| 469 | + } |
|
| 460 | 470 | |
| 461 | 471 | // Make sure they didn't just register with this session. |
| 462 | - if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck'])) |
|
| 463 | - fatal_lang_error('register_only_once', false); |
|
| 472 | + if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck'])) { |
|
| 473 | + fatal_lang_error('register_only_once', false); |
|
| 474 | + } |
|
| 464 | 475 | } |
| 465 | 476 | |
| 466 | 477 | // Spaces and other odd characters are evil... |
| 467 | 478 | $regOptions['username'] = trim(preg_replace('~[\t\n\r \x0B\0' . ($context['utf8'] ? '\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}' : '\x00-\x08\x0B\x0C\x0E-\x19\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $regOptions['username'])); |
| 468 | 479 | |
| 469 | 480 | // @todo Separate the sprintf? |
| 470 | - if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255) |
|
| 471 | - $reg_errors[] = array('lang', 'profile_error_bad_email'); |
|
| 481 | + if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255) { |
|
| 482 | + $reg_errors[] = array('lang', 'profile_error_bad_email'); |
|
| 483 | + } |
|
| 472 | 484 | |
| 473 | 485 | $username_validation_errors = validateUsername(0, $regOptions['username'], true, !empty($regOptions['check_reserved_name'])); |
| 474 | - if (!empty($username_validation_errors)) |
|
| 475 | - $reg_errors = array_merge($reg_errors, $username_validation_errors); |
|
| 486 | + if (!empty($username_validation_errors)) { |
|
| 487 | + $reg_errors = array_merge($reg_errors, $username_validation_errors); |
|
| 488 | + } |
|
| 476 | 489 | |
| 477 | 490 | // Generate a validation code if it's supposed to be emailed. |
| 478 | 491 | $validation_code = ''; |
| 479 | - if ($regOptions['require'] == 'activation') |
|
| 480 | - $validation_code = generateValidationCode(); |
|
| 492 | + if ($regOptions['require'] == 'activation') { |
|
| 493 | + $validation_code = generateValidationCode(); |
|
| 494 | + } |
|
| 481 | 495 | |
| 482 | 496 | // If you haven't put in a password generate one. |
| 483 | 497 | if ($regOptions['interface'] == 'admin' && $regOptions['password'] == '') |
@@ -487,8 +501,9 @@ discard block |
||
| 487 | 501 | $regOptions['password_check'] = $regOptions['password']; |
| 488 | 502 | } |
| 489 | 503 | // Does the first password match the second? |
| 490 | - elseif ($regOptions['password'] != $regOptions['password_check']) |
|
| 491 | - $reg_errors[] = array('lang', 'passwords_dont_match'); |
|
| 504 | + elseif ($regOptions['password'] != $regOptions['password_check']) { |
|
| 505 | + $reg_errors[] = array('lang', 'passwords_dont_match'); |
|
| 506 | + } |
|
| 492 | 507 | |
| 493 | 508 | // That's kind of easy to guess... |
| 494 | 509 | if ($regOptions['password'] == '') |
@@ -502,13 +517,15 @@ discard block |
||
| 502 | 517 | $passwordError = validatePassword($regOptions['password'], $regOptions['username'], array($regOptions['email'])); |
| 503 | 518 | |
| 504 | 519 | // Password isn't legal? |
| 505 | - if ($passwordError != null) |
|
| 506 | - $reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); |
|
| 520 | + if ($passwordError != null) { |
|
| 521 | + $reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); |
|
| 522 | + } |
|
| 507 | 523 | } |
| 508 | 524 | |
| 509 | 525 | // You may not be allowed to register this email. |
| 510 | - if (!empty($regOptions['check_email_ban'])) |
|
| 511 | - isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']); |
|
| 526 | + if (!empty($regOptions['check_email_ban'])) { |
|
| 527 | + isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']); |
|
| 528 | + } |
|
| 512 | 529 | |
| 513 | 530 | // Check if the email address is in use. |
| 514 | 531 | $request = $smcFunc['db_query']('', ' |
@@ -523,8 +540,9 @@ discard block |
||
| 523 | 540 | ) |
| 524 | 541 | ); |
| 525 | 542 | // @todo Separate the sprintf? |
| 526 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
| 527 | - $reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); |
|
| 543 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
| 544 | + $reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); |
|
| 545 | + } |
|
| 528 | 546 | |
| 529 | 547 | $smcFunc['db_free_result']($request); |
| 530 | 548 | |
@@ -539,24 +557,27 @@ discard block |
||
| 539 | 557 | 1 = The text/index. |
| 540 | 558 | 2 = Whether to log. |
| 541 | 559 | 3 = sprintf data if necessary. */ |
| 542 | - if ($error[0] == 'lang') |
|
| 543 | - loadLanguage('Errors'); |
|
| 560 | + if ($error[0] == 'lang') { |
|
| 561 | + loadLanguage('Errors'); |
|
| 562 | + } |
|
| 544 | 563 | $message = $error[0] == 'lang' ? (empty($error[3]) ? $txt[$error[1]] : vsprintf($txt[$error[1]], $error[3])) : $error[1]; |
| 545 | 564 | |
| 546 | 565 | // What to do, what to do, what to do. |
| 547 | 566 | if ($return_errors) |
| 548 | 567 | { |
| 549 | - if (!empty($error[2])) |
|
| 550 | - log_error($message, $error[2]); |
|
| 568 | + if (!empty($error[2])) { |
|
| 569 | + log_error($message, $error[2]); |
|
| 570 | + } |
|
| 551 | 571 | $reg_errors[$key] = $message; |
| 572 | + } else { |
|
| 573 | + fatal_error($message, empty($error[2]) ? false : $error[2]); |
|
| 552 | 574 | } |
| 553 | - else |
|
| 554 | - fatal_error($message, empty($error[2]) ? false : $error[2]); |
|
| 555 | 575 | } |
| 556 | 576 | |
| 557 | 577 | // If there's any errors left return them at once! |
| 558 | - if (!empty($reg_errors)) |
|
| 559 | - return $reg_errors; |
|
| 578 | + if (!empty($reg_errors)) { |
|
| 579 | + return $reg_errors; |
|
| 580 | + } |
|
| 560 | 581 | |
| 561 | 582 | $reservedVars = array( |
| 562 | 583 | 'actual_theme_url', |
@@ -578,8 +599,9 @@ discard block |
||
| 578 | 599 | ); |
| 579 | 600 | |
| 580 | 601 | // Can't change reserved vars. |
| 581 | - if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0) |
|
| 582 | - fatal_lang_error('no_theme'); |
|
| 602 | + if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0) { |
|
| 603 | + fatal_lang_error('no_theme'); |
|
| 604 | + } |
|
| 583 | 605 | |
| 584 | 606 | // Some of these might be overwritten. (the lower ones that are in the arrays below.) |
| 585 | 607 | $regOptions['register_vars'] = array( |
@@ -621,14 +643,17 @@ discard block |
||
| 621 | 643 | $regOptions['register_vars']['validation_code'] = ''; |
| 622 | 644 | } |
| 623 | 645 | // Maybe it can be activated right away? |
| 624 | - elseif ($regOptions['require'] == 'nothing') |
|
| 625 | - $regOptions['register_vars']['is_activated'] = 1; |
|
| 646 | + elseif ($regOptions['require'] == 'nothing') { |
|
| 647 | + $regOptions['register_vars']['is_activated'] = 1; |
|
| 648 | + } |
|
| 626 | 649 | // Maybe it must be activated by email? |
| 627 | - elseif ($regOptions['require'] == 'activation') |
|
| 628 | - $regOptions['register_vars']['is_activated'] = 0; |
|
| 650 | + elseif ($regOptions['require'] == 'activation') { |
|
| 651 | + $regOptions['register_vars']['is_activated'] = 0; |
|
| 652 | + } |
|
| 629 | 653 | // Otherwise it must be awaiting approval! |
| 630 | - else |
|
| 631 | - $regOptions['register_vars']['is_activated'] = 3; |
|
| 654 | + else { |
|
| 655 | + $regOptions['register_vars']['is_activated'] = 3; |
|
| 656 | + } |
|
| 632 | 657 | |
| 633 | 658 | if (isset($regOptions['memberGroup'])) |
| 634 | 659 | { |
@@ -647,24 +672,28 @@ discard block |
||
| 647 | 672 | 'is_protected' => 1, |
| 648 | 673 | ) |
| 649 | 674 | ); |
| 650 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 651 | - $unassignableGroups[] = $row['id_group']; |
|
| 675 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 676 | + $unassignableGroups[] = $row['id_group']; |
|
| 677 | + } |
|
| 652 | 678 | $smcFunc['db_free_result']($request); |
| 653 | 679 | |
| 654 | - if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups)) |
|
| 655 | - $regOptions['register_vars']['id_group'] = 0; |
|
| 680 | + if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups)) { |
|
| 681 | + $regOptions['register_vars']['id_group'] = 0; |
|
| 682 | + } |
|
| 656 | 683 | } |
| 657 | 684 | |
| 658 | 685 | // Integrate optional member settings to be set. |
| 659 | - if (!empty($regOptions['extra_register_vars'])) |
|
| 660 | - foreach ($regOptions['extra_register_vars'] as $var => $value) |
|
| 686 | + if (!empty($regOptions['extra_register_vars'])) { |
|
| 687 | + foreach ($regOptions['extra_register_vars'] as $var => $value) |
|
| 661 | 688 | $regOptions['register_vars'][$var] = $value; |
| 689 | + } |
|
| 662 | 690 | |
| 663 | 691 | // Integrate optional user theme options to be set. |
| 664 | 692 | $theme_vars = array(); |
| 665 | - if (!empty($regOptions['theme_vars'])) |
|
| 666 | - foreach ($regOptions['theme_vars'] as $var => $value) |
|
| 693 | + if (!empty($regOptions['theme_vars'])) { |
|
| 694 | + foreach ($regOptions['theme_vars'] as $var => $value) |
|
| 667 | 695 | $theme_vars[$var] = $value; |
| 696 | + } |
|
| 668 | 697 | |
| 669 | 698 | // Right, now let's prepare for insertion. |
| 670 | 699 | $knownInts = array( |
@@ -687,14 +716,15 @@ discard block |
||
| 687 | 716 | foreach ($regOptions['register_vars'] as $var => $val) |
| 688 | 717 | { |
| 689 | 718 | $type = 'string'; |
| 690 | - if (in_array($var, $knownInts)) |
|
| 691 | - $type = 'int'; |
|
| 692 | - elseif (in_array($var, $knownFloats)) |
|
| 693 | - $type = 'float'; |
|
| 694 | - elseif (in_array($var, $knownInets)) |
|
| 695 | - $type = 'inet'; |
|
| 696 | - elseif ($var == 'birthdate') |
|
| 697 | - $type = 'date'; |
|
| 719 | + if (in_array($var, $knownInts)) { |
|
| 720 | + $type = 'int'; |
|
| 721 | + } elseif (in_array($var, $knownFloats)) { |
|
| 722 | + $type = 'float'; |
|
| 723 | + } elseif (in_array($var, $knownInets)) { |
|
| 724 | + $type = 'inet'; |
|
| 725 | + } elseif ($var == 'birthdate') { |
|
| 726 | + $type = 'date'; |
|
| 727 | + } |
|
| 698 | 728 | |
| 699 | 729 | $column_names[$var] = $type; |
| 700 | 730 | $values[$var] = $val; |
@@ -713,17 +743,19 @@ discard block |
||
| 713 | 743 | call_integration_hook('integrate_post_register', array(&$regOptions, &$theme_vars, &$memberID)); |
| 714 | 744 | |
| 715 | 745 | // Update the number of members and latest member's info - and pass the name, but remove the 's. |
| 716 | - if ($regOptions['register_vars']['is_activated'] == 1) |
|
| 717 | - updateStats('member', $memberID, $regOptions['register_vars']['real_name']); |
|
| 718 | - else |
|
| 719 | - updateStats('member'); |
|
| 746 | + if ($regOptions['register_vars']['is_activated'] == 1) { |
|
| 747 | + updateStats('member', $memberID, $regOptions['register_vars']['real_name']); |
|
| 748 | + } else { |
|
| 749 | + updateStats('member'); |
|
| 750 | + } |
|
| 720 | 751 | |
| 721 | 752 | // Theme variables too? |
| 722 | 753 | if (!empty($theme_vars)) |
| 723 | 754 | { |
| 724 | 755 | $inserts = array(); |
| 725 | - foreach ($theme_vars as $var => $val) |
|
| 726 | - $inserts[] = array($memberID, $var, $val); |
|
| 756 | + foreach ($theme_vars as $var => $val) { |
|
| 757 | + $inserts[] = array($memberID, $var, $val); |
|
| 758 | + } |
|
| 727 | 759 | $smcFunc['db_insert']('insert', |
| 728 | 760 | '{db_prefix}themes', |
| 729 | 761 | array('id_member' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'), |
@@ -738,10 +770,11 @@ discard block |
||
| 738 | 770 | // Administrative registrations are a bit different... |
| 739 | 771 | if ($regOptions['interface'] == 'admin') |
| 740 | 772 | { |
| 741 | - if ($regOptions['require'] == 'activation') |
|
| 742 | - $email_message = 'admin_register_activate'; |
|
| 743 | - elseif (!empty($regOptions['send_welcome_email'])) |
|
| 744 | - $email_message = 'admin_register_immediate'; |
|
| 773 | + if ($regOptions['require'] == 'activation') { |
|
| 774 | + $email_message = 'admin_register_activate'; |
|
| 775 | + } elseif (!empty($regOptions['send_welcome_email'])) { |
|
| 776 | + $email_message = 'admin_register_immediate'; |
|
| 777 | + } |
|
| 745 | 778 | |
| 746 | 779 | if (isset($email_message)) |
| 747 | 780 | { |
@@ -792,16 +825,17 @@ discard block |
||
| 792 | 825 | 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder', |
| 793 | 826 | ); |
| 794 | 827 | |
| 795 | - if ($regOptions['require'] == 'activation') |
|
| 796 | - $replacements += array( |
|
| 828 | + if ($regOptions['require'] == 'activation') { |
|
| 829 | + $replacements += array( |
|
| 797 | 830 | 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $memberID . ';code=' . $validation_code, |
| 798 | 831 | 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $memberID, |
| 799 | 832 | 'ACTIVATIONCODE' => $validation_code, |
| 800 | 833 | ); |
| 801 | - else |
|
| 802 | - $replacements += array( |
|
| 834 | + } else { |
|
| 835 | + $replacements += array( |
|
| 803 | 836 | 'COPPALINK' => $scripturl . '?action=coppa;u=' . $memberID, |
| 804 | 837 | ); |
| 838 | + } |
|
| 805 | 839 | |
| 806 | 840 | $emaildata = loadEmailTemplate('register_' . ($regOptions['require'] == 'activation' ? 'activate' : 'coppa'), $replacements); |
| 807 | 841 | |
@@ -866,39 +900,45 @@ discard block |
||
| 866 | 900 | // Check each name in the list... |
| 867 | 901 | foreach ($reservedNames as $reserved) |
| 868 | 902 | { |
| 869 | - if ($reserved == '') |
|
| 870 | - continue; |
|
| 903 | + if ($reserved == '') { |
|
| 904 | + continue; |
|
| 905 | + } |
|
| 871 | 906 | |
| 872 | 907 | // The admin might've used entities too, level the playing field. |
| 873 | 908 | $reservedCheck = preg_replace('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'replaceEntities__callback', $reserved); |
| 874 | 909 | |
| 875 | 910 | // Case sensitive name? |
| 876 | - if (empty($modSettings['reserveCase'])) |
|
| 877 | - $reservedCheck = $smcFunc['strtolower']($reservedCheck); |
|
| 911 | + if (empty($modSettings['reserveCase'])) { |
|
| 912 | + $reservedCheck = $smcFunc['strtolower']($reservedCheck); |
|
| 913 | + } |
|
| 878 | 914 | |
| 879 | 915 | // If it's not just entire word, check for it in there somewhere... |
| 880 | - if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord']))) |
|
| 881 | - if ($fatal) |
|
| 916 | + if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord']))) { |
|
| 917 | + if ($fatal) |
|
| 882 | 918 | fatal_lang_error('username_reserved', 'password', array($reserved)); |
| 883 | - else |
|
| 884 | - return true; |
|
| 919 | + } else { |
|
| 920 | + return true; |
|
| 921 | + } |
|
| 885 | 922 | } |
| 886 | 923 | |
| 887 | 924 | $censor_name = $name; |
| 888 | - if (censorText($censor_name) != $name) |
|
| 889 | - if ($fatal) |
|
| 925 | + if (censorText($censor_name) != $name) { |
|
| 926 | + if ($fatal) |
|
| 890 | 927 | fatal_lang_error('name_censored', 'password', array($name)); |
| 891 | - else |
|
| 892 | - return true; |
|
| 928 | + } else { |
|
| 929 | + return true; |
|
| 930 | + } |
|
| 893 | 931 | } |
| 894 | 932 | |
| 895 | 933 | // Characters we just shouldn't allow, regardless. |
| 896 | - foreach (array('*') as $char) |
|
| 897 | - if (strpos($checkName, $char) !== false) |
|
| 934 | + foreach (array('*') as $char) { |
|
| 935 | + if (strpos($checkName, $char) !== false) |
|
| 898 | 936 | if ($fatal) |
| 899 | 937 | fatal_lang_error('username_reserved', 'password', array($char)); |
| 900 | - else |
|
| 901 | - return true; |
|
| 938 | + } |
|
| 939 | + else { |
|
| 940 | + return true; |
|
| 941 | + } |
|
| 902 | 942 | |
| 903 | 943 | // Get rid of any SQL parts of the reserved name... |
| 904 | 944 | $checkName = strtr($name, array('_' => '\\_', '%' => '\\%')); |
@@ -980,8 +1020,9 @@ discard block |
||
| 980 | 1020 | 'permission' => $permission, |
| 981 | 1021 | ) |
| 982 | 1022 | ); |
| 983 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 984 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1023 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1024 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1025 | + } |
|
| 985 | 1026 | $smcFunc['db_free_result']($request); |
| 986 | 1027 | } |
| 987 | 1028 | |
@@ -989,9 +1030,9 @@ discard block |
||
| 989 | 1030 | else |
| 990 | 1031 | { |
| 991 | 1032 | // First get the profile of the given board. |
| 992 | - if (isset($board_info['id']) && $board_info['id'] == $board_id) |
|
| 993 | - $profile_id = $board_info['profile']; |
|
| 994 | - elseif ($board_id !== 0) |
|
| 1033 | + if (isset($board_info['id']) && $board_info['id'] == $board_id) { |
|
| 1034 | + $profile_id = $board_info['profile']; |
|
| 1035 | + } elseif ($board_id !== 0) |
|
| 995 | 1036 | { |
| 996 | 1037 | $request = $smcFunc['db_query']('', ' |
| 997 | 1038 | SELECT id_profile |
@@ -1002,13 +1043,14 @@ discard block |
||
| 1002 | 1043 | 'id_board' => $board_id, |
| 1003 | 1044 | ) |
| 1004 | 1045 | ); |
| 1005 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 1006 | - fatal_lang_error('no_board'); |
|
| 1046 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 1047 | + fatal_lang_error('no_board'); |
|
| 1048 | + } |
|
| 1007 | 1049 | list ($profile_id) = $smcFunc['db_fetch_row']($request); |
| 1008 | 1050 | $smcFunc['db_free_result']($request); |
| 1051 | + } else { |
|
| 1052 | + $profile_id = 1; |
|
| 1009 | 1053 | } |
| 1010 | - else |
|
| 1011 | - $profile_id = 1; |
|
| 1012 | 1054 | |
| 1013 | 1055 | $request = $smcFunc['db_query']('', ' |
| 1014 | 1056 | SELECT bp.id_group, bp.add_deny |
@@ -1020,8 +1062,9 @@ discard block |
||
| 1020 | 1062 | 'permission' => $permission, |
| 1021 | 1063 | ) |
| 1022 | 1064 | ); |
| 1023 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1024 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1065 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1066 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1067 | + } |
|
| 1025 | 1068 | $smcFunc['db_free_result']($request); |
| 1026 | 1069 | |
| 1027 | 1070 | $moderator_groups = array(); |
@@ -1030,8 +1073,7 @@ discard block |
||
| 1030 | 1073 | if (isset($board_info['moderator_groups'])) |
| 1031 | 1074 | { |
| 1032 | 1075 | $moderator_groups = array_keys($board_info['moderator_groups']); |
| 1033 | - } |
|
| 1034 | - elseif ($board_id !== 0) |
|
| 1076 | + } elseif ($board_id !== 0) |
|
| 1035 | 1077 | { |
| 1036 | 1078 | // Get the groups that can moderate this board |
| 1037 | 1079 | $request = $smcFunc['db_query']('', ' |
@@ -1116,8 +1158,9 @@ discard block |
||
| 1116 | 1158 | ) |
| 1117 | 1159 | ); |
| 1118 | 1160 | $members = array(); |
| 1119 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1120 | - $members[] = $row['id_member']; |
|
| 1161 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1162 | + $members[] = $row['id_member']; |
|
| 1163 | + } |
|
| 1121 | 1164 | $smcFunc['db_free_result']($request); |
| 1122 | 1165 | |
| 1123 | 1166 | return $members; |
@@ -1190,10 +1233,12 @@ discard block |
||
| 1190 | 1233 | } |
| 1191 | 1234 | |
| 1192 | 1235 | $query_parts = array(); |
| 1193 | - if (!empty($email)) |
|
| 1194 | - $query_parts[] = 'poster_email = {string:email_address}'; |
|
| 1195 | - if (!empty($membername)) |
|
| 1196 | - $query_parts[] = 'poster_name = {string:member_name}'; |
|
| 1236 | + if (!empty($email)) { |
|
| 1237 | + $query_parts[] = 'poster_email = {string:email_address}'; |
|
| 1238 | + } |
|
| 1239 | + if (!empty($membername)) { |
|
| 1240 | + $query_parts[] = 'poster_name = {string:member_name}'; |
|
| 1241 | + } |
|
| 1197 | 1242 | $query = implode(' AND ', $query_parts); |
| 1198 | 1243 | |
| 1199 | 1244 | // Finally, update the posts themselves! |
@@ -1260,12 +1305,14 @@ discard block |
||
| 1260 | 1305 | |
| 1261 | 1306 | $userReceiver = (int) !empty($_REQUEST['u']) ? $_REQUEST['u'] : 0; |
| 1262 | 1307 | |
| 1263 | - if (empty($userReceiver)) |
|
| 1264 | - fatal_lang_error('no_access', false); |
|
| 1308 | + if (empty($userReceiver)) { |
|
| 1309 | + fatal_lang_error('no_access', false); |
|
| 1310 | + } |
|
| 1265 | 1311 | |
| 1266 | 1312 | // Remove if it's already there... |
| 1267 | - if (in_array($userReceiver, $user_info['buddies'])) |
|
| 1268 | - $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver)); |
|
| 1313 | + if (in_array($userReceiver, $user_info['buddies'])) { |
|
| 1314 | + $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver)); |
|
| 1315 | + } |
|
| 1269 | 1316 | |
| 1270 | 1317 | // ...or add if it's not and if it's not you. |
| 1271 | 1318 | elseif ($user_info['id'] != $userReceiver) |
@@ -1340,8 +1387,9 @@ discard block |
||
| 1340 | 1387 | $smcFunc['db_free_result']($request); |
| 1341 | 1388 | |
| 1342 | 1389 | // If we want duplicates pass the members array off. |
| 1343 | - if ($get_duplicates) |
|
| 1344 | - populateDuplicateMembers($members); |
|
| 1390 | + if ($get_duplicates) { |
|
| 1391 | + populateDuplicateMembers($members); |
|
| 1392 | + } |
|
| 1345 | 1393 | |
| 1346 | 1394 | return $members; |
| 1347 | 1395 | } |
@@ -1358,8 +1406,9 @@ discard block |
||
| 1358 | 1406 | global $smcFunc, $modSettings; |
| 1359 | 1407 | |
| 1360 | 1408 | // We know how many members there are in total. |
| 1361 | - if (empty($where) || $where == '1=1') |
|
| 1362 | - $num_members = $modSettings['totalMembers']; |
|
| 1409 | + if (empty($where) || $where == '1=1') { |
|
| 1410 | + $num_members = $modSettings['totalMembers']; |
|
| 1411 | + } |
|
| 1363 | 1412 | |
| 1364 | 1413 | // The database knows the amount when there are extra conditions. |
| 1365 | 1414 | else |
@@ -1395,16 +1444,19 @@ discard block |
||
| 1395 | 1444 | $members[$key]['duplicate_members'] = array(); |
| 1396 | 1445 | |
| 1397 | 1446 | // Store the IPs. |
| 1398 | - if (!empty($member['member_ip'])) |
|
| 1399 | - $ips[] = $member['member_ip']; |
|
| 1400 | - if (!empty($member['member_ip2'])) |
|
| 1401 | - $ips[] = $member['member_ip2']; |
|
| 1447 | + if (!empty($member['member_ip'])) { |
|
| 1448 | + $ips[] = $member['member_ip']; |
|
| 1449 | + } |
|
| 1450 | + if (!empty($member['member_ip2'])) { |
|
| 1451 | + $ips[] = $member['member_ip2']; |
|
| 1452 | + } |
|
| 1402 | 1453 | } |
| 1403 | 1454 | |
| 1404 | 1455 | $ips = array_unique($ips); |
| 1405 | 1456 | |
| 1406 | - if (empty($ips)) |
|
| 1407 | - return false; |
|
| 1457 | + if (empty($ips)) { |
|
| 1458 | + return false; |
|
| 1459 | + } |
|
| 1408 | 1460 | |
| 1409 | 1461 | // Fetch all members with this IP address, we'll filter out the current ones in a sec. |
| 1410 | 1462 | $request = $smcFunc['db_query']('', ' |
@@ -1434,10 +1486,12 @@ discard block |
||
| 1434 | 1486 | 'ip2' => $row['member_ip2'], |
| 1435 | 1487 | ); |
| 1436 | 1488 | |
| 1437 | - if (in_array($row['member_ip'], $ips)) |
|
| 1438 | - $duplicate_members[$row['member_ip']][] = $member_context; |
|
| 1439 | - if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips)) |
|
| 1440 | - $duplicate_members[$row['member_ip2']][] = $member_context; |
|
| 1489 | + if (in_array($row['member_ip'], $ips)) { |
|
| 1490 | + $duplicate_members[$row['member_ip']][] = $member_context; |
|
| 1491 | + } |
|
| 1492 | + if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips)) { |
|
| 1493 | + $duplicate_members[$row['member_ip2']][] = $member_context; |
|
| 1494 | + } |
|
| 1441 | 1495 | } |
| 1442 | 1496 | $smcFunc['db_free_result']($request); |
| 1443 | 1497 | |
@@ -1462,8 +1516,9 @@ discard block |
||
| 1462 | 1516 | $row['poster_ip'] = inet_dtop($row['poster_ip']); |
| 1463 | 1517 | |
| 1464 | 1518 | // Don't collect lots of the same. |
| 1465 | - if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']])) |
|
| 1466 | - continue; |
|
| 1519 | + if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']])) { |
|
| 1520 | + continue; |
|
| 1521 | + } |
|
| 1467 | 1522 | $had_ips[$row['poster_ip']][] = $row['id_member']; |
| 1468 | 1523 | |
| 1469 | 1524 | $duplicate_members[$row['poster_ip']][] = array( |
@@ -1478,13 +1533,15 @@ discard block |
||
| 1478 | 1533 | $smcFunc['db_free_result']($request); |
| 1479 | 1534 | |
| 1480 | 1535 | // Now we have all the duplicate members, stick them with their respective member in the list. |
| 1481 | - if (!empty($duplicate_members)) |
|
| 1482 | - foreach ($members as $key => $member) |
|
| 1536 | + if (!empty($duplicate_members)) { |
|
| 1537 | + foreach ($members as $key => $member) |
|
| 1483 | 1538 | { |
| 1484 | 1539 | if (isset($duplicate_members[$member['member_ip']])) |
| 1485 | 1540 | $members[$key]['duplicate_members'] = $duplicate_members[$member['member_ip']]; |
| 1486 | - if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']])) |
|
| 1487 | - $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]); |
|
| 1541 | + } |
|
| 1542 | + if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']])) { |
|
| 1543 | + $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]); |
|
| 1544 | + } |
|
| 1488 | 1545 | |
| 1489 | 1546 | // Check we don't have lots of the same member. |
| 1490 | 1547 | $member_track = array($member['id_member']); |
@@ -59,8 +59,9 @@ discard block |
||
| 59 | 59 | * @version 2.1 Beta 3 |
| 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 | |
@@ -166,8 +168,9 @@ discard block |
||
| 166 | 168 | |
| 167 | 169 | call_integration_hook('integrate_general_settings', array(&$config_vars)); |
| 168 | 170 | |
| 169 | - if ($return_config) |
|
| 170 | - return $config_vars; |
|
| 171 | + if ($return_config) { |
|
| 172 | + return $config_vars; |
|
| 173 | + } |
|
| 171 | 174 | |
| 172 | 175 | // Setup the template stuff. |
| 173 | 176 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=general;save'; |
@@ -232,8 +235,9 @@ discard block |
||
| 232 | 235 | |
| 233 | 236 | call_integration_hook('integrate_database_settings', array(&$config_vars)); |
| 234 | 237 | |
| 235 | - if ($return_config) |
|
| 236 | - return $config_vars; |
|
| 238 | + if ($return_config) { |
|
| 239 | + return $config_vars; |
|
| 240 | + } |
|
| 237 | 241 | |
| 238 | 242 | // Setup the template stuff. |
| 239 | 243 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=database;save'; |
@@ -308,13 +312,15 @@ discard block |
||
| 308 | 312 | hideGlobalCookies(); |
| 309 | 313 | });', true); |
| 310 | 314 | |
| 311 | - if (empty($user_settings['tfa_secret'])) |
|
| 312 | - addInlineJavaScript(''); |
|
| 315 | + if (empty($user_settings['tfa_secret'])) { |
|
| 316 | + addInlineJavaScript(''); |
|
| 317 | + } |
|
| 313 | 318 | |
| 314 | 319 | call_integration_hook('integrate_cookie_settings', array(&$config_vars)); |
| 315 | 320 | |
| 316 | - if ($return_config) |
|
| 317 | - return $config_vars; |
|
| 321 | + if ($return_config) { |
|
| 322 | + return $config_vars; |
|
| 323 | + } |
|
| 318 | 324 | |
| 319 | 325 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cookie;save'; |
| 320 | 326 | $context['settings_title'] = $txt['cookies_sessions_settings']; |
@@ -325,11 +331,13 @@ discard block |
||
| 325 | 331 | call_integration_hook('integrate_save_cookie_settings'); |
| 326 | 332 | |
| 327 | 333 | // Local and global do not play nicely together. |
| 328 | - if (!empty($_POST['localCookies']) && empty($_POST['globalCookies'])) |
|
| 329 | - unset ($_POST['globalCookies']); |
|
| 334 | + if (!empty($_POST['localCookies']) && empty($_POST['globalCookies'])) { |
|
| 335 | + unset ($_POST['globalCookies']); |
|
| 336 | + } |
|
| 330 | 337 | |
| 331 | - if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false) |
|
| 332 | - fatal_lang_error('invalid_cookie_domain', false); |
|
| 338 | + if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false) { |
|
| 339 | + fatal_lang_error('invalid_cookie_domain', false); |
|
| 340 | + } |
|
| 333 | 341 | |
| 334 | 342 | saveSettings($config_vars); |
| 335 | 343 | |
@@ -412,8 +420,9 @@ discard block |
||
| 412 | 420 | |
| 413 | 421 | call_integration_hook('integrate_general_security_settings', array(&$config_vars)); |
| 414 | 422 | |
| 415 | - if ($return_config) |
|
| 416 | - return $config_vars; |
|
| 423 | + if ($return_config) { |
|
| 424 | + return $config_vars; |
|
| 425 | + } |
|
| 417 | 426 | |
| 418 | 427 | // Saving? |
| 419 | 428 | if (isset($_GET['save'])) |
@@ -452,8 +461,7 @@ discard block |
||
| 452 | 461 | $txt['cache_settings_message'] = $txt['detected_no_caching']; |
| 453 | 462 | $cache_level = array($txt['cache_off']); |
| 454 | 463 | $detected['none'] = $txt['cache_off']; |
| 455 | - } |
|
| 456 | - else |
|
| 464 | + } else |
|
| 457 | 465 | { |
| 458 | 466 | $txt['cache_settings_message'] = sprintf($txt['detected_accelerators'], implode(', ', $detected)); |
| 459 | 467 | $cache_level = array($txt['cache_off'], $txt['cache_level1'], $txt['cache_level2'], $txt['cache_level3']); |
@@ -490,8 +498,9 @@ discard block |
||
| 490 | 498 | } |
| 491 | 499 | } |
| 492 | 500 | } |
| 493 | - if ($return_config) |
|
| 494 | - return $config_vars; |
|
| 501 | + if ($return_config) { |
|
| 502 | + return $config_vars; |
|
| 503 | + } |
|
| 495 | 504 | |
| 496 | 505 | // Saving again? |
| 497 | 506 | if (isset($_GET['save'])) |
@@ -519,8 +528,9 @@ discard block |
||
| 519 | 528 | $context['save_disabled'] = $context['settings_not_writable']; |
| 520 | 529 | |
| 521 | 530 | // Decide what message to show. |
| 522 | - if (!$context['save_disabled']) |
|
| 523 | - $context['settings_message'] = $txt['caching_information']; |
|
| 531 | + if (!$context['save_disabled']) { |
|
| 532 | + $context['settings_message'] = $txt['caching_information']; |
|
| 533 | + } |
|
| 524 | 534 | |
| 525 | 535 | // Prepare the template. |
| 526 | 536 | prepareServerSettingsContext($config_vars); |
@@ -543,24 +553,25 @@ discard block |
||
| 543 | 553 | if (stripos(PHP_OS, 'win') === 0) |
| 544 | 554 | { |
| 545 | 555 | $context['settings_message'] = $txt['loadavg_disabled_windows']; |
| 546 | - if (isset($_GET['save'])) |
|
| 547 | - $_SESSION['adm-save'] = $txt['loadavg_disabled_windows']; |
|
| 548 | - } |
|
| 549 | - elseif (stripos(PHP_OS, 'darwin') === 0) |
|
| 556 | + if (isset($_GET['save'])) { |
|
| 557 | + $_SESSION['adm-save'] = $txt['loadavg_disabled_windows']; |
|
| 558 | + } |
|
| 559 | + } elseif (stripos(PHP_OS, 'darwin') === 0) |
|
| 550 | 560 | { |
| 551 | 561 | $context['settings_message'] = $txt['loadavg_disabled_osx']; |
| 552 | - if (isset($_GET['save'])) |
|
| 553 | - $_SESSION['adm-save'] = $txt['loadavg_disabled_osx']; |
|
| 554 | - } |
|
| 555 | - else |
|
| 562 | + if (isset($_GET['save'])) { |
|
| 563 | + $_SESSION['adm-save'] = $txt['loadavg_disabled_osx']; |
|
| 564 | + } |
|
| 565 | + } else |
|
| 556 | 566 | { |
| 557 | 567 | $modSettings['load_average'] = @file_get_contents('/proc/loadavg'); |
| 558 | - if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0) |
|
| 559 | - $modSettings['load_average'] = (float) $matches[1]; |
|
| 560 | - elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0) |
|
| 561 | - $modSettings['load_average'] = (float) $matches[1]; |
|
| 562 | - else |
|
| 563 | - unset($modSettings['load_average']); |
|
| 568 | + if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0) { |
|
| 569 | + $modSettings['load_average'] = (float) $matches[1]; |
|
| 570 | + } elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0) { |
|
| 571 | + $modSettings['load_average'] = (float) $matches[1]; |
|
| 572 | + } else { |
|
| 573 | + unset($modSettings['load_average']); |
|
| 574 | + } |
|
| 564 | 575 | |
| 565 | 576 | if (!empty($modSettings['load_average']) || $modSettings['load_average'] === 0.0) |
| 566 | 577 | { |
@@ -596,8 +607,9 @@ discard block |
||
| 596 | 607 | |
| 597 | 608 | call_integration_hook('integrate_loadavg_settings', array(&$config_vars)); |
| 598 | 609 | |
| 599 | - if ($return_config) |
|
| 600 | - return $config_vars; |
|
| 610 | + if ($return_config) { |
|
| 611 | + return $config_vars; |
|
| 612 | + } |
|
| 601 | 613 | |
| 602 | 614 | $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=loads;save'; |
| 603 | 615 | $context['settings_title'] = $txt['load_balancing_settings']; |
@@ -608,24 +620,27 @@ discard block |
||
| 608 | 620 | // Stupidity is not allowed. |
| 609 | 621 | foreach ($_POST as $key => $value) |
| 610 | 622 | { |
| 611 | - if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable' || !in_array($key, array_keys($default_values))) |
|
| 612 | - continue; |
|
| 613 | - else |
|
| 614 | - $_POST[$key] = (float) $value; |
|
| 615 | - |
|
| 616 | - if ($key == 'loadavg_auto_opt' && $value <= 1) |
|
| 617 | - $_POST['loadavg_auto_opt'] = 1.0; |
|
| 618 | - elseif ($key == 'loadavg_forum' && $value < 10) |
|
| 619 | - $_POST['loadavg_forum'] = 10.0; |
|
| 620 | - elseif ($value < 2) |
|
| 621 | - $_POST[$key] = 2.0; |
|
| 623 | + if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable' || !in_array($key, array_keys($default_values))) { |
|
| 624 | + continue; |
|
| 625 | + } else { |
|
| 626 | + $_POST[$key] = (float) $value; |
|
| 627 | + } |
|
| 628 | + |
|
| 629 | + if ($key == 'loadavg_auto_opt' && $value <= 1) { |
|
| 630 | + $_POST['loadavg_auto_opt'] = 1.0; |
|
| 631 | + } elseif ($key == 'loadavg_forum' && $value < 10) { |
|
| 632 | + $_POST['loadavg_forum'] = 10.0; |
|
| 633 | + } elseif ($value < 2) { |
|
| 634 | + $_POST[$key] = 2.0; |
|
| 635 | + } |
|
| 622 | 636 | } |
| 623 | 637 | |
| 624 | 638 | call_integration_hook('integrate_save_loadavg_settings'); |
| 625 | 639 | |
| 626 | 640 | saveDBSettings($config_vars); |
| 627 | - if (!isset($_SESSION['adm-save'])) |
|
| 628 | - $_SESSION['adm-save'] = true; |
|
| 641 | + if (!isset($_SESSION['adm-save'])) { |
|
| 642 | + $_SESSION['adm-save'] = true; |
|
| 643 | + } |
|
| 629 | 644 | redirectexit('action=admin;area=serversettings;sa=loads;' . $context['session_var'] . '=' . $context['session_id']); |
| 630 | 645 | } |
| 631 | 646 | |
@@ -661,10 +676,11 @@ discard block |
||
| 661 | 676 | |
| 662 | 677 | if (isset($_SESSION['adm-save'])) |
| 663 | 678 | { |
| 664 | - if ($_SESSION['adm-save'] === true) |
|
| 665 | - $context['saved_successful'] = true; |
|
| 666 | - else |
|
| 667 | - $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 679 | + if ($_SESSION['adm-save'] === true) { |
|
| 680 | + $context['saved_successful'] = true; |
|
| 681 | + } else { |
|
| 682 | + $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 683 | + } |
|
| 668 | 684 | |
| 669 | 685 | unset($_SESSION['adm-save']); |
| 670 | 686 | } |
@@ -672,9 +688,9 @@ discard block |
||
| 672 | 688 | $context['config_vars'] = array(); |
| 673 | 689 | foreach ($config_vars as $identifier => $config_var) |
| 674 | 690 | { |
| 675 | - if (!is_array($config_var) || !isset($config_var[1])) |
|
| 676 | - $context['config_vars'][] = $config_var; |
|
| 677 | - else |
|
| 691 | + if (!is_array($config_var) || !isset($config_var[1])) { |
|
| 692 | + $context['config_vars'][] = $config_var; |
|
| 693 | + } else |
|
| 678 | 694 | { |
| 679 | 695 | $varname = $config_var[0]; |
| 680 | 696 | global $$varname; |
@@ -709,16 +725,19 @@ discard block |
||
| 709 | 725 | if ($config_var[3] == 'int' || $config_var[3] == 'float') |
| 710 | 726 | { |
| 711 | 727 | // Default to a min of 0 if one isn't set |
| 712 | - if (isset($config_var['min'])) |
|
| 713 | - $context['config_vars'][$config_var[0]]['min'] = $config_var['min']; |
|
| 714 | - else |
|
| 715 | - $context['config_vars'][$config_var[0]]['min'] = 0; |
|
| 728 | + if (isset($config_var['min'])) { |
|
| 729 | + $context['config_vars'][$config_var[0]]['min'] = $config_var['min']; |
|
| 730 | + } else { |
|
| 731 | + $context['config_vars'][$config_var[0]]['min'] = 0; |
|
| 732 | + } |
|
| 716 | 733 | |
| 717 | - if (isset($config_var['max'])) |
|
| 718 | - $context['config_vars'][$config_var[0]]['max'] = $config_var['max']; |
|
| 734 | + if (isset($config_var['max'])) { |
|
| 735 | + $context['config_vars'][$config_var[0]]['max'] = $config_var['max']; |
|
| 736 | + } |
|
| 719 | 737 | |
| 720 | - if (isset($config_var['step'])) |
|
| 721 | - $context['config_vars'][$config_var[0]]['step'] = $config_var['step']; |
|
| 738 | + if (isset($config_var['step'])) { |
|
| 739 | + $context['config_vars'][$config_var[0]]['step'] = $config_var['step']; |
|
| 740 | + } |
|
| 722 | 741 | } |
| 723 | 742 | |
| 724 | 743 | // If this is a select box handle any data. |
@@ -726,12 +745,13 @@ discard block |
||
| 726 | 745 | { |
| 727 | 746 | // If it's associative |
| 728 | 747 | $config_values = array_values($config_var[4]); |
| 729 | - if (isset($config_values[0]) && is_array($config_values[0])) |
|
| 730 | - $context['config_vars'][$config_var[0]]['data'] = $config_var[4]; |
|
| 731 | - else |
|
| 748 | + if (isset($config_values[0]) && is_array($config_values[0])) { |
|
| 749 | + $context['config_vars'][$config_var[0]]['data'] = $config_var[4]; |
|
| 750 | + } else |
|
| 732 | 751 | { |
| 733 | - foreach ($config_var[4] as $key => $item) |
|
| 734 | - $context['config_vars'][$config_var[0]]['data'][] = array($key, $item); |
|
| 752 | + foreach ($config_var[4] as $key => $item) { |
|
| 753 | + $context['config_vars'][$config_var[0]]['data'][] = array($key, $item); |
|
| 754 | + } |
|
| 735 | 755 | } |
| 736 | 756 | } |
| 737 | 757 | } |
@@ -756,10 +776,11 @@ discard block |
||
| 756 | 776 | |
| 757 | 777 | if (isset($_SESSION['adm-save'])) |
| 758 | 778 | { |
| 759 | - if ($_SESSION['adm-save'] === true) |
|
| 760 | - $context['saved_successful'] = true; |
|
| 761 | - else |
|
| 762 | - $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 779 | + if ($_SESSION['adm-save'] === true) { |
|
| 780 | + $context['saved_successful'] = true; |
|
| 781 | + } else { |
|
| 782 | + $context['saved_failed'] = $_SESSION['adm-save']; |
|
| 783 | + } |
|
| 763 | 784 | |
| 764 | 785 | unset($_SESSION['adm-save']); |
| 765 | 786 | } |
@@ -771,26 +792,30 @@ discard block |
||
| 771 | 792 | foreach ($config_vars as $config_var) |
| 772 | 793 | { |
| 773 | 794 | // HR? |
| 774 | - if (!is_array($config_var)) |
|
| 775 | - $context['config_vars'][] = $config_var; |
|
| 776 | - else |
|
| 795 | + if (!is_array($config_var)) { |
|
| 796 | + $context['config_vars'][] = $config_var; |
|
| 797 | + } else |
|
| 777 | 798 | { |
| 778 | 799 | // If it has no name it doesn't have any purpose! |
| 779 | - if (empty($config_var[1])) |
|
| 780 | - continue; |
|
| 800 | + if (empty($config_var[1])) { |
|
| 801 | + continue; |
|
| 802 | + } |
|
| 781 | 803 | |
| 782 | 804 | // Special case for inline permissions |
| 783 | - if ($config_var[0] == 'permissions' && allowedTo('manage_permissions')) |
|
| 784 | - $inlinePermissions[] = $config_var[1]; |
|
| 785 | - elseif ($config_var[0] == 'permissions') |
|
| 786 | - continue; |
|
| 805 | + if ($config_var[0] == 'permissions' && allowedTo('manage_permissions')) { |
|
| 806 | + $inlinePermissions[] = $config_var[1]; |
|
| 807 | + } elseif ($config_var[0] == 'permissions') { |
|
| 808 | + continue; |
|
| 809 | + } |
|
| 787 | 810 | |
| 788 | - if ($config_var[0] == 'boards') |
|
| 789 | - $board_list = true; |
|
| 811 | + if ($config_var[0] == 'boards') { |
|
| 812 | + $board_list = true; |
|
| 813 | + } |
|
| 790 | 814 | |
| 791 | 815 | // Are we showing the BBC selection box? |
| 792 | - if ($config_var[0] == 'bbc') |
|
| 793 | - $bbcChoice[] = $config_var[1]; |
|
| 816 | + if ($config_var[0] == 'bbc') { |
|
| 817 | + $bbcChoice[] = $config_var[1]; |
|
| 818 | + } |
|
| 794 | 819 | |
| 795 | 820 | // We need to do some parsing of the value before we pass it in. |
| 796 | 821 | if (isset($modSettings[$config_var[1]])) |
@@ -809,8 +834,7 @@ discard block |
||
| 809 | 834 | default: |
| 810 | 835 | $value = $smcFunc['htmlspecialchars']($modSettings[$config_var[1]]); |
| 811 | 836 | } |
| 812 | - } |
|
| 813 | - else |
|
| 837 | + } else |
|
| 814 | 838 | { |
| 815 | 839 | // Darn, it's empty. What type is expected? |
| 816 | 840 | switch ($config_var[0]) |
@@ -850,16 +874,19 @@ discard block |
||
| 850 | 874 | if ($config_var[0] == 'int' || $config_var[0] == 'float') |
| 851 | 875 | { |
| 852 | 876 | // Default to a min of 0 if one isn't set |
| 853 | - if (isset($config_var['min'])) |
|
| 854 | - $context['config_vars'][$config_var[1]]['min'] = $config_var['min']; |
|
| 855 | - else |
|
| 856 | - $context['config_vars'][$config_var[1]]['min'] = 0; |
|
| 877 | + if (isset($config_var['min'])) { |
|
| 878 | + $context['config_vars'][$config_var[1]]['min'] = $config_var['min']; |
|
| 879 | + } else { |
|
| 880 | + $context['config_vars'][$config_var[1]]['min'] = 0; |
|
| 881 | + } |
|
| 857 | 882 | |
| 858 | - if (isset($config_var['max'])) |
|
| 859 | - $context['config_vars'][$config_var[1]]['max'] = $config_var['max']; |
|
| 883 | + if (isset($config_var['max'])) { |
|
| 884 | + $context['config_vars'][$config_var[1]]['max'] = $config_var['max']; |
|
| 885 | + } |
|
| 860 | 886 | |
| 861 | - if (isset($config_var['step'])) |
|
| 862 | - $context['config_vars'][$config_var[1]]['step'] = $config_var['step']; |
|
| 887 | + if (isset($config_var['step'])) { |
|
| 888 | + $context['config_vars'][$config_var[1]]['step'] = $config_var['step']; |
|
| 889 | + } |
|
| 863 | 890 | } |
| 864 | 891 | |
| 865 | 892 | // If this is a select box handle any data. |
@@ -873,12 +900,13 @@ discard block |
||
| 873 | 900 | } |
| 874 | 901 | |
| 875 | 902 | // If it's associative |
| 876 | - if (isset($config_var[2][0]) && is_array($config_var[2][0])) |
|
| 877 | - $context['config_vars'][$config_var[1]]['data'] = $config_var[2]; |
|
| 878 | - else |
|
| 903 | + if (isset($config_var[2][0]) && is_array($config_var[2][0])) { |
|
| 904 | + $context['config_vars'][$config_var[1]]['data'] = $config_var[2]; |
|
| 905 | + } else |
|
| 879 | 906 | { |
| 880 | - foreach ($config_var[2] as $key => $item) |
|
| 881 | - $context['config_vars'][$config_var[1]]['data'][] = array($key, $item); |
|
| 907 | + foreach ($config_var[2] as $key => $item) { |
|
| 908 | + $context['config_vars'][$config_var[1]]['data'][] = array($key, $item); |
|
| 909 | + } |
|
| 882 | 910 | } |
| 883 | 911 | } |
| 884 | 912 | |
@@ -887,17 +915,19 @@ discard block |
||
| 887 | 915 | { |
| 888 | 916 | if (!is_numeric($k)) |
| 889 | 917 | { |
| 890 | - if (substr($k, 0, 2) == 'on') |
|
| 891 | - $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"'; |
|
| 892 | - else |
|
| 893 | - $context['config_vars'][$config_var[1]][$k] = $v; |
|
| 918 | + if (substr($k, 0, 2) == 'on') { |
|
| 919 | + $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"'; |
|
| 920 | + } else { |
|
| 921 | + $context['config_vars'][$config_var[1]][$k] = $v; |
|
| 922 | + } |
|
| 894 | 923 | } |
| 895 | 924 | |
| 896 | 925 | // See if there are any other labels that might fit? |
| 897 | - if (isset($txt['setting_' . $config_var[1]])) |
|
| 898 | - $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]]; |
|
| 899 | - elseif (isset($txt['groups_' . $config_var[1]])) |
|
| 900 | - $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]]; |
|
| 926 | + if (isset($txt['setting_' . $config_var[1]])) { |
|
| 927 | + $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]]; |
|
| 928 | + } elseif (isset($txt['groups_' . $config_var[1]])) { |
|
| 929 | + $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]]; |
|
| 930 | + } |
|
| 901 | 931 | } |
| 902 | 932 | |
| 903 | 933 | // Set the subtext in case it's part of the label. |
@@ -930,8 +960,9 @@ discard block |
||
| 930 | 960 | // What are the options, eh? |
| 931 | 961 | $temp = parse_bbc(false); |
| 932 | 962 | $bbcTags = array(); |
| 933 | - foreach ($temp as $tag) |
|
| 934 | - $bbcTags[] = $tag['tag']; |
|
| 963 | + foreach ($temp as $tag) { |
|
| 964 | + $bbcTags[] = $tag['tag']; |
|
| 965 | + } |
|
| 935 | 966 | |
| 936 | 967 | $bbcTags = array_unique($bbcTags); |
| 937 | 968 | $totalTags = count($bbcTags); |
@@ -946,8 +977,9 @@ discard block |
||
| 946 | 977 | $col = 0; $i = 0; |
| 947 | 978 | foreach ($bbcTags as $tag) |
| 948 | 979 | { |
| 949 | - if ($i % $tagsPerColumn == 0 && $i != 0) |
|
| 950 | - $col++; |
|
| 980 | + if ($i % $tagsPerColumn == 0 && $i != 0) { |
|
| 981 | + $col++; |
|
| 982 | + } |
|
| 951 | 983 | |
| 952 | 984 | $context['bbc_columns'][$col][] = array( |
| 953 | 985 | 'tag' => $tag, |
@@ -990,18 +1022,21 @@ discard block |
||
| 990 | 1022 | validateToken('admin-ssc'); |
| 991 | 1023 | |
| 992 | 1024 | // Fix the darn stupid cookiename! (more may not be allowed, but these for sure!) |
| 993 | - if (isset($_POST['cookiename'])) |
|
| 994 | - $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']); |
|
| 1025 | + if (isset($_POST['cookiename'])) { |
|
| 1026 | + $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']); |
|
| 1027 | + } |
|
| 995 | 1028 | |
| 996 | 1029 | // Fix the forum's URL if necessary. |
| 997 | 1030 | if (isset($_POST['boardurl'])) |
| 998 | 1031 | { |
| 999 | - if (substr($_POST['boardurl'], -10) == '/index.php') |
|
| 1000 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
| 1001 | - elseif (substr($_POST['boardurl'], -1) == '/') |
|
| 1002 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
| 1003 | - if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') |
|
| 1004 | - $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
| 1032 | + if (substr($_POST['boardurl'], -10) == '/index.php') { |
|
| 1033 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
| 1034 | + } elseif (substr($_POST['boardurl'], -1) == '/') { |
|
| 1035 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
| 1036 | + } |
|
| 1037 | + if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') { |
|
| 1038 | + $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
| 1039 | + } |
|
| 1005 | 1040 | } |
| 1006 | 1041 | |
| 1007 | 1042 | // Any passwords? |
@@ -1036,21 +1071,21 @@ discard block |
||
| 1036 | 1071 | // Figure out which config vars we're saving here... |
| 1037 | 1072 | foreach ($config_vars as $var) |
| 1038 | 1073 | { |
| 1039 | - if (!is_array($var) || $var[2] != 'file' || (!in_array($var[0], $config_bools) && !isset($_POST[$var[0]]))) |
|
| 1040 | - continue; |
|
| 1074 | + if (!is_array($var) || $var[2] != 'file' || (!in_array($var[0], $config_bools) && !isset($_POST[$var[0]]))) { |
|
| 1075 | + continue; |
|
| 1076 | + } |
|
| 1041 | 1077 | |
| 1042 | 1078 | $config_var = $var[0]; |
| 1043 | 1079 | |
| 1044 | 1080 | if (in_array($config_var, $config_passwords)) |
| 1045 | 1081 | { |
| 1046 | - if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1]) |
|
| 1047 | - $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\''; |
|
| 1048 | - } |
|
| 1049 | - elseif (in_array($config_var, $config_strs)) |
|
| 1082 | + if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1]) { |
|
| 1083 | + $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\''; |
|
| 1084 | + } |
|
| 1085 | + } elseif (in_array($config_var, $config_strs)) |
|
| 1050 | 1086 | { |
| 1051 | 1087 | $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var], '\'\\') . '\''; |
| 1052 | - } |
|
| 1053 | - elseif (in_array($config_var, $config_ints)) |
|
| 1088 | + } elseif (in_array($config_var, $config_ints)) |
|
| 1054 | 1089 | { |
| 1055 | 1090 | $new_settings[$config_var] = (int) $_POST[$config_var]; |
| 1056 | 1091 | |
@@ -1059,17 +1094,17 @@ discard block |
||
| 1059 | 1094 | $new_settings[$config_var] = max($min, $new_settings[$config_var]); |
| 1060 | 1095 | |
| 1061 | 1096 | // Is there a max value for this as well? |
| 1062 | - if (isset($var['max'])) |
|
| 1063 | - $new_settings[$config_var] = min($var['max'], $new_settings[$config_var]); |
|
| 1064 | - } |
|
| 1065 | - elseif (in_array($config_var, $config_bools)) |
|
| 1097 | + if (isset($var['max'])) { |
|
| 1098 | + $new_settings[$config_var] = min($var['max'], $new_settings[$config_var]); |
|
| 1099 | + } |
|
| 1100 | + } elseif (in_array($config_var, $config_bools)) |
|
| 1066 | 1101 | { |
| 1067 | - if (!empty($_POST[$config_var])) |
|
| 1068 | - $new_settings[$config_var] = '1'; |
|
| 1069 | - else |
|
| 1070 | - $new_settings[$config_var] = '0'; |
|
| 1071 | - } |
|
| 1072 | - else |
|
| 1102 | + if (!empty($_POST[$config_var])) { |
|
| 1103 | + $new_settings[$config_var] = '1'; |
|
| 1104 | + } else { |
|
| 1105 | + $new_settings[$config_var] = '0'; |
|
| 1106 | + } |
|
| 1107 | + } else |
|
| 1073 | 1108 | { |
| 1074 | 1109 | // This shouldn't happen, but it might... |
| 1075 | 1110 | fatal_error('Unknown config_var \'' . $config_var . '\''); |
@@ -1085,30 +1120,35 @@ discard block |
||
| 1085 | 1120 | foreach ($config_vars as $config_var) |
| 1086 | 1121 | { |
| 1087 | 1122 | // We just saved the file-based settings, so skip their definitions. |
| 1088 | - if (!is_array($config_var) || $config_var[2] == 'file') |
|
| 1089 | - continue; |
|
| 1123 | + if (!is_array($config_var) || $config_var[2] == 'file') { |
|
| 1124 | + continue; |
|
| 1125 | + } |
|
| 1090 | 1126 | |
| 1091 | 1127 | $new_setting = array($config_var[3], $config_var[0]); |
| 1092 | 1128 | |
| 1093 | 1129 | // Select options need carried over, too. |
| 1094 | - if (isset($config_var[4])) |
|
| 1095 | - $new_setting[] = $config_var[4]; |
|
| 1130 | + if (isset($config_var[4])) { |
|
| 1131 | + $new_setting[] = $config_var[4]; |
|
| 1132 | + } |
|
| 1096 | 1133 | |
| 1097 | 1134 | // Include min and max if necessary |
| 1098 | - if (isset($config_var['min'])) |
|
| 1099 | - $new_setting['min'] = $config_var['min']; |
|
| 1135 | + if (isset($config_var['min'])) { |
|
| 1136 | + $new_setting['min'] = $config_var['min']; |
|
| 1137 | + } |
|
| 1100 | 1138 | |
| 1101 | - if (isset($config_var['max'])) |
|
| 1102 | - $new_setting['max'] = $config_var['max']; |
|
| 1139 | + if (isset($config_var['max'])) { |
|
| 1140 | + $new_setting['max'] = $config_var['max']; |
|
| 1141 | + } |
|
| 1103 | 1142 | |
| 1104 | 1143 | // Rewrite the definition a bit. |
| 1105 | 1144 | $new_settings[] = $new_setting; |
| 1106 | 1145 | } |
| 1107 | 1146 | |
| 1108 | 1147 | // Save the new database-based settings, if any. |
| 1109 | - if (!empty($new_settings)) |
|
| 1110 | - saveDBSettings($new_settings); |
|
| 1111 | -} |
|
| 1148 | + if (!empty($new_settings)) { |
|
| 1149 | + saveDBSettings($new_settings); |
|
| 1150 | + } |
|
| 1151 | + } |
|
| 1112 | 1152 | |
| 1113 | 1153 | /** |
| 1114 | 1154 | * Helper function for saving database settings. |
@@ -1126,22 +1166,25 @@ discard block |
||
| 1126 | 1166 | $inlinePermissions = array(); |
| 1127 | 1167 | foreach ($config_vars as $var) |
| 1128 | 1168 | { |
| 1129 | - 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'])))) |
|
| 1130 | - continue; |
|
| 1169 | + 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'])))) { |
|
| 1170 | + continue; |
|
| 1171 | + } |
|
| 1131 | 1172 | |
| 1132 | 1173 | // Checkboxes! |
| 1133 | - elseif ($var[0] == 'check') |
|
| 1134 | - $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0'; |
|
| 1174 | + elseif ($var[0] == 'check') { |
|
| 1175 | + $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0'; |
|
| 1176 | + } |
|
| 1135 | 1177 | // Select boxes! |
| 1136 | - elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2]))) |
|
| 1137 | - $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1138 | - elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array()) |
|
| 1178 | + elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2]))) { |
|
| 1179 | + $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1180 | + } elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array()) |
|
| 1139 | 1181 | { |
| 1140 | 1182 | // For security purposes we validate this line by line. |
| 1141 | 1183 | $lOptions = array(); |
| 1142 | - foreach ($_POST[$var[1]] as $invar) |
|
| 1143 | - if (in_array($invar, array_keys($var[2]))) |
|
| 1184 | + foreach ($_POST[$var[1]] as $invar) { |
|
| 1185 | + if (in_array($invar, array_keys($var[2]))) |
|
| 1144 | 1186 | $lOptions[] = $invar; |
| 1187 | + } |
|
| 1145 | 1188 | |
| 1146 | 1189 | $setArray[$var[1]] = json_encode($lOptions); |
| 1147 | 1190 | } |
@@ -1155,18 +1198,20 @@ discard block |
||
| 1155 | 1198 | $request = $smcFunc['db_query']('', ' |
| 1156 | 1199 | SELECT id_board |
| 1157 | 1200 | FROM {db_prefix}boards'); |
| 1158 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 1159 | - $board_list[$row[0]] = true; |
|
| 1201 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 1202 | + $board_list[$row[0]] = true; |
|
| 1203 | + } |
|
| 1160 | 1204 | |
| 1161 | 1205 | $smcFunc['db_free_result']($request); |
| 1162 | 1206 | } |
| 1163 | 1207 | |
| 1164 | 1208 | $lOptions = array(); |
| 1165 | 1209 | |
| 1166 | - if (!empty($_POST[$var[1]])) |
|
| 1167 | - foreach ($_POST[$var[1]] as $invar => $dummy) |
|
| 1210 | + if (!empty($_POST[$var[1]])) { |
|
| 1211 | + foreach ($_POST[$var[1]] as $invar => $dummy) |
|
| 1168 | 1212 | if (isset($board_list[$invar])) |
| 1169 | 1213 | $lOptions[] = $invar; |
| 1214 | + } |
|
| 1170 | 1215 | |
| 1171 | 1216 | $setArray[$var[1]] = !empty($lOptions) ? implode(',', $lOptions) : ''; |
| 1172 | 1217 | } |
@@ -1180,8 +1225,9 @@ discard block |
||
| 1180 | 1225 | $setArray[$var[1]] = max($min, $setArray[$var[1]]); |
| 1181 | 1226 | |
| 1182 | 1227 | // Do we have a max value for this as well? |
| 1183 | - if (isset($var['max'])) |
|
| 1184 | - $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1228 | + if (isset($var['max'])) { |
|
| 1229 | + $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1230 | + } |
|
| 1185 | 1231 | } |
| 1186 | 1232 | // Floating point! |
| 1187 | 1233 | elseif ($var[0] == 'float') |
@@ -1193,40 +1239,47 @@ discard block |
||
| 1193 | 1239 | $setArray[$var[1]] = max($min, $setArray[$var[1]]); |
| 1194 | 1240 | |
| 1195 | 1241 | // Do we have a max value for this as well? |
| 1196 | - if (isset($var['max'])) |
|
| 1197 | - $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1242 | + if (isset($var['max'])) { |
|
| 1243 | + $setArray[$var[1]] = min($var['max'], $setArray[$var[1]]); |
|
| 1244 | + } |
|
| 1198 | 1245 | } |
| 1199 | 1246 | // Text! |
| 1200 | - elseif (in_array($var[0], array('text', 'large_text', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'time'))) |
|
| 1201 | - $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1247 | + elseif (in_array($var[0], array('text', 'large_text', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'time'))) { |
|
| 1248 | + $setArray[$var[1]] = $_POST[$var[1]]; |
|
| 1249 | + } |
|
| 1202 | 1250 | // Passwords! |
| 1203 | 1251 | elseif ($var[0] == 'password') |
| 1204 | 1252 | { |
| 1205 | - if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1]) |
|
| 1206 | - $setArray[$var[1]] = $_POST[$var[1]][0]; |
|
| 1253 | + if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1]) { |
|
| 1254 | + $setArray[$var[1]] = $_POST[$var[1]][0]; |
|
| 1255 | + } |
|
| 1207 | 1256 | } |
| 1208 | 1257 | // BBC. |
| 1209 | 1258 | elseif ($var[0] == 'bbc') |
| 1210 | 1259 | { |
| 1211 | 1260 | |
| 1212 | 1261 | $bbcTags = array(); |
| 1213 | - foreach (parse_bbc(false) as $tag) |
|
| 1214 | - $bbcTags[] = $tag['tag']; |
|
| 1262 | + foreach (parse_bbc(false) as $tag) { |
|
| 1263 | + $bbcTags[] = $tag['tag']; |
|
| 1264 | + } |
|
| 1215 | 1265 | |
| 1216 | - if (!isset($_POST[$var[1] . '_enabledTags'])) |
|
| 1217 | - $_POST[$var[1] . '_enabledTags'] = array(); |
|
| 1218 | - elseif (!is_array($_POST[$var[1] . '_enabledTags'])) |
|
| 1219 | - $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']); |
|
| 1266 | + if (!isset($_POST[$var[1] . '_enabledTags'])) { |
|
| 1267 | + $_POST[$var[1] . '_enabledTags'] = array(); |
|
| 1268 | + } elseif (!is_array($_POST[$var[1] . '_enabledTags'])) { |
|
| 1269 | + $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']); |
|
| 1270 | + } |
|
| 1220 | 1271 | |
| 1221 | 1272 | $setArray[$var[1]] = implode(',', array_diff($bbcTags, $_POST[$var[1] . '_enabledTags'])); |
| 1222 | 1273 | } |
| 1223 | 1274 | // Permissions? |
| 1224 | - elseif ($var[0] == 'permissions') |
|
| 1225 | - $inlinePermissions[] = $var[1]; |
|
| 1275 | + elseif ($var[0] == 'permissions') { |
|
| 1276 | + $inlinePermissions[] = $var[1]; |
|
| 1277 | + } |
|
| 1226 | 1278 | } |
| 1227 | 1279 | |
| 1228 | - if (!empty($setArray)) |
|
| 1229 | - updateSettings($setArray); |
|
| 1280 | + if (!empty($setArray)) { |
|
| 1281 | + updateSettings($setArray); |
|
| 1282 | + } |
|
| 1230 | 1283 | |
| 1231 | 1284 | // If we have inline permissions we need to save them. |
| 1232 | 1285 | if (!empty($inlinePermissions) && allowedTo('manage_permissions')) |
@@ -1264,18 +1317,21 @@ discard block |
||
| 1264 | 1317 | // put all of it into an array |
| 1265 | 1318 | foreach ($info_lines as $line) |
| 1266 | 1319 | { |
| 1267 | - if (preg_match('~(' . $remove . ')~', $line)) |
|
| 1268 | - continue; |
|
| 1320 | + if (preg_match('~(' . $remove . ')~', $line)) { |
|
| 1321 | + continue; |
|
| 1322 | + } |
|
| 1269 | 1323 | |
| 1270 | 1324 | // new category? |
| 1271 | - if (strpos($line, '<h2>') !== false) |
|
| 1272 | - $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category; |
|
| 1325 | + if (strpos($line, '<h2>') !== false) { |
|
| 1326 | + $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category; |
|
| 1327 | + } |
|
| 1273 | 1328 | |
| 1274 | 1329 | // load it as setting => value or the old setting local master |
| 1275 | - if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) |
|
| 1276 | - $pinfo[$category][$val[1]] = $val[2]; |
|
| 1277 | - elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) |
|
| 1278 | - $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]); |
|
| 1330 | + if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) { |
|
| 1331 | + $pinfo[$category][$val[1]] = $val[2]; |
|
| 1332 | + } elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val)) { |
|
| 1333 | + $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]); |
|
| 1334 | + } |
|
| 1279 | 1335 | } |
| 1280 | 1336 | |
| 1281 | 1337 | // load it in to context and display it |
@@ -1310,8 +1366,9 @@ discard block |
||
| 1310 | 1366 | $testAPI = new $cache_class_name(); |
| 1311 | 1367 | |
| 1312 | 1368 | // No Support? NEXT! |
| 1313 | - if (!$testAPI->isSupported(true)) |
|
| 1314 | - continue; |
|
| 1369 | + if (!$testAPI->isSupported(true)) { |
|
| 1370 | + continue; |
|
| 1371 | + } |
|
| 1315 | 1372 | |
| 1316 | 1373 | $apis[$tryCache] = isset($txt[$tryCache . '_cache']) ? $txt[$tryCache . '_cache'] : $tryCache; |
| 1317 | 1374 | } |
@@ -12,8 +12,9 @@ discard block |
||
| 12 | 12 | * @version 2.1 Beta 3 |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -if (!defined('SMF')) |
|
| 15 | +if (!defined('SMF')) { |
|
| 16 | 16 | die('No direct access...'); |
| 17 | +} |
|
| 17 | 18 | |
| 18 | 19 | /** |
| 19 | 20 | * Create a new list |
@@ -41,21 +42,21 @@ discard block |
||
| 41 | 42 | { |
| 42 | 43 | $list_context['sort'] = array(); |
| 43 | 44 | $sort = '1=1'; |
| 44 | - } |
|
| 45 | - else |
|
| 45 | + } else |
|
| 46 | 46 | { |
| 47 | 47 | $request_var_sort = isset($listOptions['request_vars']['sort']) ? $listOptions['request_vars']['sort'] : 'sort'; |
| 48 | 48 | $request_var_desc = isset($listOptions['request_vars']['desc']) ? $listOptions['request_vars']['desc'] : 'desc'; |
| 49 | - if (isset($_REQUEST[$request_var_sort], $listOptions['columns'][$_REQUEST[$request_var_sort]], $listOptions['columns'][$_REQUEST[$request_var_sort]]['sort'])) |
|
| 50 | - $list_context['sort'] = array( |
|
| 49 | + if (isset($_REQUEST[$request_var_sort], $listOptions['columns'][$_REQUEST[$request_var_sort]], $listOptions['columns'][$_REQUEST[$request_var_sort]]['sort'])) { |
|
| 50 | + $list_context['sort'] = array( |
|
| 51 | 51 | 'id' => $_REQUEST[$request_var_sort], |
| 52 | 52 | 'desc' => isset($_REQUEST[$request_var_desc]) && isset($listOptions['columns'][$_REQUEST[$request_var_sort]]['sort']['reverse']), |
| 53 | 53 | ); |
| 54 | - else |
|
| 55 | - $list_context['sort'] = array( |
|
| 54 | + } else { |
|
| 55 | + $list_context['sort'] = array( |
|
| 56 | 56 | 'id' => $listOptions['default_sort_col'], |
| 57 | 57 | 'desc' => (!empty($listOptions['default_sort_dir']) && $listOptions['default_sort_dir'] == 'desc') || (!empty($listOptions['columns'][$listOptions['default_sort_col']]['sort']['default']) && substr($listOptions['columns'][$listOptions['default_sort_col']]['sort']['default'], -4, 4) == 'desc') ? true : false, |
| 58 | 58 | ); |
| 59 | + } |
|
| 59 | 60 | |
| 60 | 61 | // Set the database column sort. |
| 61 | 62 | $sort = $listOptions['columns'][$list_context['sort']['id']]['sort'][$list_context['sort']['desc'] ? 'reverse' : 'default']; |
@@ -72,8 +73,9 @@ discard block |
||
| 72 | 73 | else |
| 73 | 74 | { |
| 74 | 75 | // First get an impression of how many items to expect. |
| 75 | - if (isset($listOptions['get_count']['file'])) |
|
| 76 | - require_once($listOptions['get_count']['file']); |
|
| 76 | + if (isset($listOptions['get_count']['file'])) { |
|
| 77 | + require_once($listOptions['get_count']['file']); |
|
| 78 | + } |
|
| 77 | 79 | |
| 78 | 80 | $call = call_helper($listOptions['get_count']['function'], true); |
| 79 | 81 | $list_context['total_num_items'] = call_user_func_array($call, empty($listOptions['get_count']['params']) ? array() : $listOptions['get_count']['params']); |
@@ -83,14 +85,15 @@ discard block |
||
| 83 | 85 | $list_context['items_per_page'] = $listOptions['items_per_page']; |
| 84 | 86 | |
| 85 | 87 | // Then create a page index. |
| 86 | - if ($list_context['total_num_items'] > $list_context['items_per_page']) |
|
| 87 | - $list_context['page_index'] = constructPageIndex($listOptions['base_href'] . (empty($list_context['sort']) ? '' : ';' . $request_var_sort . '=' . $list_context['sort']['id'] . ($list_context['sort']['desc'] ? ';' . $request_var_desc : '')) . ($list_context['start_var_name'] != 'start' ? ';' . $list_context['start_var_name'] . '=%1$d' : ''), $list_context['start'], $list_context['total_num_items'], $list_context['items_per_page'], $list_context['start_var_name'] != 'start'); |
|
| 88 | + if ($list_context['total_num_items'] > $list_context['items_per_page']) { |
|
| 89 | + $list_context['page_index'] = constructPageIndex($listOptions['base_href'] . (empty($list_context['sort']) ? '' : ';' . $request_var_sort . '=' . $list_context['sort']['id'] . ($list_context['sort']['desc'] ? ';' . $request_var_desc : '')) . ($list_context['start_var_name'] != 'start' ? ';' . $list_context['start_var_name'] . '=%1$d' : ''), $list_context['start'], $list_context['total_num_items'], $list_context['items_per_page'], $list_context['start_var_name'] != 'start'); |
|
| 90 | + } |
|
| 88 | 91 | } |
| 89 | 92 | |
| 90 | 93 | // Prepare the headers of the table. |
| 91 | 94 | $list_context['headers'] = array(); |
| 92 | - foreach ($listOptions['columns'] as $column_id => $column) |
|
| 93 | - $list_context['headers'][] = array( |
|
| 95 | + foreach ($listOptions['columns'] as $column_id => $column) { |
|
| 96 | + $list_context['headers'][] = array( |
|
| 94 | 97 | 'id' => $column_id, |
| 95 | 98 | 'label' => isset($column['header']['eval']) ? eval($column['header']['eval']) : (isset($column['header']['value']) ? $column['header']['value'] : ''), |
| 96 | 99 | 'href' => empty($listOptions['default_sort_col']) || empty($column['sort']) ? '' : $listOptions['base_href'] . ';' . $request_var_sort . '=' . $column_id . ($column_id === $list_context['sort']['id'] && !$list_context['sort']['desc'] && isset($column['sort']['reverse']) ? ';' . $request_var_desc : '') . (empty($list_context['start']) ? '' : ';' . $list_context['start_var_name'] . '=' . $list_context['start']), |
@@ -99,14 +102,16 @@ discard block |
||
| 99 | 102 | 'style' => isset($column['header']['style']) ? $column['header']['style'] : '', |
| 100 | 103 | 'colspan' => isset($column['header']['colspan']) ? $column['header']['colspan'] : '', |
| 101 | 104 | ); |
| 105 | + } |
|
| 102 | 106 | |
| 103 | 107 | // We know the amount of columns, might be useful for the template. |
| 104 | 108 | $list_context['num_columns'] = count($listOptions['columns']); |
| 105 | 109 | $list_context['width'] = isset($listOptions['width']) ? $listOptions['width'] : '0'; |
| 106 | 110 | |
| 107 | 111 | // Get the file with the function for the item list. |
| 108 | - if (isset($listOptions['get_items']['file'])) |
|
| 109 | - require_once($listOptions['get_items']['file']); |
|
| 112 | + if (isset($listOptions['get_items']['file'])) { |
|
| 113 | + require_once($listOptions['get_items']['file']); |
|
| 114 | + } |
|
| 110 | 115 | |
| 111 | 116 | // Call the function and include which items we want and in what order. |
| 112 | 117 | $call = call_helper($listOptions['get_items']['function'], true); |
@@ -123,51 +128,61 @@ discard block |
||
| 123 | 128 | $cur_data = array(); |
| 124 | 129 | |
| 125 | 130 | // A value straight from the database? |
| 126 | - if (isset($column['data']['db'])) |
|
| 127 | - $cur_data['value'] = $list_item[$column['data']['db']]; |
|
| 131 | + if (isset($column['data']['db'])) { |
|
| 132 | + $cur_data['value'] = $list_item[$column['data']['db']]; |
|
| 133 | + } |
|
| 128 | 134 | |
| 129 | 135 | // Take the value from the database and make it HTML safe. |
| 130 | - elseif (isset($column['data']['db_htmlsafe'])) |
|
| 131 | - $cur_data['value'] = $smcFunc['htmlspecialchars']($list_item[$column['data']['db_htmlsafe']]); |
|
| 136 | + elseif (isset($column['data']['db_htmlsafe'])) { |
|
| 137 | + $cur_data['value'] = $smcFunc['htmlspecialchars']($list_item[$column['data']['db_htmlsafe']]); |
|
| 138 | + } |
|
| 132 | 139 | |
| 133 | 140 | // Using sprintf is probably the most readable way of injecting data. |
| 134 | 141 | elseif (isset($column['data']['sprintf'])) |
| 135 | 142 | { |
| 136 | 143 | $params = array(); |
| 137 | - foreach ($column['data']['sprintf']['params'] as $sprintf_param => $htmlsafe) |
|
| 138 | - $params[] = $htmlsafe ? $smcFunc['htmlspecialchars']($list_item[$sprintf_param]) : $list_item[$sprintf_param]; |
|
| 144 | + foreach ($column['data']['sprintf']['params'] as $sprintf_param => $htmlsafe) { |
|
| 145 | + $params[] = $htmlsafe ? $smcFunc['htmlspecialchars']($list_item[$sprintf_param]) : $list_item[$sprintf_param]; |
|
| 146 | + } |
|
| 139 | 147 | $cur_data['value'] = vsprintf($column['data']['sprintf']['format'], $params); |
| 140 | 148 | } |
| 141 | 149 | |
| 142 | 150 | // The most flexible way probably is applying a custom function. |
| 143 | - elseif (isset($column['data']['function'])) |
|
| 144 | - $cur_data['value'] = call_user_func_array($column['data']['function'], array($list_item)); |
|
| 151 | + elseif (isset($column['data']['function'])) { |
|
| 152 | + $cur_data['value'] = call_user_func_array($column['data']['function'], array($list_item)); |
|
| 153 | + } |
|
| 145 | 154 | |
| 146 | 155 | // A modified value (inject the database values). |
| 147 | - elseif (isset($column['data']['eval'])) |
|
| 148 | - $cur_data['value'] = eval(preg_replace('~%([a-zA-Z0-9\-_]+)%~', '$list_item[\'$1\']', $column['data']['eval'])); |
|
| 156 | + elseif (isset($column['data']['eval'])) { |
|
| 157 | + $cur_data['value'] = eval(preg_replace('~%([a-zA-Z0-9\-_]+)%~', '$list_item[\'$1\']', $column['data']['eval'])); |
|
| 158 | + } |
|
| 149 | 159 | |
| 150 | 160 | // A literal value. |
| 151 | - elseif (isset($column['data']['value'])) |
|
| 152 | - $cur_data['value'] = $column['data']['value']; |
|
| 161 | + elseif (isset($column['data']['value'])) { |
|
| 162 | + $cur_data['value'] = $column['data']['value']; |
|
| 163 | + } |
|
| 153 | 164 | |
| 154 | 165 | // Empty value. |
| 155 | - else |
|
| 156 | - $cur_data['value'] = ''; |
|
| 166 | + else { |
|
| 167 | + $cur_data['value'] = ''; |
|
| 168 | + } |
|
| 157 | 169 | |
| 158 | 170 | // Allow for basic formatting. |
| 159 | - if (!empty($column['data']['comma_format'])) |
|
| 160 | - $cur_data['value'] = comma_format($cur_data['value']); |
|
| 161 | - elseif (!empty($column['data']['timeformat'])) |
|
| 162 | - $cur_data['value'] = timeformat($cur_data['value']); |
|
| 171 | + if (!empty($column['data']['comma_format'])) { |
|
| 172 | + $cur_data['value'] = comma_format($cur_data['value']); |
|
| 173 | + } elseif (!empty($column['data']['timeformat'])) { |
|
| 174 | + $cur_data['value'] = timeformat($cur_data['value']); |
|
| 175 | + } |
|
| 163 | 176 | |
| 164 | 177 | // Set a style class for this column? |
| 165 | - if (isset($column['data']['class'])) |
|
| 166 | - $cur_data['class'] = $column['data']['class']; |
|
| 178 | + if (isset($column['data']['class'])) { |
|
| 179 | + $cur_data['class'] = $column['data']['class']; |
|
| 180 | + } |
|
| 167 | 181 | |
| 168 | 182 | // Fully customized styling for the cells in this column only. |
| 169 | - if (isset($column['data']['style'])) |
|
| 170 | - $cur_data['style'] = $column['data']['style']; |
|
| 183 | + if (isset($column['data']['style'])) { |
|
| 184 | + $cur_data['style'] = $column['data']['style']; |
|
| 185 | + } |
|
| 171 | 186 | |
| 172 | 187 | // Add the data cell properties to the current row. |
| 173 | 188 | $cur_row[$column_id] = $cur_data; |
@@ -176,10 +191,12 @@ discard block |
||
| 176 | 191 | // Maybe we wat set a custom class for the row based on the data in the row itself |
| 177 | 192 | if (isset($listOptions['data_check'])) |
| 178 | 193 | { |
| 179 | - if (isset($listOptions['data_check']['class'])) |
|
| 180 | - $list_context['rows'][$item_id]['class'] = $listOptions['data_check']['class']($list_item); |
|
| 181 | - if (isset($listOptions['data_check']['style'])) |
|
| 182 | - $list_context['rows'][$item_id]['style'] = $listOptions['data_check']['style']($list_item); |
|
| 194 | + if (isset($listOptions['data_check']['class'])) { |
|
| 195 | + $list_context['rows'][$item_id]['class'] = $listOptions['data_check']['class']($list_item); |
|
| 196 | + } |
|
| 197 | + if (isset($listOptions['data_check']['style'])) { |
|
| 198 | + $list_context['rows'][$item_id]['style'] = $listOptions['data_check']['style']($list_item); |
|
| 199 | + } |
|
| 183 | 200 | } |
| 184 | 201 | |
| 185 | 202 | // Insert the row into the list. |
@@ -187,34 +204,39 @@ discard block |
||
| 187 | 204 | } |
| 188 | 205 | |
| 189 | 206 | // The title is currently optional. |
| 190 | - if (isset($listOptions['title'])) |
|
| 191 | - $list_context['title'] = $listOptions['title']; |
|
| 207 | + if (isset($listOptions['title'])) { |
|
| 208 | + $list_context['title'] = $listOptions['title']; |
|
| 209 | + } |
|
| 192 | 210 | |
| 193 | 211 | // In case there's a form, share it with the template context. |
| 194 | 212 | if (isset($listOptions['form'])) |
| 195 | 213 | { |
| 196 | 214 | $list_context['form'] = $listOptions['form']; |
| 197 | 215 | |
| 198 | - if (!isset($list_context['form']['hidden_fields'])) |
|
| 199 | - $list_context['form']['hidden_fields'] = array(); |
|
| 216 | + if (!isset($list_context['form']['hidden_fields'])) { |
|
| 217 | + $list_context['form']['hidden_fields'] = array(); |
|
| 218 | + } |
|
| 200 | 219 | |
| 201 | 220 | // Always add a session check field. |
| 202 | 221 | $list_context['form']['hidden_fields'][$context['session_var']] = $context['session_id']; |
| 203 | 222 | |
| 204 | 223 | // Will this do a token check? |
| 205 | - if (isset($listOptions['form']['token'])) |
|
| 206 | - $list_context['form']['hidden_fields'][$context[$listOptions['form']['token'] . '_token_var']] = $context[$listOptions['form']['token'] . '_token']; |
|
| 224 | + if (isset($listOptions['form']['token'])) { |
|
| 225 | + $list_context['form']['hidden_fields'][$context[$listOptions['form']['token'] . '_token_var']] = $context[$listOptions['form']['token'] . '_token']; |
|
| 226 | + } |
|
| 207 | 227 | |
| 208 | 228 | // Include the starting page as hidden field? |
| 209 | - if (!empty($list_context['form']['include_start']) && !empty($list_context['start'])) |
|
| 210 | - $list_context['form']['hidden_fields'][$list_context['start_var_name']] = $list_context['start']; |
|
| 229 | + if (!empty($list_context['form']['include_start']) && !empty($list_context['start'])) { |
|
| 230 | + $list_context['form']['hidden_fields'][$list_context['start_var_name']] = $list_context['start']; |
|
| 231 | + } |
|
| 211 | 232 | |
| 212 | 233 | // If sorting needs to be the same after submitting, add the parameter. |
| 213 | 234 | if (!empty($list_context['form']['include_sort']) && !empty($list_context['sort'])) |
| 214 | 235 | { |
| 215 | 236 | $list_context['form']['hidden_fields']['sort'] = $list_context['sort']['id']; |
| 216 | - if ($list_context['sort']['desc']) |
|
| 217 | - $list_context['form']['hidden_fields']['desc'] = 1; |
|
| 237 | + if ($list_context['sort']['desc']) { |
|
| 238 | + $list_context['form']['hidden_fields']['desc'] = 1; |
|
| 239 | + } |
|
| 218 | 240 | } |
| 219 | 241 | } |
| 220 | 242 | |
@@ -231,24 +253,28 @@ discard block |
||
| 231 | 253 | $list_context['additional_rows'] = array(); |
| 232 | 254 | foreach ($listOptions['additional_rows'] as $row) |
| 233 | 255 | { |
| 234 | - if (empty($row)) |
|
| 235 | - continue; |
|
| 256 | + if (empty($row)) { |
|
| 257 | + continue; |
|
| 258 | + } |
|
| 236 | 259 | |
| 237 | 260 | // Supported row positions: top_of_list, after_title, |
| 238 | 261 | // above_column_headers, below_table_data, bottom_of_list. |
| 239 | - if (!isset($list_context['additional_rows'][$row['position']])) |
|
| 240 | - $list_context['additional_rows'][$row['position']] = array(); |
|
| 262 | + if (!isset($list_context['additional_rows'][$row['position']])) { |
|
| 263 | + $list_context['additional_rows'][$row['position']] = array(); |
|
| 264 | + } |
|
| 241 | 265 | $list_context['additional_rows'][$row['position']][] = $row; |
| 242 | 266 | } |
| 243 | 267 | } |
| 244 | 268 | |
| 245 | 269 | // Add an option for inline JavaScript. |
| 246 | - if (isset($listOptions['javascript'])) |
|
| 247 | - $list_context['javascript'] = $listOptions['javascript']; |
|
| 270 | + if (isset($listOptions['javascript'])) { |
|
| 271 | + $list_context['javascript'] = $listOptions['javascript']; |
|
| 272 | + } |
|
| 248 | 273 | |
| 249 | 274 | // We want a menu. |
| 250 | - if (isset($listOptions['list_menu'])) |
|
| 251 | - $list_context['list_menu'] = $listOptions['list_menu']; |
|
| 275 | + if (isset($listOptions['list_menu'])) { |
|
| 276 | + $list_context['list_menu'] = $listOptions['list_menu']; |
|
| 277 | + } |
|
| 252 | 278 | |
| 253 | 279 | // Make sure the template is loaded. |
| 254 | 280 | loadTemplate('GenericList'); |
@@ -16,8 +16,9 @@ discard block |
||
| 16 | 16 | * @version 2.1 Beta 3 |
| 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()}. |
@@ -254,65 +279,74 @@ discard block |
||
| 254 | 279 | { |
| 255 | 280 | $i = $iterator->getSubPathname(); |
| 256 | 281 | // If this is a file, and it doesn't exist.... happy days! |
| 257 | - if (substr($i, -1) != '/' && !file_exists($destination . '/' . $i)) |
|
| 258 | - $write_this = true; |
|
| 282 | + if (substr($i, -1) != '/' && !file_exists($destination . '/' . $i)) { |
|
| 283 | + $write_this = true; |
|
| 284 | + } |
|
| 259 | 285 | // If the file exists, we may not want to overwrite it. |
| 260 | - elseif (substr($i, -1) != '/') |
|
| 261 | - $write_this = $overwrite; |
|
| 262 | - else |
|
| 263 | - $write_this = false; |
|
| 286 | + elseif (substr($i, -1) != '/') { |
|
| 287 | + $write_this = $overwrite; |
|
| 288 | + } else { |
|
| 289 | + $write_this = false; |
|
| 290 | + } |
|
| 264 | 291 | |
| 265 | 292 | // Get the actual compressed data. |
| 266 | - if (!$file_info->isDir()) |
|
| 267 | - $file_data = file_get_contents($file_info); |
|
| 268 | - elseif ($destination !== null && !$single_file) |
|
| 293 | + if (!$file_info->isDir()) { |
|
| 294 | + $file_data = file_get_contents($file_info); |
|
| 295 | + } elseif ($destination !== null && !$single_file) |
|
| 269 | 296 | { |
| 270 | 297 | // Folder... create. |
| 271 | - if (!file_exists($destination . '/' . $i)) |
|
| 272 | - mktree($destination . '/' . $i, 0777); |
|
| 298 | + if (!file_exists($destination . '/' . $i)) { |
|
| 299 | + mktree($destination . '/' . $i, 0777); |
|
| 300 | + } |
|
| 273 | 301 | $file_data = null; |
| 302 | + } else { |
|
| 303 | + $file_data = null; |
|
| 274 | 304 | } |
| 275 | - else |
|
| 276 | - $file_data = null; |
|
| 277 | 305 | |
| 278 | 306 | // Okay! We can write this file, looks good from here... |
| 279 | 307 | if ($write_this && $destination !== null) |
| 280 | 308 | { |
| 281 | - if (!$single_file && !is_dir($destination . '/' . dirname($i))) |
|
| 282 | - mktree($destination . '/' . dirname($i), 0777); |
|
| 309 | + if (!$single_file && !is_dir($destination . '/' . dirname($i))) { |
|
| 310 | + mktree($destination . '/' . dirname($i), 0777); |
|
| 311 | + } |
|
| 283 | 312 | |
| 284 | 313 | // If we're looking for a specific file, and this is it... ka-bam, baby. |
| 285 | - if ($single_file && ($destination == $i || $destination == '*/' . basename($i))) |
|
| 286 | - return $file_data; |
|
| 314 | + if ($single_file && ($destination == $i || $destination == '*/' . basename($i))) { |
|
| 315 | + return $file_data; |
|
| 316 | + } |
|
| 287 | 317 | // 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. |
| 288 | - elseif ($single_file) |
|
| 289 | - continue; |
|
| 318 | + elseif ($single_file) { |
|
| 319 | + continue; |
|
| 320 | + } |
|
| 290 | 321 | // Don't really want this? |
| 291 | - elseif ($files_to_extract !== null && !in_array($i, $files_to_extract)) |
|
| 292 | - continue; |
|
| 322 | + elseif ($files_to_extract !== null && !in_array($i, $files_to_extract)) { |
|
| 323 | + continue; |
|
| 324 | + } |
|
| 293 | 325 | |
| 294 | 326 | package_put_contents($destination . '/' . $i, $file_data); |
| 295 | 327 | } |
| 296 | 328 | |
| 297 | - if (substr($i, -1, 1) != '/') |
|
| 298 | - $return[] = array( |
|
| 329 | + if (substr($i, -1, 1) != '/') { |
|
| 330 | + $return[] = array( |
|
| 299 | 331 | 'filename' => $i, |
| 300 | 332 | 'md5' => md5($file_data), |
| 301 | 333 | 'preview' => substr($file_data, 0, 100), |
| 302 | 334 | 'size' => strlen($file_data), |
| 303 | 335 | 'skipped' => false |
| 304 | 336 | ); |
| 337 | + } |
|
| 305 | 338 | } |
| 306 | 339 | |
| 307 | - if ($destination !== null && !$single_file) |
|
| 308 | - package_flush_cache(); |
|
| 340 | + if ($destination !== null && !$single_file) { |
|
| 341 | + package_flush_cache(); |
|
| 342 | + } |
|
| 309 | 343 | |
| 310 | - if ($single_file) |
|
| 311 | - return false; |
|
| 312 | - else |
|
| 313 | - return $return; |
|
| 314 | - } |
|
| 315 | - catch (Exception $e) |
|
| 344 | + if ($single_file) { |
|
| 345 | + return false; |
|
| 346 | + } else { |
|
| 347 | + return $return; |
|
| 348 | + } |
|
| 349 | + } catch (Exception $e) |
|
| 316 | 350 | { |
| 317 | 351 | return false; |
| 318 | 352 | } |
@@ -334,13 +368,15 @@ discard block |
||
| 334 | 368 | function read_zip_data($data, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 335 | 369 | { |
| 336 | 370 | umask(0); |
| 337 | - if ($destination !== null && !file_exists($destination) && !$single_file) |
|
| 338 | - mktree($destination, 0777); |
|
| 371 | + if ($destination !== null && !file_exists($destination) && !$single_file) { |
|
| 372 | + mktree($destination, 0777); |
|
| 373 | + } |
|
| 339 | 374 | |
| 340 | 375 | // Look for the end of directory signature 0x06054b50 |
| 341 | 376 | $data_ecr = explode("\x50\x4b\x05\x06", $data); |
| 342 | - if (!isset($data_ecr[1])) |
|
| 343 | - return false; |
|
| 377 | + if (!isset($data_ecr[1])) { |
|
| 378 | + return false; |
|
| 379 | + } |
|
| 344 | 380 | |
| 345 | 381 | $return = array(); |
| 346 | 382 | |
@@ -355,8 +391,9 @@ discard block |
||
| 355 | 391 | array_shift($file_sections); |
| 356 | 392 | |
| 357 | 393 | // sections and count from the signature must match or the zip file is bad |
| 358 | - if (count($file_sections) != $zip_info['files']) |
|
| 359 | - return false; |
|
| 394 | + if (count($file_sections) != $zip_info['files']) { |
|
| 395 | + return false; |
|
| 396 | + } |
|
| 360 | 397 | |
| 361 | 398 | // go though each file in the archive |
| 362 | 399 | foreach ($file_sections as $data) |
@@ -378,68 +415,79 @@ discard block |
||
| 378 | 415 | } |
| 379 | 416 | |
| 380 | 417 | // If this is a file, and it doesn't exist.... happy days! |
| 381 | - if (substr($file_info['filename'], -1) != '/' && !file_exists($destination . '/' . $file_info['filename'])) |
|
| 382 | - $write_this = true; |
|
| 418 | + if (substr($file_info['filename'], -1) != '/' && !file_exists($destination . '/' . $file_info['filename'])) { |
|
| 419 | + $write_this = true; |
|
| 420 | + } |
|
| 383 | 421 | // If the file exists, we may not want to overwrite it. |
| 384 | - elseif (substr($file_info['filename'], -1) != '/') |
|
| 385 | - $write_this = $overwrite; |
|
| 422 | + elseif (substr($file_info['filename'], -1) != '/') { |
|
| 423 | + $write_this = $overwrite; |
|
| 424 | + } |
|
| 386 | 425 | // This is a directory, so we're gonna want to create it. (probably...) |
| 387 | 426 | elseif ($destination !== null && !$single_file) |
| 388 | 427 | { |
| 389 | 428 | // Just a little accident prevention, don't mind me. |
| 390 | 429 | $file_info['filename'] = strtr($file_info['filename'], array('../' => '', '/..' => '')); |
| 391 | 430 | |
| 392 | - if (!file_exists($destination . '/' . $file_info['filename'])) |
|
| 393 | - mktree($destination . '/' . $file_info['filename'], 0777); |
|
| 431 | + if (!file_exists($destination . '/' . $file_info['filename'])) { |
|
| 432 | + mktree($destination . '/' . $file_info['filename'], 0777); |
|
| 433 | + } |
|
| 394 | 434 | $write_this = false; |
| 435 | + } else { |
|
| 436 | + $write_this = false; |
|
| 395 | 437 | } |
| 396 | - else |
|
| 397 | - $write_this = false; |
|
| 398 | 438 | |
| 399 | 439 | // Get the actual compressed data. |
| 400 | 440 | $file_info['data'] = substr($data, 26 + $file_info['filename_length'] + $file_info['extrafield_length']); |
| 401 | 441 | |
| 402 | 442 | // Only inflate it if we need to ;) |
| 403 | - if (!empty($file_info['compress_method']) || ($file_info['compressed_size'] != $file_info['size'])) |
|
| 404 | - $file_info['data'] = gzinflate($file_info['data']); |
|
| 443 | + if (!empty($file_info['compress_method']) || ($file_info['compressed_size'] != $file_info['size'])) { |
|
| 444 | + $file_info['data'] = gzinflate($file_info['data']); |
|
| 445 | + } |
|
| 405 | 446 | |
| 406 | 447 | // Okay! We can write this file, looks good from here... |
| 407 | 448 | if ($write_this && $destination !== null) |
| 408 | 449 | { |
| 409 | - if ((strpos($file_info['filename'], '/') !== false && !$single_file) || (!$single_file && !is_dir($file_info['dir']))) |
|
| 410 | - mktree($file_info['dir'], 0777); |
|
| 450 | + if ((strpos($file_info['filename'], '/') !== false && !$single_file) || (!$single_file && !is_dir($file_info['dir']))) { |
|
| 451 | + mktree($file_info['dir'], 0777); |
|
| 452 | + } |
|
| 411 | 453 | |
| 412 | 454 | // If we're looking for a specific file, and this is it... ka-bam, baby. |
| 413 | - if ($single_file && ($destination == $file_info['filename'] || $destination == '*/' . basename($file_info['filename']))) |
|
| 414 | - return $file_info['data']; |
|
| 455 | + if ($single_file && ($destination == $file_info['filename'] || $destination == '*/' . basename($file_info['filename']))) { |
|
| 456 | + return $file_info['data']; |
|
| 457 | + } |
|
| 415 | 458 | // 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. |
| 416 | - elseif ($single_file) |
|
| 417 | - continue; |
|
| 459 | + elseif ($single_file) { |
|
| 460 | + continue; |
|
| 461 | + } |
|
| 418 | 462 | // Don't really want this? |
| 419 | - elseif ($files_to_extract !== null && !in_array($file_info['filename'], $files_to_extract)) |
|
| 420 | - continue; |
|
| 463 | + elseif ($files_to_extract !== null && !in_array($file_info['filename'], $files_to_extract)) { |
|
| 464 | + continue; |
|
| 465 | + } |
|
| 421 | 466 | |
| 422 | 467 | package_put_contents($destination . '/' . $file_info['filename'], $file_info['data']); |
| 423 | 468 | } |
| 424 | 469 | |
| 425 | - if (substr($file_info['filename'], -1, 1) != '/') |
|
| 426 | - $return[] = array( |
|
| 470 | + if (substr($file_info['filename'], -1, 1) != '/') { |
|
| 471 | + $return[] = array( |
|
| 427 | 472 | 'filename' => $file_info['filename'], |
| 428 | 473 | 'md5' => md5($file_info['data']), |
| 429 | 474 | 'preview' => substr($file_info['data'], 0, 100), |
| 430 | 475 | 'size' => $file_info['size'], |
| 431 | 476 | 'skipped' => false |
| 432 | 477 | ); |
| 478 | + } |
|
| 433 | 479 | } |
| 434 | 480 | |
| 435 | - if ($destination !== null && !$single_file) |
|
| 436 | - package_flush_cache(); |
|
| 481 | + if ($destination !== null && !$single_file) { |
|
| 482 | + package_flush_cache(); |
|
| 483 | + } |
|
| 437 | 484 | |
| 438 | - if ($single_file) |
|
| 439 | - return false; |
|
| 440 | - else |
|
| 441 | - return $return; |
|
| 442 | -} |
|
| 485 | + if ($single_file) { |
|
| 486 | + return false; |
|
| 487 | + } else { |
|
| 488 | + return $return; |
|
| 489 | + } |
|
| 490 | + } |
|
| 443 | 491 | |
| 444 | 492 | /** |
| 445 | 493 | * Checks the existence of a remote file since file_exists() does not do remote. |
@@ -451,14 +499,16 @@ discard block |
||
| 451 | 499 | { |
| 452 | 500 | $a_url = parse_url($url); |
| 453 | 501 | |
| 454 | - if (!isset($a_url['scheme'])) |
|
| 455 | - return false; |
|
| 502 | + if (!isset($a_url['scheme'])) { |
|
| 503 | + return false; |
|
| 504 | + } |
|
| 456 | 505 | |
| 457 | 506 | // Attempt to connect... |
| 458 | 507 | $temp = ''; |
| 459 | 508 | $fid = fsockopen($a_url['host'], !isset($a_url['port']) ? 80 : $a_url['port'], $temp, $temp, 8); |
| 460 | - if (!$fid) |
|
| 461 | - return false; |
|
| 509 | + if (!$fid) { |
|
| 510 | + return false; |
|
| 511 | + } |
|
| 462 | 512 | |
| 463 | 513 | fputs($fid, 'HEAD ' . $a_url['path'] . ' HTTP/1.0' . "\r\n" . 'Host: ' . $a_url['host'] . "\r\n\r\n"); |
| 464 | 514 | $head = fread($fid, 1024); |
@@ -493,8 +543,9 @@ discard block |
||
| 493 | 543 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 494 | 544 | { |
| 495 | 545 | // Already found this? If so don't add it twice! |
| 496 | - if (in_array($row['package_id'], $found)) |
|
| 497 | - continue; |
|
| 546 | + if (in_array($row['package_id'], $found)) { |
|
| 547 | + continue; |
|
| 548 | + } |
|
| 498 | 549 | |
| 499 | 550 | $found[] = $row['package_id']; |
| 500 | 551 | |
@@ -529,19 +580,21 @@ discard block |
||
| 529 | 580 | global $sourcedir, $packagesdir, $smcFunc; |
| 530 | 581 | |
| 531 | 582 | // Extract package-info.xml from downloaded file. (*/ is used because it could be in any directory.) |
| 532 | - if (strpos($gzfilename, 'http://') !== false || strpos($gzfilename, 'https://') !== false) |
|
| 533 | - $packageInfo = read_tgz_data($gzfilename, 'package-info.xml', true); |
|
| 534 | - else |
|
| 583 | + if (strpos($gzfilename, 'http://') !== false || strpos($gzfilename, 'https://') !== false) { |
|
| 584 | + $packageInfo = read_tgz_data($gzfilename, 'package-info.xml', true); |
|
| 585 | + } else |
|
| 535 | 586 | { |
| 536 | - if (!file_exists($packagesdir . '/' . $gzfilename)) |
|
| 537 | - return 'package_get_error_not_found'; |
|
| 587 | + if (!file_exists($packagesdir . '/' . $gzfilename)) { |
|
| 588 | + return 'package_get_error_not_found'; |
|
| 589 | + } |
|
| 538 | 590 | |
| 539 | - if (is_file($packagesdir . '/' . $gzfilename)) |
|
| 540 | - $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/package-info.xml', true); |
|
| 541 | - elseif (file_exists($packagesdir . '/' . $gzfilename . '/package-info.xml')) |
|
| 542 | - $packageInfo = file_get_contents($packagesdir . '/' . $gzfilename . '/package-info.xml'); |
|
| 543 | - else |
|
| 544 | - return 'package_get_error_missing_xml'; |
|
| 591 | + if (is_file($packagesdir . '/' . $gzfilename)) { |
|
| 592 | + $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/package-info.xml', true); |
|
| 593 | + } elseif (file_exists($packagesdir . '/' . $gzfilename . '/package-info.xml')) { |
|
| 594 | + $packageInfo = file_get_contents($packagesdir . '/' . $gzfilename . '/package-info.xml'); |
|
| 595 | + } else { |
|
| 596 | + return 'package_get_error_missing_xml'; |
|
| 597 | + } |
|
| 545 | 598 | } |
| 546 | 599 | |
| 547 | 600 | // Nothing? |
@@ -549,10 +602,11 @@ discard block |
||
| 549 | 602 | { |
| 550 | 603 | // Perhaps they are trying to install a theme, lets tell them nicely this is the wrong function |
| 551 | 604 | $packageInfo = read_tgz_file($packagesdir . '/' . $gzfilename, '*/theme_info.xml', true); |
| 552 | - if (!empty($packageInfo)) |
|
| 553 | - return 'package_get_error_is_theme'; |
|
| 554 | - else |
|
| 555 | - return 'package_get_error_is_zero'; |
|
| 605 | + if (!empty($packageInfo)) { |
|
| 606 | + return 'package_get_error_is_theme'; |
|
| 607 | + } else { |
|
| 608 | + return 'package_get_error_is_zero'; |
|
| 609 | + } |
|
| 556 | 610 | } |
| 557 | 611 | |
| 558 | 612 | // Parse package-info.xml into an xmlArray. |
@@ -560,8 +614,9 @@ discard block |
||
| 560 | 614 | $packageInfo = new xmlArray($packageInfo); |
| 561 | 615 | |
| 562 | 616 | // @todo Error message of some sort? |
| 563 | - if (!$packageInfo->exists('package-info[0]')) |
|
| 564 | - return 'package_get_error_packageinfo_corrupt'; |
|
| 617 | + if (!$packageInfo->exists('package-info[0]')) { |
|
| 618 | + return 'package_get_error_packageinfo_corrupt'; |
|
| 619 | + } |
|
| 565 | 620 | |
| 566 | 621 | $packageInfo = $packageInfo->path('package-info[0]'); |
| 567 | 622 | |
@@ -580,8 +635,9 @@ discard block |
||
| 580 | 635 | } |
| 581 | 636 | } |
| 582 | 637 | |
| 583 | - if (!isset($package['type'])) |
|
| 584 | - $package['type'] = 'modification'; |
|
| 638 | + if (!isset($package['type'])) { |
|
| 639 | + $package['type'] = 'modification'; |
|
| 640 | + } |
|
| 585 | 641 | |
| 586 | 642 | return $package; |
| 587 | 643 | } |
@@ -634,15 +690,14 @@ discard block |
||
| 634 | 690 | { |
| 635 | 691 | $ftp_file = strtr($file, array($_SESSION['pack_ftp']['root'] => '')); |
| 636 | 692 | $package_ftp->chmod($ftp_file, $perms); |
| 693 | + } else { |
|
| 694 | + smf_chmod($file, $perms); |
|
| 637 | 695 | } |
| 638 | - else |
|
| 639 | - smf_chmod($file, $perms); |
|
| 640 | 696 | |
| 641 | 697 | $new_permissions = @fileperms($file); |
| 642 | 698 | $result = $new_permissions == $perms ? 'success' : 'failure'; |
| 643 | 699 | unset($_SESSION['pack_ftp']['original_perms'][$file]); |
| 644 | - } |
|
| 645 | - elseif ($do_change) |
|
| 700 | + } elseif ($do_change) |
|
| 646 | 701 | { |
| 647 | 702 | $new_permissions = ''; |
| 648 | 703 | $result = 'skipped'; |
@@ -758,8 +813,7 @@ discard block |
||
| 758 | 813 | |
| 759 | 814 | $context['sub_template'] = 'show_list'; |
| 760 | 815 | $context['default_list'] = 'restore_file_permissions'; |
| 761 | - } |
|
| 762 | - else |
|
| 816 | + } else |
|
| 763 | 817 | { |
| 764 | 818 | unset($listOptions['columns']['result']); |
| 765 | 819 | } |
@@ -769,12 +823,14 @@ discard block |
||
| 769 | 823 | createList($listOptions); |
| 770 | 824 | |
| 771 | 825 | // If we just restored permissions then whereever we are, we are now done and dusted. |
| 772 | - if (!empty($_POST['restore_perms'])) |
|
| 773 | - obExit(); |
|
| 826 | + if (!empty($_POST['restore_perms'])) { |
|
| 827 | + obExit(); |
|
| 828 | + } |
|
| 774 | 829 | } |
| 775 | 830 | // Otherwise, it's entirely irrelevant? |
| 776 | - elseif ($restore_write_status) |
|
| 777 | - return true; |
|
| 831 | + elseif ($restore_write_status) { |
|
| 832 | + return true; |
|
| 833 | + } |
|
| 778 | 834 | |
| 779 | 835 | // This is where we report what we got up to. |
| 780 | 836 | $return_data = array( |
@@ -812,11 +868,12 @@ discard block |
||
| 812 | 868 | if (!in_array($_POST['ftp_path'], array('', '/'))) |
| 813 | 869 | { |
| 814 | 870 | $ftp_root = strtr($boarddir, array($_POST['ftp_path'] => '')); |
| 815 | - if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || substr($_POST['ftp_path'], 0, 1) == '/')) |
|
| 816 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 871 | + if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || substr($_POST['ftp_path'], 0, 1) == '/')) { |
|
| 872 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 873 | + } |
|
| 874 | + } else { |
|
| 875 | + $ftp_root = $boarddir; |
|
| 817 | 876 | } |
| 818 | - else |
|
| 819 | - $ftp_root = $boarddir; |
|
| 820 | 877 | |
| 821 | 878 | $_SESSION['pack_ftp'] = array( |
| 822 | 879 | 'server' => $_POST['ftp_server'], |
@@ -828,8 +885,9 @@ discard block |
||
| 828 | 885 | 'connected' => true, |
| 829 | 886 | ); |
| 830 | 887 | |
| 831 | - if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) |
|
| 832 | - updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 888 | + if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) { |
|
| 889 | + updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 890 | + } |
|
| 833 | 891 | |
| 834 | 892 | // This is now the primary connection. |
| 835 | 893 | $package_ftp = $ftp; |
@@ -842,12 +900,13 @@ discard block |
||
| 842 | 900 | foreach ($chmodFiles as $k => $file) |
| 843 | 901 | { |
| 844 | 902 | // Sometimes this can somehow happen maybe? |
| 845 | - if (empty($file)) |
|
| 846 | - unset($chmodFiles[$k]); |
|
| 903 | + if (empty($file)) { |
|
| 904 | + unset($chmodFiles[$k]); |
|
| 905 | + } |
|
| 847 | 906 | // Already writable? |
| 848 | - elseif (@is_writable($file)) |
|
| 849 | - $return_data['files']['writable'][] = $file; |
|
| 850 | - else |
|
| 907 | + elseif (@is_writable($file)) { |
|
| 908 | + $return_data['files']['writable'][] = $file; |
|
| 909 | + } else |
|
| 851 | 910 | { |
| 852 | 911 | // Now try to change that. |
| 853 | 912 | $return_data['files'][package_chmod($file, 'writable', true) ? 'writable' : 'notwritable'][] = $file; |
@@ -864,19 +923,21 @@ discard block |
||
| 864 | 923 | { |
| 865 | 924 | require_once($sourcedir . '/Class-Package.php'); |
| 866 | 925 | $ftp = new ftp_connection(null); |
| 926 | + } elseif ($ftp->error !== false && !isset($ftp_error)) { |
|
| 927 | + $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 867 | 928 | } |
| 868 | - elseif ($ftp->error !== false && !isset($ftp_error)) |
|
| 869 | - $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 870 | 929 | |
| 871 | 930 | list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir); |
| 872 | 931 | |
| 873 | - if ($found_path) |
|
| 874 | - $_POST['ftp_path'] = $detect_path; |
|
| 875 | - elseif (!isset($_POST['ftp_path'])) |
|
| 876 | - $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 932 | + if ($found_path) { |
|
| 933 | + $_POST['ftp_path'] = $detect_path; |
|
| 934 | + } elseif (!isset($_POST['ftp_path'])) { |
|
| 935 | + $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 936 | + } |
|
| 877 | 937 | |
| 878 | - if (!isset($_POST['ftp_username'])) |
|
| 879 | - $_POST['ftp_username'] = $username; |
|
| 938 | + if (!isset($_POST['ftp_username'])) { |
|
| 939 | + $_POST['ftp_username'] = $username; |
|
| 940 | + } |
|
| 880 | 941 | } |
| 881 | 942 | |
| 882 | 943 | $context['package_ftp'] = array( |
@@ -889,8 +950,9 @@ discard block |
||
| 889 | 950 | ); |
| 890 | 951 | |
| 891 | 952 | // Which files failed? |
| 892 | - if (!isset($context['notwritable_files'])) |
|
| 893 | - $context['notwritable_files'] = array(); |
|
| 953 | + if (!isset($context['notwritable_files'])) { |
|
| 954 | + $context['notwritable_files'] = array(); |
|
| 955 | + } |
|
| 894 | 956 | $context['notwritable_files'] = array_merge($context['notwritable_files'], $return_data['files']['notwritable']); |
| 895 | 957 | |
| 896 | 958 | // Sent here to die? |
@@ -923,40 +985,48 @@ discard block |
||
| 923 | 985 | foreach ($files as $k => $file) |
| 924 | 986 | { |
| 925 | 987 | // If this file doesn't exist, then we actually want to look at the directory, no? |
| 926 | - if (!file_exists($file)) |
|
| 927 | - $file = dirname($file); |
|
| 988 | + if (!file_exists($file)) { |
|
| 989 | + $file = dirname($file); |
|
| 990 | + } |
|
| 928 | 991 | |
| 929 | 992 | // This looks odd, but it's an attempt to work around PHP suExec. |
| 930 | - if (!@is_writable($file)) |
|
| 931 | - smf_chmod($file, 0755); |
|
| 932 | - if (!@is_writable($file)) |
|
| 933 | - smf_chmod($file, 0777); |
|
| 934 | - if (!@is_writable(dirname($file))) |
|
| 935 | - smf_chmod($file, 0755); |
|
| 936 | - if (!@is_writable(dirname($file))) |
|
| 937 | - smf_chmod($file, 0777); |
|
| 993 | + if (!@is_writable($file)) { |
|
| 994 | + smf_chmod($file, 0755); |
|
| 995 | + } |
|
| 996 | + if (!@is_writable($file)) { |
|
| 997 | + smf_chmod($file, 0777); |
|
| 998 | + } |
|
| 999 | + if (!@is_writable(dirname($file))) { |
|
| 1000 | + smf_chmod($file, 0755); |
|
| 1001 | + } |
|
| 1002 | + if (!@is_writable(dirname($file))) { |
|
| 1003 | + smf_chmod($file, 0777); |
|
| 1004 | + } |
|
| 938 | 1005 | |
| 939 | 1006 | $fp = is_dir($file) ? @opendir($file) : @fopen($file, 'rb'); |
| 940 | 1007 | if (@is_writable($file) && $fp) |
| 941 | 1008 | { |
| 942 | 1009 | unset($files[$k]); |
| 943 | - if (!is_dir($file)) |
|
| 944 | - fclose($fp); |
|
| 945 | - else |
|
| 946 | - closedir($fp); |
|
| 1010 | + if (!is_dir($file)) { |
|
| 1011 | + fclose($fp); |
|
| 1012 | + } else { |
|
| 1013 | + closedir($fp); |
|
| 1014 | + } |
|
| 947 | 1015 | } |
| 948 | 1016 | } |
| 949 | 1017 | |
| 950 | 1018 | // No FTP required! |
| 951 | - if (empty($files)) |
|
| 952 | - return array(); |
|
| 1019 | + if (empty($files)) { |
|
| 1020 | + return array(); |
|
| 1021 | + } |
|
| 953 | 1022 | } |
| 954 | 1023 | |
| 955 | 1024 | // They've opted to not use FTP, and try anyway. |
| 956 | 1025 | if (isset($_SESSION['pack_ftp']) && $_SESSION['pack_ftp'] == false) |
| 957 | 1026 | { |
| 958 | - if ($files === null) |
|
| 959 | - return array(); |
|
| 1027 | + if ($files === null) { |
|
| 1028 | + return array(); |
|
| 1029 | + } |
|
| 960 | 1030 | |
| 961 | 1031 | foreach ($files as $k => $file) |
| 962 | 1032 | { |
@@ -968,26 +1038,29 @@ discard block |
||
| 968 | 1038 | smf_chmod($file, 0755); |
| 969 | 1039 | } |
| 970 | 1040 | |
| 971 | - if (!@is_writable($file)) |
|
| 972 | - smf_chmod($file, 0777); |
|
| 973 | - if (!@is_writable(dirname($file))) |
|
| 974 | - smf_chmod(dirname($file), 0777); |
|
| 1041 | + if (!@is_writable($file)) { |
|
| 1042 | + smf_chmod($file, 0777); |
|
| 1043 | + } |
|
| 1044 | + if (!@is_writable(dirname($file))) { |
|
| 1045 | + smf_chmod(dirname($file), 0777); |
|
| 1046 | + } |
|
| 975 | 1047 | |
| 976 | - if (@is_writable($file)) |
|
| 977 | - unset($files[$k]); |
|
| 1048 | + if (@is_writable($file)) { |
|
| 1049 | + unset($files[$k]); |
|
| 1050 | + } |
|
| 978 | 1051 | } |
| 979 | 1052 | |
| 980 | 1053 | return $files; |
| 981 | - } |
|
| 982 | - elseif (isset($_SESSION['pack_ftp'])) |
|
| 1054 | + } elseif (isset($_SESSION['pack_ftp'])) |
|
| 983 | 1055 | { |
| 984 | 1056 | // Load the file containing the ftp_connection class. |
| 985 | 1057 | require_once($sourcedir . '/Class-Package.php'); |
| 986 | 1058 | |
| 987 | 1059 | $package_ftp = new ftp_connection($_SESSION['pack_ftp']['server'], $_SESSION['pack_ftp']['port'], $_SESSION['pack_ftp']['username'], package_crypt($_SESSION['pack_ftp']['password'])); |
| 988 | 1060 | |
| 989 | - if ($files === null) |
|
| 990 | - return array(); |
|
| 1061 | + if ($files === null) { |
|
| 1062 | + return array(); |
|
| 1063 | + } |
|
| 991 | 1064 | |
| 992 | 1065 | foreach ($files as $k => $file) |
| 993 | 1066 | { |
@@ -1001,13 +1074,16 @@ discard block |
||
| 1001 | 1074 | $package_ftp->chmod($ftp_file, 0755); |
| 1002 | 1075 | } |
| 1003 | 1076 | |
| 1004 | - if (!@is_writable($file)) |
|
| 1005 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1006 | - if (!@is_writable(dirname($file))) |
|
| 1007 | - $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 1077 | + if (!@is_writable($file)) { |
|
| 1078 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1079 | + } |
|
| 1080 | + if (!@is_writable(dirname($file))) { |
|
| 1081 | + $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 1082 | + } |
|
| 1008 | 1083 | |
| 1009 | - if (@is_writable($file)) |
|
| 1010 | - unset($files[$k]); |
|
| 1084 | + if (@is_writable($file)) { |
|
| 1085 | + unset($files[$k]); |
|
| 1086 | + } |
|
| 1011 | 1087 | } |
| 1012 | 1088 | |
| 1013 | 1089 | return $files; |
@@ -1019,8 +1095,7 @@ discard block |
||
| 1019 | 1095 | |
| 1020 | 1096 | $files = packageRequireFTP($destination_url, $files, $return); |
| 1021 | 1097 | return $files; |
| 1022 | - } |
|
| 1023 | - elseif (isset($_POST['ftp_username'])) |
|
| 1098 | + } elseif (isset($_POST['ftp_username'])) |
|
| 1024 | 1099 | { |
| 1025 | 1100 | require_once($sourcedir . '/Class-Package.php'); |
| 1026 | 1101 | $ftp = new ftp_connection($_POST['ftp_server'], $_POST['ftp_port'], $_POST['ftp_username'], $_POST['ftp_password']); |
@@ -1042,19 +1117,21 @@ discard block |
||
| 1042 | 1117 | { |
| 1043 | 1118 | require_once($sourcedir . '/Class-Package.php'); |
| 1044 | 1119 | $ftp = new ftp_connection(null); |
| 1120 | + } elseif ($ftp->error !== false && !isset($ftp_error)) { |
|
| 1121 | + $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 1045 | 1122 | } |
| 1046 | - elseif ($ftp->error !== false && !isset($ftp_error)) |
|
| 1047 | - $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 1048 | 1123 | |
| 1049 | 1124 | list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir); |
| 1050 | 1125 | |
| 1051 | - if ($found_path) |
|
| 1052 | - $_POST['ftp_path'] = $detect_path; |
|
| 1053 | - elseif (!isset($_POST['ftp_path'])) |
|
| 1054 | - $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 1126 | + if ($found_path) { |
|
| 1127 | + $_POST['ftp_path'] = $detect_path; |
|
| 1128 | + } elseif (!isset($_POST['ftp_path'])) { |
|
| 1129 | + $_POST['ftp_path'] = isset($modSettings['package_path']) ? $modSettings['package_path'] : $detect_path; |
|
| 1130 | + } |
|
| 1055 | 1131 | |
| 1056 | - if (!isset($_POST['ftp_username'])) |
|
| 1057 | - $_POST['ftp_username'] = $username; |
|
| 1132 | + if (!isset($_POST['ftp_username'])) { |
|
| 1133 | + $_POST['ftp_username'] = $username; |
|
| 1134 | + } |
|
| 1058 | 1135 | |
| 1059 | 1136 | $context['package_ftp'] = array( |
| 1060 | 1137 | 'server' => isset($_POST['ftp_server']) ? $_POST['ftp_server'] : (isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost'), |
@@ -1066,23 +1143,24 @@ discard block |
||
| 1066 | 1143 | ); |
| 1067 | 1144 | |
| 1068 | 1145 | // If we're returning dump out here. |
| 1069 | - if ($return) |
|
| 1070 | - return $files; |
|
| 1146 | + if ($return) { |
|
| 1147 | + return $files; |
|
| 1148 | + } |
|
| 1071 | 1149 | |
| 1072 | 1150 | $context['page_title'] = $txt['package_ftp_necessary']; |
| 1073 | 1151 | $context['sub_template'] = 'ftp_required'; |
| 1074 | 1152 | obExit(); |
| 1075 | - } |
|
| 1076 | - else |
|
| 1153 | + } else |
|
| 1077 | 1154 | { |
| 1078 | 1155 | if (!in_array($_POST['ftp_path'], array('', '/'))) |
| 1079 | 1156 | { |
| 1080 | 1157 | $ftp_root = strtr($boarddir, array($_POST['ftp_path'] => '')); |
| 1081 | - if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || $_POST['ftp_path'][0] == '/')) |
|
| 1082 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 1158 | + if (substr($ftp_root, -1) == '/' && ($_POST['ftp_path'] == '' || $_POST['ftp_path'][0] == '/')) { |
|
| 1159 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 1160 | + } |
|
| 1161 | + } else { |
|
| 1162 | + $ftp_root = $boarddir; |
|
| 1083 | 1163 | } |
| 1084 | - else |
|
| 1085 | - $ftp_root = $boarddir; |
|
| 1086 | 1164 | |
| 1087 | 1165 | $_SESSION['pack_ftp'] = array( |
| 1088 | 1166 | 'server' => $_POST['ftp_server'], |
@@ -1093,8 +1171,9 @@ discard block |
||
| 1093 | 1171 | 'root' => $ftp_root, |
| 1094 | 1172 | ); |
| 1095 | 1173 | |
| 1096 | - if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) |
|
| 1097 | - updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 1174 | + if (!isset($modSettings['package_path']) || $modSettings['package_path'] != $_POST['ftp_path']) { |
|
| 1175 | + updateSettings(array('package_path' => $_POST['ftp_path'])); |
|
| 1176 | + } |
|
| 1098 | 1177 | |
| 1099 | 1178 | $files = packageRequireFTP($destination_url, $files, $return); |
| 1100 | 1179 | } |
@@ -1122,16 +1201,18 @@ discard block |
||
| 1122 | 1201 | global $packagesdir, $forum_version, $context, $temp_path, $language, $smcFunc; |
| 1123 | 1202 | |
| 1124 | 1203 | // Mayday! That action doesn't exist!! |
| 1125 | - if (empty($packageXML) || !$packageXML->exists($method)) |
|
| 1126 | - return array(); |
|
| 1204 | + if (empty($packageXML) || !$packageXML->exists($method)) { |
|
| 1205 | + return array(); |
|
| 1206 | + } |
|
| 1127 | 1207 | |
| 1128 | 1208 | // We haven't found the package script yet... |
| 1129 | 1209 | $script = false; |
| 1130 | 1210 | $the_version = strtr($forum_version, array('SMF ' => '')); |
| 1131 | 1211 | |
| 1132 | 1212 | // Emulation support... |
| 1133 | - if (!empty($_SESSION['version_emulate'])) |
|
| 1134 | - $the_version = $_SESSION['version_emulate']; |
|
| 1213 | + if (!empty($_SESSION['version_emulate'])) { |
|
| 1214 | + $the_version = $_SESSION['version_emulate']; |
|
| 1215 | + } |
|
| 1135 | 1216 | |
| 1136 | 1217 | // Single package emulation |
| 1137 | 1218 | if (!empty($_REQUEST['ve']) && !empty($_REQUEST['package'])) |
@@ -1139,8 +1220,9 @@ discard block |
||
| 1139 | 1220 | $the_version = $_REQUEST['ve']; |
| 1140 | 1221 | $_SESSION['single_version_emulate'][$_REQUEST['package']] = $the_version; |
| 1141 | 1222 | } |
| 1142 | - if (!empty($_REQUEST['package']) && (!empty($_SESSION['single_version_emulate'][$_REQUEST['package']]))) |
|
| 1143 | - $the_version = $_SESSION['single_version_emulate'][$_REQUEST['package']]; |
|
| 1223 | + if (!empty($_REQUEST['package']) && (!empty($_SESSION['single_version_emulate'][$_REQUEST['package']]))) { |
|
| 1224 | + $the_version = $_SESSION['single_version_emulate'][$_REQUEST['package']]; |
|
| 1225 | + } |
|
| 1144 | 1226 | |
| 1145 | 1227 | // Get all the versions of this method and find the right one. |
| 1146 | 1228 | $these_methods = $packageXML->set($method); |
@@ -1150,16 +1232,18 @@ discard block |
||
| 1150 | 1232 | if ($this_method->exists('@for')) |
| 1151 | 1233 | { |
| 1152 | 1234 | // Don't keep going if this won't work for this version of SMF. |
| 1153 | - if (!matchPackageVersion($the_version, $this_method->fetch('@for'))) |
|
| 1154 | - continue; |
|
| 1235 | + if (!matchPackageVersion($the_version, $this_method->fetch('@for'))) { |
|
| 1236 | + continue; |
|
| 1237 | + } |
|
| 1155 | 1238 | } |
| 1156 | 1239 | |
| 1157 | 1240 | // Upgrades may go from a certain old version of the mod. |
| 1158 | 1241 | if ($method == 'upgrade' && $this_method->exists('@from')) |
| 1159 | 1242 | { |
| 1160 | 1243 | // Well, this is for the wrong old version... |
| 1161 | - if (!matchPackageVersion($previous_version, $this_method->fetch('@from'))) |
|
| 1162 | - continue; |
|
| 1244 | + if (!matchPackageVersion($previous_version, $this_method->fetch('@from'))) { |
|
| 1245 | + continue; |
|
| 1246 | + } |
|
| 1163 | 1247 | } |
| 1164 | 1248 | |
| 1165 | 1249 | // We've found it! |
@@ -1168,8 +1252,9 @@ discard block |
||
| 1168 | 1252 | } |
| 1169 | 1253 | |
| 1170 | 1254 | // Bad news, a matching script wasn't found! |
| 1171 | - if ($script === false) |
|
| 1172 | - return array(); |
|
| 1255 | + if ($script === false) { |
|
| 1256 | + return array(); |
|
| 1257 | + } |
|
| 1173 | 1258 | |
| 1174 | 1259 | // Find all the actions in this method - in theory, these should only be allowed actions. (* means all.) |
| 1175 | 1260 | $actions = $script->set('*'); |
@@ -1198,12 +1283,12 @@ discard block |
||
| 1198 | 1283 | 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)) |
| 1199 | 1284 | { |
| 1200 | 1285 | // In case the user put the blocks in the wrong order. |
| 1201 | - if (isset($context[$type]['selected']) && $context[$type]['selected'] == 'default') |
|
| 1202 | - $context[$type][] = 'default'; |
|
| 1286 | + if (isset($context[$type]['selected']) && $context[$type]['selected'] == 'default') { |
|
| 1287 | + $context[$type][] = 'default'; |
|
| 1288 | + } |
|
| 1203 | 1289 | |
| 1204 | 1290 | $context[$type]['selected'] = $smcFunc['htmlspecialchars']($action->fetch('@lang')); |
| 1205 | - } |
|
| 1206 | - else |
|
| 1291 | + } else |
|
| 1207 | 1292 | { |
| 1208 | 1293 | // We don't want this now, but we'll allow the user to select to read it. |
| 1209 | 1294 | $context[$type][] = $smcFunc['htmlspecialchars']($action->fetch('@lang')); |
@@ -1218,9 +1303,9 @@ discard block |
||
| 1218 | 1303 | { |
| 1219 | 1304 | $context[$type][] = 'default'; |
| 1220 | 1305 | continue; |
| 1306 | + } else { |
|
| 1307 | + $context[$type]['selected'] = 'default'; |
|
| 1221 | 1308 | } |
| 1222 | - else |
|
| 1223 | - $context[$type]['selected'] = 'default'; |
|
| 1224 | 1309 | } |
| 1225 | 1310 | } |
| 1226 | 1311 | |
@@ -1230,9 +1315,9 @@ discard block |
||
| 1230 | 1315 | $filename = $temp_path . '$auto_' . $temp_auto++ . (in_array($actionType, array('readme', 'redirect', 'license')) ? '.txt' : ($actionType == 'code' || $actionType == 'database' ? '.php' : '.mod')); |
| 1231 | 1316 | package_put_contents($filename, $action->fetch('.')); |
| 1232 | 1317 | $filename = strtr($filename, array($temp_path => '')); |
| 1318 | + } else { |
|
| 1319 | + $filename = $action->fetch('.'); |
|
| 1233 | 1320 | } |
| 1234 | - else |
|
| 1235 | - $filename = $action->fetch('.'); |
|
| 1236 | 1321 | |
| 1237 | 1322 | $return[] = array( |
| 1238 | 1323 | 'type' => $actionType, |
@@ -1247,8 +1332,7 @@ discard block |
||
| 1247 | 1332 | ); |
| 1248 | 1333 | |
| 1249 | 1334 | continue; |
| 1250 | - } |
|
| 1251 | - elseif ($actionType == 'hook') |
|
| 1335 | + } elseif ($actionType == 'hook') |
|
| 1252 | 1336 | { |
| 1253 | 1337 | $return[] = array( |
| 1254 | 1338 | 'type' => $actionType, |
@@ -1260,16 +1344,16 @@ discard block |
||
| 1260 | 1344 | 'description' => '', |
| 1261 | 1345 | ); |
| 1262 | 1346 | continue; |
| 1263 | - } |
|
| 1264 | - elseif ($actionType == 'credits') |
|
| 1347 | + } elseif ($actionType == 'credits') |
|
| 1265 | 1348 | { |
| 1266 | 1349 | // quick check of any supplied url |
| 1267 | 1350 | $url = $action->exists('@url') ? $action->fetch('@url') : ''; |
| 1268 | 1351 | if (strlen(trim($url)) > 0 && substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://') |
| 1269 | 1352 | { |
| 1270 | 1353 | $url = 'http://' . $url; |
| 1271 | - if (strlen($url) < 8 || (substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://')) |
|
| 1272 | - $url = ''; |
|
| 1354 | + if (strlen($url) < 8 || (substr($url, 0, 7) !== 'http://' && substr($url, 0, 8) !== 'https://')) { |
|
| 1355 | + $url = ''; |
|
| 1356 | + } |
|
| 1273 | 1357 | } |
| 1274 | 1358 | |
| 1275 | 1359 | $return[] = array( |
@@ -1281,8 +1365,7 @@ discard block |
||
| 1281 | 1365 | 'title' => $action->fetch('.'), |
| 1282 | 1366 | ); |
| 1283 | 1367 | continue; |
| 1284 | - } |
|
| 1285 | - elseif ($actionType == 'requires') |
|
| 1368 | + } elseif ($actionType == 'requires') |
|
| 1286 | 1369 | { |
| 1287 | 1370 | $return[] = array( |
| 1288 | 1371 | 'type' => $actionType, |
@@ -1291,14 +1374,12 @@ discard block |
||
| 1291 | 1374 | 'description' => '', |
| 1292 | 1375 | ); |
| 1293 | 1376 | continue; |
| 1294 | - } |
|
| 1295 | - elseif ($actionType == 'error') |
|
| 1377 | + } elseif ($actionType == 'error') |
|
| 1296 | 1378 | { |
| 1297 | 1379 | $return[] = array( |
| 1298 | 1380 | 'type' => 'error', |
| 1299 | 1381 | ); |
| 1300 | - } |
|
| 1301 | - elseif (in_array($actionType, array('require-file', 'remove-file', 'require-dir', 'remove-dir', 'move-file', 'move-dir', 'create-file', 'create-dir'))) |
|
| 1382 | + } elseif (in_array($actionType, array('require-file', 'remove-file', 'require-dir', 'remove-dir', 'move-file', 'move-dir', 'create-file', 'create-dir'))) |
|
| 1302 | 1383 | { |
| 1303 | 1384 | $this_action = &$return[]; |
| 1304 | 1385 | $this_action = array( |
@@ -1312,8 +1393,7 @@ discard block |
||
| 1312 | 1393 | { |
| 1313 | 1394 | $this_action['unparsed_destination'] = $action->fetch('@destination'); |
| 1314 | 1395 | $this_action['destination'] = parse_path($action->fetch('@destination')) . '/' . basename($this_action['filename']); |
| 1315 | - } |
|
| 1316 | - else |
|
| 1396 | + } else |
|
| 1317 | 1397 | { |
| 1318 | 1398 | $this_action['unparsed_filename'] = $this_action['filename']; |
| 1319 | 1399 | $this_action['filename'] = parse_path($this_action['filename']); |
@@ -1322,10 +1402,11 @@ discard block |
||
| 1322 | 1402 | // If we're moving or requiring (copying) a file. |
| 1323 | 1403 | if (substr($actionType, 0, 4) == 'move' || substr($actionType, 0, 7) == 'require') |
| 1324 | 1404 | { |
| 1325 | - if ($action->exists('@from')) |
|
| 1326 | - $this_action['source'] = parse_path($action->fetch('@from')); |
|
| 1327 | - else |
|
| 1328 | - $this_action['source'] = $temp_path . $this_action['filename']; |
|
| 1405 | + if ($action->exists('@from')) { |
|
| 1406 | + $this_action['source'] = parse_path($action->fetch('@from')); |
|
| 1407 | + } else { |
|
| 1408 | + $this_action['source'] = $temp_path . $this_action['filename']; |
|
| 1409 | + } |
|
| 1329 | 1410 | } |
| 1330 | 1411 | |
| 1331 | 1412 | // Check if these things can be done. (chmod's etc.) |
@@ -1334,22 +1415,23 @@ discard block |
||
| 1334 | 1415 | if (!mktree($this_action['destination'], false)) |
| 1335 | 1416 | { |
| 1336 | 1417 | $temp = $this_action['destination']; |
| 1337 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1338 | - $temp = dirname($temp); |
|
| 1418 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1419 | + $temp = dirname($temp); |
|
| 1420 | + } |
|
| 1339 | 1421 | |
| 1340 | 1422 | $return[] = array( |
| 1341 | 1423 | 'type' => 'chmod', |
| 1342 | 1424 | 'filename' => $temp |
| 1343 | 1425 | ); |
| 1344 | 1426 | } |
| 1345 | - } |
|
| 1346 | - elseif ($actionType == 'create-file') |
|
| 1427 | + } elseif ($actionType == 'create-file') |
|
| 1347 | 1428 | { |
| 1348 | 1429 | if (!mktree(dirname($this_action['destination']), false)) |
| 1349 | 1430 | { |
| 1350 | 1431 | $temp = dirname($this_action['destination']); |
| 1351 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1352 | - $temp = dirname($temp); |
|
| 1432 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1433 | + $temp = dirname($temp); |
|
| 1434 | + } |
|
| 1353 | 1435 | |
| 1354 | 1436 | $return[] = array( |
| 1355 | 1437 | 'type' => 'chmod', |
@@ -1357,36 +1439,38 @@ discard block |
||
| 1357 | 1439 | ); |
| 1358 | 1440 | } |
| 1359 | 1441 | |
| 1360 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1361 | - $return[] = array( |
|
| 1442 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1443 | + $return[] = array( |
|
| 1362 | 1444 | 'type' => 'chmod', |
| 1363 | 1445 | 'filename' => $this_action['destination'] |
| 1364 | 1446 | ); |
| 1365 | - } |
|
| 1366 | - elseif ($actionType == 'require-dir') |
|
| 1447 | + } |
|
| 1448 | + } elseif ($actionType == 'require-dir') |
|
| 1367 | 1449 | { |
| 1368 | 1450 | if (!mktree($this_action['destination'], false)) |
| 1369 | 1451 | { |
| 1370 | 1452 | $temp = $this_action['destination']; |
| 1371 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1372 | - $temp = dirname($temp); |
|
| 1453 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1454 | + $temp = dirname($temp); |
|
| 1455 | + } |
|
| 1373 | 1456 | |
| 1374 | 1457 | $return[] = array( |
| 1375 | 1458 | 'type' => 'chmod', |
| 1376 | 1459 | 'filename' => $temp |
| 1377 | 1460 | ); |
| 1378 | 1461 | } |
| 1379 | - } |
|
| 1380 | - elseif ($actionType == 'require-file') |
|
| 1462 | + } elseif ($actionType == 'require-file') |
|
| 1381 | 1463 | { |
| 1382 | - if ($action->exists('@theme')) |
|
| 1383 | - $this_action['theme_action'] = $action->fetch('@theme'); |
|
| 1464 | + if ($action->exists('@theme')) { |
|
| 1465 | + $this_action['theme_action'] = $action->fetch('@theme'); |
|
| 1466 | + } |
|
| 1384 | 1467 | |
| 1385 | 1468 | if (!mktree(dirname($this_action['destination']), false)) |
| 1386 | 1469 | { |
| 1387 | 1470 | $temp = dirname($this_action['destination']); |
| 1388 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1389 | - $temp = dirname($temp); |
|
| 1471 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1472 | + $temp = dirname($temp); |
|
| 1473 | + } |
|
| 1390 | 1474 | |
| 1391 | 1475 | $return[] = array( |
| 1392 | 1476 | 'type' => 'chmod', |
@@ -1394,19 +1478,20 @@ discard block |
||
| 1394 | 1478 | ); |
| 1395 | 1479 | } |
| 1396 | 1480 | |
| 1397 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1398 | - $return[] = array( |
|
| 1481 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1482 | + $return[] = array( |
|
| 1399 | 1483 | 'type' => 'chmod', |
| 1400 | 1484 | 'filename' => $this_action['destination'] |
| 1401 | 1485 | ); |
| 1402 | - } |
|
| 1403 | - elseif ($actionType == 'move-dir' || $actionType == 'move-file') |
|
| 1486 | + } |
|
| 1487 | + } elseif ($actionType == 'move-dir' || $actionType == 'move-file') |
|
| 1404 | 1488 | { |
| 1405 | 1489 | if (!mktree(dirname($this_action['destination']), false)) |
| 1406 | 1490 | { |
| 1407 | 1491 | $temp = dirname($this_action['destination']); |
| 1408 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 1409 | - $temp = dirname($temp); |
|
| 1492 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 1493 | + $temp = dirname($temp); |
|
| 1494 | + } |
|
| 1410 | 1495 | |
| 1411 | 1496 | $return[] = array( |
| 1412 | 1497 | 'type' => 'chmod', |
@@ -1414,30 +1499,30 @@ discard block |
||
| 1414 | 1499 | ); |
| 1415 | 1500 | } |
| 1416 | 1501 | |
| 1417 | - if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) |
|
| 1418 | - $return[] = array( |
|
| 1502 | + if (!is_writable($this_action['destination']) && (file_exists($this_action['destination']) || !is_writable(dirname($this_action['destination'])))) { |
|
| 1503 | + $return[] = array( |
|
| 1419 | 1504 | 'type' => 'chmod', |
| 1420 | 1505 | 'filename' => $this_action['destination'] |
| 1421 | 1506 | ); |
| 1422 | - } |
|
| 1423 | - elseif ($actionType == 'remove-dir') |
|
| 1507 | + } |
|
| 1508 | + } elseif ($actionType == 'remove-dir') |
|
| 1424 | 1509 | { |
| 1425 | - if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1426 | - $return[] = array( |
|
| 1510 | + if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) { |
|
| 1511 | + $return[] = array( |
|
| 1427 | 1512 | 'type' => 'chmod', |
| 1428 | 1513 | 'filename' => $this_action['filename'] |
| 1429 | 1514 | ); |
| 1430 | - } |
|
| 1431 | - elseif ($actionType == 'remove-file') |
|
| 1515 | + } |
|
| 1516 | + } elseif ($actionType == 'remove-file') |
|
| 1432 | 1517 | { |
| 1433 | - if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1434 | - $return[] = array( |
|
| 1518 | + if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) { |
|
| 1519 | + $return[] = array( |
|
| 1435 | 1520 | 'type' => 'chmod', |
| 1436 | 1521 | 'filename' => $this_action['filename'] |
| 1437 | 1522 | ); |
| 1523 | + } |
|
| 1438 | 1524 | } |
| 1439 | - } |
|
| 1440 | - else |
|
| 1525 | + } else |
|
| 1441 | 1526 | { |
| 1442 | 1527 | $return[] = array( |
| 1443 | 1528 | 'type' => 'error', |
@@ -1448,8 +1533,9 @@ discard block |
||
| 1448 | 1533 | } |
| 1449 | 1534 | |
| 1450 | 1535 | // Only testing - just return a list of things to be done. |
| 1451 | - if ($testing_only) |
|
| 1452 | - return $return; |
|
| 1536 | + if ($testing_only) { |
|
| 1537 | + return $return; |
|
| 1538 | + } |
|
| 1453 | 1539 | |
| 1454 | 1540 | umask(0); |
| 1455 | 1541 | |
@@ -1457,78 +1543,81 @@ discard block |
||
| 1457 | 1543 | $not_done = array(array('type' => '!')); |
| 1458 | 1544 | foreach ($return as $action) |
| 1459 | 1545 | { |
| 1460 | - if (in_array($action['type'], array('modification', 'code', 'database', 'redirect', 'hook', 'credits'))) |
|
| 1461 | - $not_done[] = $action; |
|
| 1546 | + if (in_array($action['type'], array('modification', 'code', 'database', 'redirect', 'hook', 'credits'))) { |
|
| 1547 | + $not_done[] = $action; |
|
| 1548 | + } |
|
| 1462 | 1549 | |
| 1463 | 1550 | if ($action['type'] == 'create-dir') |
| 1464 | 1551 | { |
| 1465 | - if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) |
|
| 1466 | - $failure |= !mktree($action['destination'], 0777); |
|
| 1467 | - } |
|
| 1468 | - elseif ($action['type'] == 'create-file') |
|
| 1552 | + if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) { |
|
| 1553 | + $failure |= !mktree($action['destination'], 0777); |
|
| 1554 | + } |
|
| 1555 | + } elseif ($action['type'] == 'create-file') |
|
| 1469 | 1556 | { |
| 1470 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1471 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1557 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1558 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1559 | + } |
|
| 1472 | 1560 | |
| 1473 | 1561 | // Create an empty file. |
| 1474 | 1562 | package_put_contents($action['destination'], package_get_contents($action['source']), $testing_only); |
| 1475 | 1563 | |
| 1476 | - if (!file_exists($action['destination'])) |
|
| 1477 | - $failure = true; |
|
| 1478 | - } |
|
| 1479 | - elseif ($action['type'] == 'require-dir') |
|
| 1564 | + if (!file_exists($action['destination'])) { |
|
| 1565 | + $failure = true; |
|
| 1566 | + } |
|
| 1567 | + } elseif ($action['type'] == 'require-dir') |
|
| 1480 | 1568 | { |
| 1481 | 1569 | copytree($action['source'], $action['destination']); |
| 1482 | 1570 | // Any other theme folders? |
| 1483 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) |
|
| 1484 | - foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1571 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) { |
|
| 1572 | + foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1485 | 1573 | copytree($action['source'], $theme_destination); |
| 1486 | - } |
|
| 1487 | - elseif ($action['type'] == 'require-file') |
|
| 1574 | + } |
|
| 1575 | + } elseif ($action['type'] == 'require-file') |
|
| 1488 | 1576 | { |
| 1489 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1490 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1577 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1578 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1579 | + } |
|
| 1491 | 1580 | |
| 1492 | 1581 | package_put_contents($action['destination'], package_get_contents($action['source']), $testing_only); |
| 1493 | 1582 | |
| 1494 | 1583 | $failure |= !copy($action['source'], $action['destination']); |
| 1495 | 1584 | |
| 1496 | 1585 | // Any other theme files? |
| 1497 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) |
|
| 1498 | - foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1586 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['destination']])) { |
|
| 1587 | + foreach ($context['theme_copies'][$action['type']][$action['destination']] as $theme_destination) |
|
| 1499 | 1588 | { |
| 1500 | 1589 | if (!mktree(dirname($theme_destination), 0755) || !is_writable(dirname($theme_destination))) |
| 1501 | 1590 | $failure |= !mktree(dirname($theme_destination), 0777); |
| 1591 | + } |
|
| 1502 | 1592 | |
| 1503 | 1593 | package_put_contents($theme_destination, package_get_contents($action['source']), $testing_only); |
| 1504 | 1594 | |
| 1505 | 1595 | $failure |= !copy($action['source'], $theme_destination); |
| 1506 | 1596 | } |
| 1507 | - } |
|
| 1508 | - elseif ($action['type'] == 'move-file') |
|
| 1597 | + } elseif ($action['type'] == 'move-file') |
|
| 1509 | 1598 | { |
| 1510 | - if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) |
|
| 1511 | - $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1599 | + if (!mktree(dirname($action['destination']), 0755) || !is_writable(dirname($action['destination']))) { |
|
| 1600 | + $failure |= !mktree(dirname($action['destination']), 0777); |
|
| 1601 | + } |
|
| 1512 | 1602 | |
| 1513 | 1603 | $failure |= !rename($action['source'], $action['destination']); |
| 1514 | - } |
|
| 1515 | - elseif ($action['type'] == 'move-dir') |
|
| 1604 | + } elseif ($action['type'] == 'move-dir') |
|
| 1516 | 1605 | { |
| 1517 | - if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) |
|
| 1518 | - $failure |= !mktree($action['destination'], 0777); |
|
| 1606 | + if (!mktree($action['destination'], 0755) || !is_writable($action['destination'])) { |
|
| 1607 | + $failure |= !mktree($action['destination'], 0777); |
|
| 1608 | + } |
|
| 1519 | 1609 | |
| 1520 | 1610 | $failure |= !rename($action['source'], $action['destination']); |
| 1521 | - } |
|
| 1522 | - elseif ($action['type'] == 'remove-dir') |
|
| 1611 | + } elseif ($action['type'] == 'remove-dir') |
|
| 1523 | 1612 | { |
| 1524 | 1613 | deltree($action['filename']); |
| 1525 | 1614 | |
| 1526 | 1615 | // Any other theme folders? |
| 1527 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) |
|
| 1528 | - foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1616 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) { |
|
| 1617 | + foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1529 | 1618 | deltree($theme_destination); |
| 1530 | - } |
|
| 1531 | - elseif ($action['type'] == 'remove-file') |
|
| 1619 | + } |
|
| 1620 | + } elseif ($action['type'] == 'remove-file') |
|
| 1532 | 1621 | { |
| 1533 | 1622 | // Make sure the file exists before deleting it. |
| 1534 | 1623 | if (file_exists($action['filename'])) |
@@ -1537,16 +1626,18 @@ discard block |
||
| 1537 | 1626 | $failure |= !unlink($action['filename']); |
| 1538 | 1627 | } |
| 1539 | 1628 | // The file that was supposed to be deleted couldn't be found. |
| 1540 | - else |
|
| 1541 | - $failure = true; |
|
| 1629 | + else { |
|
| 1630 | + $failure = true; |
|
| 1631 | + } |
|
| 1542 | 1632 | |
| 1543 | 1633 | // Any other theme folders? |
| 1544 | - if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) |
|
| 1545 | - foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1634 | + if (!empty($context['theme_copies']) && !empty($context['theme_copies'][$action['type']][$action['filename']])) { |
|
| 1635 | + foreach ($context['theme_copies'][$action['type']][$action['filename']] as $theme_destination) |
|
| 1546 | 1636 | if (file_exists($theme_destination)) |
| 1547 | 1637 | $failure |= !unlink($theme_destination); |
| 1548 | - else |
|
| 1549 | - $failure = true; |
|
| 1638 | + } else { |
|
| 1639 | + $failure = true; |
|
| 1640 | + } |
|
| 1550 | 1641 | } |
| 1551 | 1642 | } |
| 1552 | 1643 | |
@@ -1568,8 +1659,9 @@ discard block |
||
| 1568 | 1659 | { |
| 1569 | 1660 | static $near_version = 0; |
| 1570 | 1661 | |
| 1571 | - if ($reset) |
|
| 1572 | - $near_version = 0; |
|
| 1662 | + if ($reset) { |
|
| 1663 | + $near_version = 0; |
|
| 1664 | + } |
|
| 1573 | 1665 | |
| 1574 | 1666 | // Normalize the $versions while we remove our previous Doh! |
| 1575 | 1667 | $versions = explode(',', str_replace(array(' ', '2.0rc1-1'), array('', '2.0rc1.1'), strtolower($versions))); |
@@ -1578,16 +1670,19 @@ discard block |
||
| 1578 | 1670 | foreach ($versions as $for) |
| 1579 | 1671 | { |
| 1580 | 1672 | // Adjust for those wild cards |
| 1581 | - if (strpos($for, '*') !== false) |
|
| 1582 | - $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1673 | + if (strpos($for, '*') !== false) { |
|
| 1674 | + $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1675 | + } |
|
| 1583 | 1676 | |
| 1584 | 1677 | // 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 |
| 1585 | - if (strpos($for, '-') !== false) |
|
| 1586 | - list ($for, $higher) = explode('-', $for); |
|
| 1678 | + if (strpos($for, '-') !== false) { |
|
| 1679 | + list ($for, $higher) = explode('-', $for); |
|
| 1680 | + } |
|
| 1587 | 1681 | |
| 1588 | 1682 | // Do the compare, if the for is greater, than what we have but not greater than what we are running ..... |
| 1589 | - if (compareVersions($near_version, $for) === -1 && compareVersions($for, $the_version) !== 1) |
|
| 1590 | - $near_version = $for; |
|
| 1683 | + if (compareVersions($near_version, $for) === -1 && compareVersions($for, $the_version) !== 1) { |
|
| 1684 | + $near_version = $for; |
|
| 1685 | + } |
|
| 1591 | 1686 | } |
| 1592 | 1687 | |
| 1593 | 1688 | return !empty($near_version) ? $near_version : false; |
@@ -1610,15 +1705,17 @@ discard block |
||
| 1610 | 1705 | $versions = explode(',', str_replace(array(' ', '2.0rc1-1'), array('', '2.0rc1.1'), strtolower($versions))); |
| 1611 | 1706 | |
| 1612 | 1707 | // Perhaps we do accept anything? |
| 1613 | - if (in_array('all', $versions)) |
|
| 1614 | - return true; |
|
| 1708 | + if (in_array('all', $versions)) { |
|
| 1709 | + return true; |
|
| 1710 | + } |
|
| 1615 | 1711 | |
| 1616 | 1712 | // Loop through each version. |
| 1617 | 1713 | foreach ($versions as $for) |
| 1618 | 1714 | { |
| 1619 | 1715 | // Wild card spotted? |
| 1620 | - if (strpos($for, '*') !== false) |
|
| 1621 | - $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1716 | + if (strpos($for, '*') !== false) { |
|
| 1717 | + $for = str_replace('*', '0dev0', $for) . '-' . str_replace('*', '999', $for); |
|
| 1718 | + } |
|
| 1622 | 1719 | |
| 1623 | 1720 | // Do we have a range? |
| 1624 | 1721 | if (strpos($for, '-') !== false) |
@@ -1626,12 +1723,14 @@ discard block |
||
| 1626 | 1723 | list ($lower, $upper) = explode('-', $for); |
| 1627 | 1724 | |
| 1628 | 1725 | // Compare the version against lower and upper bounds. |
| 1629 | - if (compareVersions($version, $lower) > -1 && compareVersions($version, $upper) < 1) |
|
| 1630 | - return true; |
|
| 1726 | + if (compareVersions($version, $lower) > -1 && compareVersions($version, $upper) < 1) { |
|
| 1727 | + return true; |
|
| 1728 | + } |
|
| 1631 | 1729 | } |
| 1632 | 1730 | // Otherwise check if they are equal... |
| 1633 | - elseif (compareVersions($version, $for) === 0) |
|
| 1634 | - return true; |
|
| 1731 | + elseif (compareVersions($version, $for) === 0) { |
|
| 1732 | + return true; |
|
| 1733 | + } |
|
| 1635 | 1734 | } |
| 1636 | 1735 | |
| 1637 | 1736 | return false; |
@@ -1671,12 +1770,14 @@ discard block |
||
| 1671 | 1770 | } |
| 1672 | 1771 | |
| 1673 | 1772 | // Are they the same, perhaps? |
| 1674 | - if ($versions[1] === $versions[2]) |
|
| 1675 | - return 0; |
|
| 1773 | + if ($versions[1] === $versions[2]) { |
|
| 1774 | + return 0; |
|
| 1775 | + } |
|
| 1676 | 1776 | |
| 1677 | 1777 | // Get version numbering categories... |
| 1678 | - if (!isset($categories)) |
|
| 1679 | - $categories = array_keys($versions[1]); |
|
| 1778 | + if (!isset($categories)) { |
|
| 1779 | + $categories = array_keys($versions[1]); |
|
| 1780 | + } |
|
| 1680 | 1781 | |
| 1681 | 1782 | // Loop through each category. |
| 1682 | 1783 | foreach ($categories as $category) |
@@ -1686,13 +1787,15 @@ discard block |
||
| 1686 | 1787 | { |
| 1687 | 1788 | // Dev builds are a problematic exception. |
| 1688 | 1789 | // (stable) dev < (stable) but (unstable) dev = (unstable) |
| 1689 | - if ($category == 'type') |
|
| 1690 | - return $versions[1][$category] > $versions[2][$category] ? ($versions[1]['dev'] ? -1 : 1) : ($versions[2]['dev'] ? 1 : -1); |
|
| 1691 | - elseif ($category == 'dev') |
|
| 1692 | - return $versions[1]['dev'] ? ($versions[2]['type'] == 'stable' ? -1 : 0) : ($versions[1]['type'] == 'stable' ? 1 : 0); |
|
| 1790 | + if ($category == 'type') { |
|
| 1791 | + return $versions[1][$category] > $versions[2][$category] ? ($versions[1]['dev'] ? -1 : 1) : ($versions[2]['dev'] ? 1 : -1); |
|
| 1792 | + } elseif ($category == 'dev') { |
|
| 1793 | + return $versions[1]['dev'] ? ($versions[2]['type'] == 'stable' ? -1 : 0) : ($versions[1]['type'] == 'stable' ? 1 : 0); |
|
| 1794 | + } |
|
| 1693 | 1795 | // Otherwise a simple comparison. |
| 1694 | - else |
|
| 1695 | - return $versions[1][$category] > $versions[2][$category] ? 1 : -1; |
|
| 1796 | + else { |
|
| 1797 | + return $versions[1][$category] > $versions[2][$category] ? 1 : -1; |
|
| 1798 | + } |
|
| 1696 | 1799 | } |
| 1697 | 1800 | } |
| 1698 | 1801 | |
@@ -1726,11 +1829,13 @@ discard block |
||
| 1726 | 1829 | ); |
| 1727 | 1830 | |
| 1728 | 1831 | // do we parse in a package directory? |
| 1729 | - if (!empty($temp_path)) |
|
| 1730 | - $dirs['$package'] = $temp_path; |
|
| 1832 | + if (!empty($temp_path)) { |
|
| 1833 | + $dirs['$package'] = $temp_path; |
|
| 1834 | + } |
|
| 1731 | 1835 | |
| 1732 | - if (strlen($path) == 0) |
|
| 1733 | - trigger_error('parse_path(): There should never be an empty filename', E_USER_ERROR); |
|
| 1836 | + if (strlen($path) == 0) { |
|
| 1837 | + trigger_error('parse_path(): There should never be an empty filename', E_USER_ERROR); |
|
| 1838 | + } |
|
| 1734 | 1839 | |
| 1735 | 1840 | return strtr($path, $dirs); |
| 1736 | 1841 | } |
@@ -1746,8 +1851,9 @@ discard block |
||
| 1746 | 1851 | { |
| 1747 | 1852 | global $package_ftp; |
| 1748 | 1853 | |
| 1749 | - if (!file_exists($dir)) |
|
| 1750 | - return; |
|
| 1854 | + if (!file_exists($dir)) { |
|
| 1855 | + return; |
|
| 1856 | + } |
|
| 1751 | 1857 | |
| 1752 | 1858 | $current_dir = @opendir($dir); |
| 1753 | 1859 | if ($current_dir == false) |
@@ -1755,8 +1861,9 @@ discard block |
||
| 1755 | 1861 | if ($delete_dir && isset($package_ftp)) |
| 1756 | 1862 | { |
| 1757 | 1863 | $ftp_file = strtr($dir, array($_SESSION['pack_ftp']['root'] => '')); |
| 1758 | - if (!is_dir($dir)) |
|
| 1759 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1864 | + if (!is_dir($dir)) { |
|
| 1865 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1866 | + } |
|
| 1760 | 1867 | $package_ftp->unlink($ftp_file); |
| 1761 | 1868 | } |
| 1762 | 1869 | |
@@ -1765,26 +1872,28 @@ discard block |
||
| 1765 | 1872 | |
| 1766 | 1873 | while ($entryname = readdir($current_dir)) |
| 1767 | 1874 | { |
| 1768 | - if (in_array($entryname, array('.', '..'))) |
|
| 1769 | - continue; |
|
| 1875 | + if (in_array($entryname, array('.', '..'))) { |
|
| 1876 | + continue; |
|
| 1877 | + } |
|
| 1770 | 1878 | |
| 1771 | - if (is_dir($dir . '/' . $entryname)) |
|
| 1772 | - deltree($dir . '/' . $entryname); |
|
| 1773 | - else |
|
| 1879 | + if (is_dir($dir . '/' . $entryname)) { |
|
| 1880 | + deltree($dir . '/' . $entryname); |
|
| 1881 | + } else |
|
| 1774 | 1882 | { |
| 1775 | 1883 | // Here, 755 doesn't really matter since we're deleting it anyway. |
| 1776 | 1884 | if (isset($package_ftp)) |
| 1777 | 1885 | { |
| 1778 | 1886 | $ftp_file = strtr($dir . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
| 1779 | 1887 | |
| 1780 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1781 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1888 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1889 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1890 | + } |
|
| 1782 | 1891 | $package_ftp->unlink($ftp_file); |
| 1783 | - } |
|
| 1784 | - else |
|
| 1892 | + } else |
|
| 1785 | 1893 | { |
| 1786 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1787 | - smf_chmod($dir . '/' . $entryname, 0777); |
|
| 1894 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1895 | + smf_chmod($dir . '/' . $entryname, 0777); |
|
| 1896 | + } |
|
| 1788 | 1897 | unlink($dir . '/' . $entryname); |
| 1789 | 1898 | } |
| 1790 | 1899 | } |
@@ -1797,14 +1906,15 @@ discard block |
||
| 1797 | 1906 | if (isset($package_ftp)) |
| 1798 | 1907 | { |
| 1799 | 1908 | $ftp_file = strtr($dir, array($_SESSION['pack_ftp']['root'] => '')); |
| 1800 | - if (!is_writable($dir . '/' . $entryname)) |
|
| 1801 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 1909 | + if (!is_writable($dir . '/' . $entryname)) { |
|
| 1910 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 1911 | + } |
|
| 1802 | 1912 | $package_ftp->unlink($ftp_file); |
| 1803 | - } |
|
| 1804 | - else |
|
| 1913 | + } else |
|
| 1805 | 1914 | { |
| 1806 | - if (!is_writable($dir)) |
|
| 1807 | - smf_chmod($dir, 0777); |
|
| 1915 | + if (!is_writable($dir)) { |
|
| 1916 | + smf_chmod($dir, 0777); |
|
| 1917 | + } |
|
| 1808 | 1918 | @rmdir($dir); |
| 1809 | 1919 | } |
| 1810 | 1920 | } |
@@ -1826,10 +1936,11 @@ discard block |
||
| 1826 | 1936 | { |
| 1827 | 1937 | if (!is_writable($strPath) && $mode !== false) |
| 1828 | 1938 | { |
| 1829 | - if (isset($package_ftp)) |
|
| 1830 | - $package_ftp->chmod(strtr($strPath, array($_SESSION['pack_ftp']['root'] => '')), $mode); |
|
| 1831 | - else |
|
| 1832 | - smf_chmod($strPath, $mode); |
|
| 1939 | + if (isset($package_ftp)) { |
|
| 1940 | + $package_ftp->chmod(strtr($strPath, array($_SESSION['pack_ftp']['root'] => '')), $mode); |
|
| 1941 | + } else { |
|
| 1942 | + smf_chmod($strPath, $mode); |
|
| 1943 | + } |
|
| 1833 | 1944 | } |
| 1834 | 1945 | |
| 1835 | 1946 | $test = @opendir($strPath); |
@@ -1837,36 +1948,37 @@ discard block |
||
| 1837 | 1948 | { |
| 1838 | 1949 | closedir($test); |
| 1839 | 1950 | return is_writable($strPath); |
| 1951 | + } else { |
|
| 1952 | + return false; |
|
| 1840 | 1953 | } |
| 1841 | - else |
|
| 1842 | - return false; |
|
| 1843 | 1954 | } |
| 1844 | 1955 | // Is this an invalid path and/or we can't make the directory? |
| 1845 | - if ($strPath == dirname($strPath) || !mktree(dirname($strPath), $mode)) |
|
| 1846 | - return false; |
|
| 1956 | + if ($strPath == dirname($strPath) || !mktree(dirname($strPath), $mode)) { |
|
| 1957 | + return false; |
|
| 1958 | + } |
|
| 1847 | 1959 | |
| 1848 | 1960 | if (!is_writable(dirname($strPath)) && $mode !== false) |
| 1849 | 1961 | { |
| 1850 | - if (isset($package_ftp)) |
|
| 1851 | - $package_ftp->chmod(dirname(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))), $mode); |
|
| 1852 | - else |
|
| 1853 | - smf_chmod(dirname($strPath), $mode); |
|
| 1962 | + if (isset($package_ftp)) { |
|
| 1963 | + $package_ftp->chmod(dirname(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))), $mode); |
|
| 1964 | + } else { |
|
| 1965 | + smf_chmod(dirname($strPath), $mode); |
|
| 1966 | + } |
|
| 1854 | 1967 | } |
| 1855 | 1968 | |
| 1856 | - if ($mode !== false && isset($package_ftp)) |
|
| 1857 | - return $package_ftp->create_dir(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))); |
|
| 1858 | - elseif ($mode === false) |
|
| 1969 | + if ($mode !== false && isset($package_ftp)) { |
|
| 1970 | + return $package_ftp->create_dir(strtr($strPath, array($_SESSION['pack_ftp']['root'] => ''))); |
|
| 1971 | + } elseif ($mode === false) |
|
| 1859 | 1972 | { |
| 1860 | 1973 | $test = @opendir(dirname($strPath)); |
| 1861 | 1974 | if ($test) |
| 1862 | 1975 | { |
| 1863 | 1976 | closedir($test); |
| 1864 | 1977 | return true; |
| 1978 | + } else { |
|
| 1979 | + return false; |
|
| 1865 | 1980 | } |
| 1866 | - else |
|
| 1867 | - return false; |
|
| 1868 | - } |
|
| 1869 | - else |
|
| 1981 | + } else |
|
| 1870 | 1982 | { |
| 1871 | 1983 | @mkdir($strPath, $mode); |
| 1872 | 1984 | $test = @opendir($strPath); |
@@ -1874,9 +1986,9 @@ discard block |
||
| 1874 | 1986 | { |
| 1875 | 1987 | closedir($test); |
| 1876 | 1988 | return true; |
| 1989 | + } else { |
|
| 1990 | + return false; |
|
| 1877 | 1991 | } |
| 1878 | - else |
|
| 1879 | - return false; |
|
| 1880 | 1992 | } |
| 1881 | 1993 | } |
| 1882 | 1994 | |
@@ -1891,39 +2003,46 @@ discard block |
||
| 1891 | 2003 | { |
| 1892 | 2004 | global $package_ftp; |
| 1893 | 2005 | |
| 1894 | - if (!file_exists($destination) || !is_writable($destination)) |
|
| 1895 | - mktree($destination, 0755); |
|
| 1896 | - if (!is_writable($destination)) |
|
| 1897 | - mktree($destination, 0777); |
|
| 2006 | + if (!file_exists($destination) || !is_writable($destination)) { |
|
| 2007 | + mktree($destination, 0755); |
|
| 2008 | + } |
|
| 2009 | + if (!is_writable($destination)) { |
|
| 2010 | + mktree($destination, 0777); |
|
| 2011 | + } |
|
| 1898 | 2012 | |
| 1899 | 2013 | $current_dir = opendir($source); |
| 1900 | - if ($current_dir == false) |
|
| 1901 | - return; |
|
| 2014 | + if ($current_dir == false) { |
|
| 2015 | + return; |
|
| 2016 | + } |
|
| 1902 | 2017 | |
| 1903 | 2018 | while ($entryname = readdir($current_dir)) |
| 1904 | 2019 | { |
| 1905 | - if (in_array($entryname, array('.', '..'))) |
|
| 1906 | - continue; |
|
| 2020 | + if (in_array($entryname, array('.', '..'))) { |
|
| 2021 | + continue; |
|
| 2022 | + } |
|
| 1907 | 2023 | |
| 1908 | - if (isset($package_ftp)) |
|
| 1909 | - $ftp_file = strtr($destination . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2024 | + if (isset($package_ftp)) { |
|
| 2025 | + $ftp_file = strtr($destination . '/' . $entryname, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2026 | + } |
|
| 1910 | 2027 | |
| 1911 | 2028 | if (is_file($source . '/' . $entryname)) |
| 1912 | 2029 | { |
| 1913 | - if (isset($package_ftp) && !file_exists($destination . '/' . $entryname)) |
|
| 1914 | - $package_ftp->create_file($ftp_file); |
|
| 1915 | - elseif (!file_exists($destination . '/' . $entryname)) |
|
| 1916 | - @touch($destination . '/' . $entryname); |
|
| 2030 | + if (isset($package_ftp) && !file_exists($destination . '/' . $entryname)) { |
|
| 2031 | + $package_ftp->create_file($ftp_file); |
|
| 2032 | + } elseif (!file_exists($destination . '/' . $entryname)) { |
|
| 2033 | + @touch($destination . '/' . $entryname); |
|
| 2034 | + } |
|
| 1917 | 2035 | } |
| 1918 | 2036 | |
| 1919 | 2037 | package_chmod($destination . '/' . $entryname); |
| 1920 | 2038 | |
| 1921 | - if (is_dir($source . '/' . $entryname)) |
|
| 1922 | - copytree($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 1923 | - elseif (file_exists($destination . '/' . $entryname)) |
|
| 1924 | - package_put_contents($destination . '/' . $entryname, package_get_contents($source . '/' . $entryname)); |
|
| 1925 | - else |
|
| 1926 | - copy($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2039 | + if (is_dir($source . '/' . $entryname)) { |
|
| 2040 | + copytree($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2041 | + } elseif (file_exists($destination . '/' . $entryname)) { |
|
| 2042 | + package_put_contents($destination . '/' . $entryname, package_get_contents($source . '/' . $entryname)); |
|
| 2043 | + } else { |
|
| 2044 | + copy($source . '/' . $entryname, $destination . '/' . $entryname); |
|
| 2045 | + } |
|
| 1927 | 2046 | } |
| 1928 | 2047 | |
| 1929 | 2048 | closedir($current_dir); |
@@ -1941,21 +2060,24 @@ discard block |
||
| 1941 | 2060 | $data = array(); |
| 1942 | 2061 | |
| 1943 | 2062 | $dir = @dir($path . $sub_path); |
| 1944 | - if (!$dir) |
|
| 1945 | - return array(); |
|
| 2063 | + if (!$dir) { |
|
| 2064 | + return array(); |
|
| 2065 | + } |
|
| 1946 | 2066 | while ($entry = $dir->read()) |
| 1947 | 2067 | { |
| 1948 | - if ($entry == '.' || $entry == '..') |
|
| 1949 | - continue; |
|
| 2068 | + if ($entry == '.' || $entry == '..') { |
|
| 2069 | + continue; |
|
| 2070 | + } |
|
| 1950 | 2071 | |
| 1951 | - if (is_dir($path . $sub_path . '/' . $entry)) |
|
| 1952 | - $data = array_merge($data, listtree($path, $sub_path . '/' . $entry)); |
|
| 1953 | - else |
|
| 1954 | - $data[] = array( |
|
| 2072 | + if (is_dir($path . $sub_path . '/' . $entry)) { |
|
| 2073 | + $data = array_merge($data, listtree($path, $sub_path . '/' . $entry)); |
|
| 2074 | + } else { |
|
| 2075 | + $data[] = array( |
|
| 1955 | 2076 | 'filename' => $sub_path == '' ? $entry : $sub_path . '/' . $entry, |
| 1956 | 2077 | 'size' => filesize($path . $sub_path . '/' . $entry), |
| 1957 | 2078 | 'skipped' => false, |
| 1958 | 2079 | ); |
| 2080 | + } |
|
| 1959 | 2081 | } |
| 1960 | 2082 | $dir->close(); |
| 1961 | 2083 | |
@@ -2010,8 +2132,9 @@ discard block |
||
| 2010 | 2132 | { |
| 2011 | 2133 | // If this filename is relative, if so take a guess at what it should be. |
| 2012 | 2134 | $real_filename = $filename; |
| 2013 | - if (strpos($filename, 'Themes') === 0) |
|
| 2014 | - $real_filename = $boarddir . '/' . $filename; |
|
| 2135 | + if (strpos($filename, 'Themes') === 0) { |
|
| 2136 | + $real_filename = $boarddir . '/' . $filename; |
|
| 2137 | + } |
|
| 2015 | 2138 | |
| 2016 | 2139 | if (strpos($real_filename, $theme['theme_dir']) === 0) |
| 2017 | 2140 | { |
@@ -2030,8 +2153,9 @@ discard block |
||
| 2030 | 2153 | foreach ($theme_paths as $id => $theme) |
| 2031 | 2154 | { |
| 2032 | 2155 | // Default is getting done anyway, so no need for involvement here. |
| 2033 | - if ($id == 1) |
|
| 2034 | - continue; |
|
| 2156 | + if ($id == 1) { |
|
| 2157 | + continue; |
|
| 2158 | + } |
|
| 2035 | 2159 | |
| 2036 | 2160 | // For every template, do we want it? Yea, no, maybe? |
| 2037 | 2161 | foreach ($template_changes[1] as $index => $template_file) |
@@ -2054,8 +2178,9 @@ discard block |
||
| 2054 | 2178 | ); |
| 2055 | 2179 | |
| 2056 | 2180 | // Sometimes though, we have some additional files for other themes, if we have add them to the mix. |
| 2057 | - if (isset($custom_themes_add[$files_to_change[1]])) |
|
| 2058 | - $files_to_change += $custom_themes_add[$files_to_change[1]]; |
|
| 2181 | + if (isset($custom_themes_add[$files_to_change[1]])) { |
|
| 2182 | + $files_to_change += $custom_themes_add[$files_to_change[1]]; |
|
| 2183 | + } |
|
| 2059 | 2184 | |
| 2060 | 2185 | // Now, loop through all the files we're changing, and, well, change them ;) |
| 2061 | 2186 | foreach ($files_to_change as $theme => $working_file) |
@@ -2089,11 +2214,13 @@ discard block |
||
| 2089 | 2214 | continue; |
| 2090 | 2215 | } |
| 2091 | 2216 | // Okay, we're creating this file then...? |
| 2092 | - elseif (!file_exists($working_file)) |
|
| 2093 | - $working_data = ''; |
|
| 2217 | + elseif (!file_exists($working_file)) { |
|
| 2218 | + $working_data = ''; |
|
| 2219 | + } |
|
| 2094 | 2220 | // Phew, it exists! Load 'er up! |
| 2095 | - else |
|
| 2096 | - $working_data = str_replace("\r", '', package_get_contents($working_file)); |
|
| 2221 | + else { |
|
| 2222 | + $working_data = str_replace("\r", '', package_get_contents($working_file)); |
|
| 2223 | + } |
|
| 2097 | 2224 | |
| 2098 | 2225 | $actions[] = array( |
| 2099 | 2226 | 'type' => 'opened', |
@@ -2114,8 +2241,8 @@ discard block |
||
| 2114 | 2241 | |
| 2115 | 2242 | // Grab all search items of this operation (in most cases just 1). |
| 2116 | 2243 | $searches = $operation->set('search'); |
| 2117 | - foreach ($searches as $i => $search) |
|
| 2118 | - $actual_operation['searches'][] = array( |
|
| 2244 | + foreach ($searches as $i => $search) { |
|
| 2245 | + $actual_operation['searches'][] = array( |
|
| 2119 | 2246 | 'position' => $search->exists('@position') && in_array(trim($search->fetch('@position')), array('before', 'after', 'replace', 'end')) ? trim($search->fetch('@position')) : 'replace', |
| 2120 | 2247 | 'is_reg_exp' => $search->exists('@regexp') && trim($search->fetch('@regexp')) === 'true', |
| 2121 | 2248 | 'loose_whitespace' => $search->exists('@whitespace') && trim($search->fetch('@whitespace')) === 'loose', |
@@ -2124,6 +2251,7 @@ discard block |
||
| 2124 | 2251 | 'preg_search' => '', |
| 2125 | 2252 | 'preg_replace' => '', |
| 2126 | 2253 | ); |
| 2254 | + } |
|
| 2127 | 2255 | |
| 2128 | 2256 | // At least one search should be defined. |
| 2129 | 2257 | if (empty($actual_operation['searches'])) |
@@ -2148,30 +2276,32 @@ discard block |
||
| 2148 | 2276 | // Reverse modification of regular expressions are not allowed. |
| 2149 | 2277 | if ($search['is_reg_exp']) |
| 2150 | 2278 | { |
| 2151 | - if ($actual_operation['error'] === 'fatal') |
|
| 2152 | - $actions[] = array( |
|
| 2279 | + if ($actual_operation['error'] === 'fatal') { |
|
| 2280 | + $actions[] = array( |
|
| 2153 | 2281 | 'type' => 'failure', |
| 2154 | 2282 | 'filename' => $working_file, |
| 2155 | 2283 | 'search' => $search['search'], |
| 2156 | 2284 | 'is_custom' => $theme > 1 ? $theme : 0, |
| 2157 | 2285 | ); |
| 2286 | + } |
|
| 2158 | 2287 | |
| 2159 | 2288 | // Continue to the next operation. |
| 2160 | 2289 | continue 2; |
| 2161 | 2290 | } |
| 2162 | 2291 | |
| 2163 | 2292 | // The replacement is now the search subject... |
| 2164 | - if ($search['position'] === 'replace' || $search['position'] === 'end') |
|
| 2165 | - $actual_operation['searches'][$i]['search'] = $search['add']; |
|
| 2166 | - else |
|
| 2293 | + if ($search['position'] === 'replace' || $search['position'] === 'end') { |
|
| 2294 | + $actual_operation['searches'][$i]['search'] = $search['add']; |
|
| 2295 | + } else |
|
| 2167 | 2296 | { |
| 2168 | 2297 | // Reversing a before/after modification becomes a replacement. |
| 2169 | 2298 | $actual_operation['searches'][$i]['position'] = 'replace'; |
| 2170 | 2299 | |
| 2171 | - if ($search['position'] === 'before') |
|
| 2172 | - $actual_operation['searches'][$i]['search'] .= $search['add']; |
|
| 2173 | - elseif ($search['position'] === 'after') |
|
| 2174 | - $actual_operation['searches'][$i]['search'] = $search['add'] . $search['search']; |
|
| 2300 | + if ($search['position'] === 'before') { |
|
| 2301 | + $actual_operation['searches'][$i]['search'] .= $search['add']; |
|
| 2302 | + } elseif ($search['position'] === 'after') { |
|
| 2303 | + $actual_operation['searches'][$i]['search'] = $search['add'] . $search['search']; |
|
| 2304 | + } |
|
| 2175 | 2305 | } |
| 2176 | 2306 | |
| 2177 | 2307 | // ...and the search subject is now the replacement. |
@@ -2199,16 +2329,17 @@ discard block |
||
| 2199 | 2329 | foreach ($actual_operation['searches'] as $i => $search) |
| 2200 | 2330 | { |
| 2201 | 2331 | // Not much needed if the search subject is already a regexp. |
| 2202 | - if ($search['is_reg_exp']) |
|
| 2203 | - $actual_operation['searches'][$i]['preg_search'] = $search['search']; |
|
| 2204 | - else |
|
| 2332 | + if ($search['is_reg_exp']) { |
|
| 2333 | + $actual_operation['searches'][$i]['preg_search'] = $search['search']; |
|
| 2334 | + } else |
|
| 2205 | 2335 | { |
| 2206 | 2336 | // Make the search subject fit into a regular expression. |
| 2207 | 2337 | $actual_operation['searches'][$i]['preg_search'] = preg_quote($search['search'], '~'); |
| 2208 | 2338 | |
| 2209 | 2339 | // Using 'loose', a random amount of tabs and spaces may be used. |
| 2210 | - if ($search['loose_whitespace']) |
|
| 2211 | - $actual_operation['searches'][$i]['preg_search'] = preg_replace('~[ \t]+~', '[ \t]+', $actual_operation['searches'][$i]['preg_search']); |
|
| 2340 | + if ($search['loose_whitespace']) { |
|
| 2341 | + $actual_operation['searches'][$i]['preg_search'] = preg_replace('~[ \t]+~', '[ \t]+', $actual_operation['searches'][$i]['preg_search']); |
|
| 2342 | + } |
|
| 2212 | 2343 | } |
| 2213 | 2344 | |
| 2214 | 2345 | // Shuzzup. This is done so we can safely use a regular expression. ($0 is bad!!) |
@@ -2234,8 +2365,7 @@ discard block |
||
| 2234 | 2365 | if ($undo) |
| 2235 | 2366 | { |
| 2236 | 2367 | $actual_operation['searches'][$i]['preg_replace'] = ''; |
| 2237 | - } |
|
| 2238 | - else |
|
| 2368 | + } else |
|
| 2239 | 2369 | { |
| 2240 | 2370 | $actual_operation['searches'][$i]['preg_search'] = '(\\n\\?\\>)?$'; |
| 2241 | 2371 | $actual_operation['searches'][$i]['preg_replace'] .= '$1'; |
@@ -2282,8 +2412,9 @@ discard block |
||
| 2282 | 2412 | } |
| 2283 | 2413 | |
| 2284 | 2414 | // Replace it into nothing? That's not an option...unless it's an undoing end. |
| 2285 | - if ($search['add'] === '' && ($search['position'] !== 'end' || !$undo)) |
|
| 2286 | - continue; |
|
| 2415 | + if ($search['add'] === '' && ($search['position'] !== 'end' || !$undo)) { |
|
| 2416 | + continue; |
|
| 2417 | + } |
|
| 2287 | 2418 | |
| 2288 | 2419 | // Finally, we're doing some replacements. |
| 2289 | 2420 | $working_data = preg_replace('~' . $actual_operation['searches'][$i]['preg_search'] . '~s', $actual_operation['searches'][$i]['preg_replace'], $working_data, 1); |
@@ -2308,22 +2439,25 @@ discard block |
||
| 2308 | 2439 | |
| 2309 | 2440 | package_chmod($working_file); |
| 2310 | 2441 | |
| 2311 | - if ((file_exists($working_file) && !is_writable($working_file)) || (!file_exists($working_file) && !is_writable(dirname($working_file)))) |
|
| 2312 | - $actions[] = array( |
|
| 2442 | + if ((file_exists($working_file) && !is_writable($working_file)) || (!file_exists($working_file) && !is_writable(dirname($working_file)))) { |
|
| 2443 | + $actions[] = array( |
|
| 2313 | 2444 | 'type' => 'chmod', |
| 2314 | 2445 | 'filename' => $working_file |
| 2315 | 2446 | ); |
| 2447 | + } |
|
| 2316 | 2448 | |
| 2317 | - if (basename($working_file) == 'Settings_bak.php') |
|
| 2318 | - continue; |
|
| 2449 | + if (basename($working_file) == 'Settings_bak.php') { |
|
| 2450 | + continue; |
|
| 2451 | + } |
|
| 2319 | 2452 | |
| 2320 | 2453 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2321 | 2454 | { |
| 2322 | 2455 | // No, no, not Settings.php! |
| 2323 | - if (basename($working_file) == 'Settings.php') |
|
| 2324 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2325 | - else |
|
| 2326 | - @copy($working_file, $working_file . '~'); |
|
| 2456 | + if (basename($working_file) == 'Settings.php') { |
|
| 2457 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2458 | + } else { |
|
| 2459 | + @copy($working_file, $working_file . '~'); |
|
| 2460 | + } |
|
| 2327 | 2461 | } |
| 2328 | 2462 | |
| 2329 | 2463 | // Always call this, even if in testing, because it won't really be written in testing mode. |
@@ -2390,8 +2524,9 @@ discard block |
||
| 2390 | 2524 | if ($code_match[1] != 'edit file' && $code_match[1] != 'file') |
| 2391 | 2525 | { |
| 2392 | 2526 | // It's a step, let's add that to the current steps. |
| 2393 | - if (isset($temp_changes[$step_counter])) |
|
| 2394 | - $temp_changes[$step_counter]['changes'][] = $code_match[0]; |
|
| 2527 | + if (isset($temp_changes[$step_counter])) { |
|
| 2528 | + $temp_changes[$step_counter]['changes'][] = $code_match[0]; |
|
| 2529 | + } |
|
| 2395 | 2530 | continue; |
| 2396 | 2531 | } |
| 2397 | 2532 | |
@@ -2408,11 +2543,13 @@ discard block |
||
| 2408 | 2543 | foreach ($theme_paths as $id => $theme) |
| 2409 | 2544 | { |
| 2410 | 2545 | // If this filename is relative, if so take a guess at what it should be. |
| 2411 | - if (strpos($filename, 'Themes') === 0) |
|
| 2412 | - $filename = $boarddir . '/' . $filename; |
|
| 2546 | + if (strpos($filename, 'Themes') === 0) { |
|
| 2547 | + $filename = $boarddir . '/' . $filename; |
|
| 2548 | + } |
|
| 2413 | 2549 | |
| 2414 | - if (strpos($filename, $theme['theme_dir']) === 0) |
|
| 2415 | - $template_changes[$id][$counter] = substr($filename, strlen($theme['theme_dir']) + 1); |
|
| 2550 | + if (strpos($filename, $theme['theme_dir']) === 0) { |
|
| 2551 | + $template_changes[$id][$counter] = substr($filename, strlen($theme['theme_dir']) + 1); |
|
| 2552 | + } |
|
| 2416 | 2553 | } |
| 2417 | 2554 | } |
| 2418 | 2555 | |
@@ -2427,8 +2564,9 @@ discard block |
||
| 2427 | 2564 | foreach ($theme_paths as $id => $theme) |
| 2428 | 2565 | { |
| 2429 | 2566 | // Don't do default, it means nothing to me. |
| 2430 | - if ($id == 1) |
|
| 2431 | - continue; |
|
| 2567 | + if ($id == 1) { |
|
| 2568 | + continue; |
|
| 2569 | + } |
|
| 2432 | 2570 | |
| 2433 | 2571 | // Now, for each file do we need to edit it? |
| 2434 | 2572 | foreach ($template_changes[1] as $pos => $template_file) |
@@ -2464,32 +2602,36 @@ discard block |
||
| 2464 | 2602 | package_chmod($working_file); |
| 2465 | 2603 | |
| 2466 | 2604 | // Don't even dare. |
| 2467 | - if (basename($working_file) == 'Settings_bak.php') |
|
| 2468 | - continue; |
|
| 2605 | + if (basename($working_file) == 'Settings_bak.php') { |
|
| 2606 | + continue; |
|
| 2607 | + } |
|
| 2469 | 2608 | |
| 2470 | - if (!is_writable($working_file)) |
|
| 2471 | - $actions[] = array( |
|
| 2609 | + if (!is_writable($working_file)) { |
|
| 2610 | + $actions[] = array( |
|
| 2472 | 2611 | 'type' => 'chmod', |
| 2473 | 2612 | 'filename' => $working_file |
| 2474 | 2613 | ); |
| 2614 | + } |
|
| 2475 | 2615 | |
| 2476 | 2616 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2477 | 2617 | { |
| 2478 | - if (basename($working_file) == 'Settings.php') |
|
| 2479 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2480 | - else |
|
| 2481 | - @copy($working_file, $working_file . '~'); |
|
| 2618 | + if (basename($working_file) == 'Settings.php') { |
|
| 2619 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2620 | + } else { |
|
| 2621 | + @copy($working_file, $working_file . '~'); |
|
| 2622 | + } |
|
| 2482 | 2623 | } |
| 2483 | 2624 | |
| 2484 | 2625 | package_put_contents($working_file, $working_data, $testing); |
| 2485 | 2626 | } |
| 2486 | 2627 | |
| 2487 | - if ($working_file !== null) |
|
| 2488 | - $actions[] = array( |
|
| 2628 | + if ($working_file !== null) { |
|
| 2629 | + $actions[] = array( |
|
| 2489 | 2630 | 'type' => 'saved', |
| 2490 | 2631 | 'filename' => $working_file, |
| 2491 | 2632 | 'is_custom' => $is_custom, |
| 2492 | 2633 | ); |
| 2634 | + } |
|
| 2493 | 2635 | |
| 2494 | 2636 | // Is this "now working on" file a theme specific one? |
| 2495 | 2637 | $is_custom = isset($theme_id_ref[$counter - 1]) ? $theme_id_ref[$counter - 1] : 0; |
@@ -2508,10 +2650,11 @@ discard block |
||
| 2508 | 2650 | { |
| 2509 | 2651 | $places_to_check = array($boarddir, $sourcedir, $settings['default_theme_dir'], $settings['default_theme_dir'] . '/languages'); |
| 2510 | 2652 | |
| 2511 | - foreach ($places_to_check as $place) |
|
| 2512 | - if (file_exists($place . '/' . $working_file)) |
|
| 2653 | + foreach ($places_to_check as $place) { |
|
| 2654 | + if (file_exists($place . '/' . $working_file)) |
|
| 2513 | 2655 | { |
| 2514 | 2656 | $working_file = $place . '/' . $working_file; |
| 2657 | + } |
|
| 2515 | 2658 | break; |
| 2516 | 2659 | } |
| 2517 | 2660 | } |
@@ -2525,8 +2668,7 @@ discard block |
||
| 2525 | 2668 | 'type' => 'opened', |
| 2526 | 2669 | 'filename' => $working_file |
| 2527 | 2670 | ); |
| 2528 | - } |
|
| 2529 | - else |
|
| 2671 | + } else |
|
| 2530 | 2672 | { |
| 2531 | 2673 | $actions[] = array( |
| 2532 | 2674 | 'type' => 'missing', |
@@ -2562,11 +2704,13 @@ discard block |
||
| 2562 | 2704 | $replace_with = $code_match[2]; |
| 2563 | 2705 | |
| 2564 | 2706 | // Add this afterward... |
| 2565 | - if ($code_match[1] == 'add' || $code_match[1] == 'add after') |
|
| 2566 | - $replace_with = $working_search . "\n" . $replace_with; |
|
| 2707 | + if ($code_match[1] == 'add' || $code_match[1] == 'add after') { |
|
| 2708 | + $replace_with = $working_search . "\n" . $replace_with; |
|
| 2709 | + } |
|
| 2567 | 2710 | // Add this beforehand. |
| 2568 | - elseif ($code_match[1] == 'before' || $code_match[1] == 'add before' || $code_match[1] == 'above' || $code_match[1] == 'add above') |
|
| 2569 | - $replace_with .= "\n" . $working_search; |
|
| 2711 | + elseif ($code_match[1] == 'before' || $code_match[1] == 'add before' || $code_match[1] == 'above' || $code_match[1] == 'add above') { |
|
| 2712 | + $replace_with .= "\n" . $working_search; |
|
| 2713 | + } |
|
| 2570 | 2714 | // Otherwise.. replace with $replace_with ;). |
| 2571 | 2715 | } |
| 2572 | 2716 | |
@@ -2629,29 +2773,32 @@ discard block |
||
| 2629 | 2773 | { |
| 2630 | 2774 | package_chmod($working_file); |
| 2631 | 2775 | |
| 2632 | - if (!is_writable($working_file)) |
|
| 2633 | - $actions[] = array( |
|
| 2776 | + if (!is_writable($working_file)) { |
|
| 2777 | + $actions[] = array( |
|
| 2634 | 2778 | 'type' => 'chmod', |
| 2635 | 2779 | 'filename' => $working_file |
| 2636 | 2780 | ); |
| 2781 | + } |
|
| 2637 | 2782 | |
| 2638 | 2783 | if (!$testing && !empty($modSettings['package_make_backups']) && file_exists($working_file)) |
| 2639 | 2784 | { |
| 2640 | - if (basename($working_file) == 'Settings.php') |
|
| 2641 | - @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2642 | - else |
|
| 2643 | - @copy($working_file, $working_file . '~'); |
|
| 2785 | + if (basename($working_file) == 'Settings.php') { |
|
| 2786 | + @copy($working_file, dirname($working_file) . '/Settings_bak.php'); |
|
| 2787 | + } else { |
|
| 2788 | + @copy($working_file, $working_file . '~'); |
|
| 2789 | + } |
|
| 2644 | 2790 | } |
| 2645 | 2791 | |
| 2646 | 2792 | package_put_contents($working_file, $working_data, $testing); |
| 2647 | 2793 | } |
| 2648 | 2794 | |
| 2649 | - if ($working_file !== null) |
|
| 2650 | - $actions[] = array( |
|
| 2795 | + if ($working_file !== null) { |
|
| 2796 | + $actions[] = array( |
|
| 2651 | 2797 | 'type' => 'saved', |
| 2652 | 2798 | 'filename' => $working_file, |
| 2653 | 2799 | 'is_custom' => $is_custom, |
| 2654 | 2800 | ); |
| 2801 | + } |
|
| 2655 | 2802 | |
| 2656 | 2803 | $actions[] = array( |
| 2657 | 2804 | 'type' => 'result', |
@@ -2677,17 +2824,19 @@ discard block |
||
| 2677 | 2824 | $mem_check = setMemoryLimit('128M'); |
| 2678 | 2825 | |
| 2679 | 2826 | // Windows doesn't seem to care about the memory_limit. |
| 2680 | - if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) |
|
| 2681 | - $package_cache = array(); |
|
| 2682 | - else |
|
| 2683 | - $package_cache = false; |
|
| 2827 | + if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) { |
|
| 2828 | + $package_cache = array(); |
|
| 2829 | + } else { |
|
| 2830 | + $package_cache = false; |
|
| 2831 | + } |
|
| 2684 | 2832 | } |
| 2685 | 2833 | |
| 2686 | - if (strpos($filename, 'Packages/') !== false || $package_cache === false || !isset($package_cache[$filename])) |
|
| 2687 | - return file_get_contents($filename); |
|
| 2688 | - else |
|
| 2689 | - return $package_cache[$filename]; |
|
| 2690 | -} |
|
| 2834 | + if (strpos($filename, 'Packages/') !== false || $package_cache === false || !isset($package_cache[$filename])) { |
|
| 2835 | + return file_get_contents($filename); |
|
| 2836 | + } else { |
|
| 2837 | + return $package_cache[$filename]; |
|
| 2838 | + } |
|
| 2839 | + } |
|
| 2691 | 2840 | |
| 2692 | 2841 | /** |
| 2693 | 2842 | * Writes data to a file, almost exactly like the file_put_contents() function. |
@@ -2710,19 +2859,22 @@ discard block |
||
| 2710 | 2859 | // Try to increase the memory limit - we don't want to run out of ram! |
| 2711 | 2860 | $mem_check = setMemoryLimit('128M'); |
| 2712 | 2861 | |
| 2713 | - if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) |
|
| 2714 | - $package_cache = array(); |
|
| 2715 | - else |
|
| 2716 | - $package_cache = false; |
|
| 2862 | + if (!empty($modSettings['package_disable_cache']) || $mem_check || stripos(PHP_OS, 'win') !== false) { |
|
| 2863 | + $package_cache = array(); |
|
| 2864 | + } else { |
|
| 2865 | + $package_cache = false; |
|
| 2866 | + } |
|
| 2717 | 2867 | } |
| 2718 | 2868 | |
| 2719 | - if (isset($package_ftp)) |
|
| 2720 | - $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2869 | + if (isset($package_ftp)) { |
|
| 2870 | + $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2871 | + } |
|
| 2721 | 2872 | |
| 2722 | - if (!file_exists($filename) && isset($package_ftp)) |
|
| 2723 | - $package_ftp->create_file($ftp_file); |
|
| 2724 | - elseif (!file_exists($filename)) |
|
| 2725 | - @touch($filename); |
|
| 2873 | + if (!file_exists($filename) && isset($package_ftp)) { |
|
| 2874 | + $package_ftp->create_file($ftp_file); |
|
| 2875 | + } elseif (!file_exists($filename)) { |
|
| 2876 | + @touch($filename); |
|
| 2877 | + } |
|
| 2726 | 2878 | |
| 2727 | 2879 | package_chmod($filename); |
| 2728 | 2880 | |
@@ -2731,22 +2883,23 @@ discard block |
||
| 2731 | 2883 | $fp = @fopen($filename, in_array(substr($filename, -3), $text_filetypes) ? 'w' : 'wb'); |
| 2732 | 2884 | |
| 2733 | 2885 | // We should show an error message or attempt a rollback, no? |
| 2734 | - if (!$fp) |
|
| 2735 | - return false; |
|
| 2886 | + if (!$fp) { |
|
| 2887 | + return false; |
|
| 2888 | + } |
|
| 2736 | 2889 | |
| 2737 | 2890 | fwrite($fp, $data); |
| 2738 | 2891 | fclose($fp); |
| 2739 | - } |
|
| 2740 | - elseif (strpos($filename, 'Packages/') !== false || $package_cache === false) |
|
| 2741 | - return strlen($data); |
|
| 2742 | - else |
|
| 2892 | + } elseif (strpos($filename, 'Packages/') !== false || $package_cache === false) { |
|
| 2893 | + return strlen($data); |
|
| 2894 | + } else |
|
| 2743 | 2895 | { |
| 2744 | 2896 | $package_cache[$filename] = $data; |
| 2745 | 2897 | |
| 2746 | 2898 | // Permission denied, eh? |
| 2747 | 2899 | $fp = @fopen($filename, 'r+'); |
| 2748 | - if (!$fp) |
|
| 2749 | - return false; |
|
| 2900 | + if (!$fp) { |
|
| 2901 | + return false; |
|
| 2902 | + } |
|
| 2750 | 2903 | fclose($fp); |
| 2751 | 2904 | } |
| 2752 | 2905 | |
@@ -2763,19 +2916,22 @@ discard block |
||
| 2763 | 2916 | global $package_ftp, $package_cache; |
| 2764 | 2917 | static $text_filetypes = array('php', 'txt', '.js', 'css', 'vbs', 'tml', 'htm'); |
| 2765 | 2918 | |
| 2766 | - if (empty($package_cache)) |
|
| 2767 | - return; |
|
| 2919 | + if (empty($package_cache)) { |
|
| 2920 | + return; |
|
| 2921 | + } |
|
| 2768 | 2922 | |
| 2769 | 2923 | // First, let's check permissions! |
| 2770 | 2924 | foreach ($package_cache as $filename => $data) |
| 2771 | 2925 | { |
| 2772 | - if (isset($package_ftp)) |
|
| 2773 | - $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2926 | + if (isset($package_ftp)) { |
|
| 2927 | + $ftp_file = strtr($filename, array($_SESSION['pack_ftp']['root'] => '')); |
|
| 2928 | + } |
|
| 2774 | 2929 | |
| 2775 | - if (!file_exists($filename) && isset($package_ftp)) |
|
| 2776 | - $package_ftp->create_file($ftp_file); |
|
| 2777 | - elseif (!file_exists($filename)) |
|
| 2778 | - @touch($filename); |
|
| 2930 | + if (!file_exists($filename) && isset($package_ftp)) { |
|
| 2931 | + $package_ftp->create_file($ftp_file); |
|
| 2932 | + } elseif (!file_exists($filename)) { |
|
| 2933 | + @touch($filename); |
|
| 2934 | + } |
|
| 2779 | 2935 | |
| 2780 | 2936 | $result = package_chmod($filename); |
| 2781 | 2937 | |
@@ -2822,8 +2978,9 @@ discard block |
||
| 2822 | 2978 | { |
| 2823 | 2979 | global $package_ftp; |
| 2824 | 2980 | |
| 2825 | - if (file_exists($filename) && is_writable($filename) && $perm_state == 'writable') |
|
| 2826 | - return true; |
|
| 2981 | + if (file_exists($filename) && is_writable($filename) && $perm_state == 'writable') { |
|
| 2982 | + return true; |
|
| 2983 | + } |
|
| 2827 | 2984 | |
| 2828 | 2985 | // Start off checking without FTP. |
| 2829 | 2986 | if (!isset($package_ftp) || $package_ftp === false) |
@@ -2845,8 +3002,7 @@ discard block |
||
| 2845 | 3002 | |
| 2846 | 3003 | // Keep track of the writable status here. |
| 2847 | 3004 | $file_permissions = @fileperms($chmod_file); |
| 2848 | - } |
|
| 2849 | - else |
|
| 3005 | + } else |
|
| 2850 | 3006 | { |
| 2851 | 3007 | // This looks odd, but it's an attempt to work around PHP suExec. |
| 2852 | 3008 | if (!file_exists($chmod_file) && $perm_state == 'writable') |
@@ -2856,24 +3012,28 @@ discard block |
||
| 2856 | 3012 | mktree(dirname($chmod_file), 0755); |
| 2857 | 3013 | @touch($chmod_file); |
| 2858 | 3014 | smf_chmod($chmod_file, 0755); |
| 3015 | + } else { |
|
| 3016 | + $file_permissions = @fileperms($chmod_file); |
|
| 2859 | 3017 | } |
| 2860 | - else |
|
| 2861 | - $file_permissions = @fileperms($chmod_file); |
|
| 2862 | 3018 | } |
| 2863 | 3019 | |
| 2864 | 3020 | // This looks odd, but it's another attempt to work around PHP suExec. |
| 2865 | - if ($perm_state != 'writable') |
|
| 2866 | - smf_chmod($chmod_file, $perm_state == 'execute' ? 0755 : 0644); |
|
| 2867 | - else |
|
| 3021 | + if ($perm_state != 'writable') { |
|
| 3022 | + smf_chmod($chmod_file, $perm_state == 'execute' ? 0755 : 0644); |
|
| 3023 | + } else |
|
| 2868 | 3024 | { |
| 2869 | - if (!@is_writable($chmod_file)) |
|
| 2870 | - smf_chmod($chmod_file, 0755); |
|
| 2871 | - if (!@is_writable($chmod_file)) |
|
| 2872 | - smf_chmod($chmod_file, 0777); |
|
| 2873 | - if (!@is_writable(dirname($chmod_file))) |
|
| 2874 | - smf_chmod($chmod_file, 0755); |
|
| 2875 | - if (!@is_writable(dirname($chmod_file))) |
|
| 2876 | - smf_chmod($chmod_file, 0777); |
|
| 3025 | + if (!@is_writable($chmod_file)) { |
|
| 3026 | + smf_chmod($chmod_file, 0755); |
|
| 3027 | + } |
|
| 3028 | + if (!@is_writable($chmod_file)) { |
|
| 3029 | + smf_chmod($chmod_file, 0777); |
|
| 3030 | + } |
|
| 3031 | + if (!@is_writable(dirname($chmod_file))) { |
|
| 3032 | + smf_chmod($chmod_file, 0755); |
|
| 3033 | + } |
|
| 3034 | + if (!@is_writable(dirname($chmod_file))) { |
|
| 3035 | + smf_chmod($chmod_file, 0777); |
|
| 3036 | + } |
|
| 2877 | 3037 | } |
| 2878 | 3038 | |
| 2879 | 3039 | // The ultimate writable test. |
@@ -2882,20 +3042,22 @@ discard block |
||
| 2882 | 3042 | $fp = is_dir($chmod_file) ? @opendir($chmod_file) : @fopen($chmod_file, 'rb'); |
| 2883 | 3043 | if (@is_writable($chmod_file) && $fp) |
| 2884 | 3044 | { |
| 2885 | - if (!is_dir($chmod_file)) |
|
| 2886 | - fclose($fp); |
|
| 2887 | - else |
|
| 2888 | - closedir($fp); |
|
| 3045 | + if (!is_dir($chmod_file)) { |
|
| 3046 | + fclose($fp); |
|
| 3047 | + } else { |
|
| 3048 | + closedir($fp); |
|
| 3049 | + } |
|
| 2889 | 3050 | |
| 2890 | 3051 | // It worked! |
| 2891 | - if ($track_change) |
|
| 2892 | - $_SESSION['pack_ftp']['original_perms'][$chmod_file] = $file_permissions; |
|
| 3052 | + if ($track_change) { |
|
| 3053 | + $_SESSION['pack_ftp']['original_perms'][$chmod_file] = $file_permissions; |
|
| 3054 | + } |
|
| 2893 | 3055 | |
| 2894 | 3056 | return true; |
| 2895 | 3057 | } |
| 3058 | + } elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$chmod_file])) { |
|
| 3059 | + unset($_SESSION['pack_ftp']['original_perms'][$chmod_file]); |
|
| 2896 | 3060 | } |
| 2897 | - elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$chmod_file])) |
|
| 2898 | - unset($_SESSION['pack_ftp']['original_perms'][$chmod_file]); |
|
| 2899 | 3061 | } |
| 2900 | 3062 | |
| 2901 | 3063 | // If we're here we're a failure. |
@@ -2914,31 +3076,33 @@ discard block |
||
| 2914 | 3076 | mktree(dirname($filename), 0755); |
| 2915 | 3077 | $package_ftp->create_file($ftp_file); |
| 2916 | 3078 | $package_ftp->chmod($ftp_file, 0755); |
| 3079 | + } else { |
|
| 3080 | + $file_permissions = @fileperms($filename); |
|
| 2917 | 3081 | } |
| 2918 | - else |
|
| 2919 | - $file_permissions = @fileperms($filename); |
|
| 2920 | 3082 | |
| 2921 | 3083 | if ($perm_state != 'writable') |
| 2922 | 3084 | { |
| 2923 | 3085 | $package_ftp->chmod($ftp_file, $perm_state == 'execute' ? 0755 : 0644); |
| 2924 | - } |
|
| 2925 | - else |
|
| 3086 | + } else |
|
| 2926 | 3087 | { |
| 2927 | - if (!@is_writable($filename)) |
|
| 2928 | - $package_ftp->chmod($ftp_file, 0777); |
|
| 2929 | - if (!@is_writable(dirname($filename))) |
|
| 2930 | - $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 3088 | + if (!@is_writable($filename)) { |
|
| 3089 | + $package_ftp->chmod($ftp_file, 0777); |
|
| 3090 | + } |
|
| 3091 | + if (!@is_writable(dirname($filename))) { |
|
| 3092 | + $package_ftp->chmod(dirname($ftp_file), 0777); |
|
| 3093 | + } |
|
| 2931 | 3094 | } |
| 2932 | 3095 | |
| 2933 | 3096 | if (@is_writable($filename)) |
| 2934 | 3097 | { |
| 2935 | - if ($track_change) |
|
| 2936 | - $_SESSION['pack_ftp']['original_perms'][$filename] = $file_permissions; |
|
| 3098 | + if ($track_change) { |
|
| 3099 | + $_SESSION['pack_ftp']['original_perms'][$filename] = $file_permissions; |
|
| 3100 | + } |
|
| 2937 | 3101 | |
| 2938 | 3102 | return true; |
| 3103 | + } elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$filename])) { |
|
| 3104 | + unset($_SESSION['pack_ftp']['original_perms'][$filename]); |
|
| 2939 | 3105 | } |
| 2940 | - elseif ($perm_state != 'writable' && isset($_SESSION['pack_ftp']['original_perms'][$filename])) |
|
| 2941 | - unset($_SESSION['pack_ftp']['original_perms'][$filename]); |
|
| 2942 | 3106 | } |
| 2943 | 3107 | |
| 2944 | 3108 | // Oh dear, we failed if we get here. |
@@ -2956,11 +3120,13 @@ discard block |
||
| 2956 | 3120 | $n = strlen($pass); |
| 2957 | 3121 | |
| 2958 | 3122 | $salt = session_id(); |
| 2959 | - while (strlen($salt) < $n) |
|
| 2960 | - $salt .= session_id(); |
|
| 3123 | + while (strlen($salt) < $n) { |
|
| 3124 | + $salt .= session_id(); |
|
| 3125 | + } |
|
| 2961 | 3126 | |
| 2962 | - for ($i = 0; $i < $n; $i++) |
|
| 2963 | - $pass{$i} = chr(ord($pass{$i}) ^ (ord($salt{$i}) - 32)); |
|
| 3127 | + for ($i = 0; $i < $n; $i++) { |
|
| 3128 | + $pass{$i} = chr(ord($pass{$i}) ^ (ord($salt{$i}) - 32)); |
|
| 3129 | + } |
|
| 2964 | 3130 | |
| 2965 | 3131 | return $pass; |
| 2966 | 3132 | } |
@@ -2979,8 +3145,9 @@ discard block |
||
| 2979 | 3145 | $base_files = array('index.php', 'SSI.php', 'agreement.txt', 'cron.php', 'ssi_examples.php', 'ssi_examples.shtml', 'subscriptions.php'); |
| 2980 | 3146 | foreach ($base_files as $file) |
| 2981 | 3147 | { |
| 2982 | - if (file_exists($boarddir . '/' . $file)) |
|
| 2983 | - $files[empty($_REQUEST['use_full_paths']) ? $file : $boarddir . '/' . $file] = $boarddir . '/' . $file; |
|
| 3148 | + if (file_exists($boarddir . '/' . $file)) { |
|
| 3149 | + $files[empty($_REQUEST['use_full_paths']) ? $file : $boarddir . '/' . $file] = $boarddir . '/' . $file; |
|
| 3150 | + } |
|
| 2984 | 3151 | } |
| 2985 | 3152 | |
| 2986 | 3153 | $dirs = array( |
@@ -2997,8 +3164,9 @@ discard block |
||
| 2997 | 3164 | 'theme_dir' => 'theme_dir', |
| 2998 | 3165 | ) |
| 2999 | 3166 | ); |
| 3000 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 3001 | - $dirs[$row['value']] = empty($_REQUEST['use_full_paths']) ? 'Themes/' . basename($row['value']) . '/' : strtr($row['value'] . '/', '\\', '/'); |
|
| 3167 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 3168 | + $dirs[$row['value']] = empty($_REQUEST['use_full_paths']) ? 'Themes/' . basename($row['value']) . '/' : strtr($row['value'] . '/', '\\', '/'); |
|
| 3169 | + } |
|
| 3002 | 3170 | $smcFunc['db_free_result']($request); |
| 3003 | 3171 | |
| 3004 | 3172 | try |
@@ -3013,11 +3181,13 @@ discard block |
||
| 3013 | 3181 | |
| 3014 | 3182 | foreach ($iter as $entry => $dir) |
| 3015 | 3183 | { |
| 3016 | - if ($dir->isDir()) |
|
| 3017 | - continue; |
|
| 3184 | + if ($dir->isDir()) { |
|
| 3185 | + continue; |
|
| 3186 | + } |
|
| 3018 | 3187 | |
| 3019 | - if (preg_match('~^(\.{1,2}|CVS|backup.*|help|images|.*\~)$~', $entry) != 0) |
|
| 3020 | - continue; |
|
| 3188 | + if (preg_match('~^(\.{1,2}|CVS|backup.*|help|images|.*\~)$~', $entry) != 0) { |
|
| 3189 | + continue; |
|
| 3190 | + } |
|
| 3021 | 3191 | |
| 3022 | 3192 | $files[empty($_REQUEST['use_full_paths']) ? str_replace(realpath($boarddir), '', $entry) : $entry] = $entry; |
| 3023 | 3193 | } |
@@ -3025,26 +3195,30 @@ discard block |
||
| 3025 | 3195 | $obj = new ArrayObject($files); |
| 3026 | 3196 | $iterator = $obj->getIterator(); |
| 3027 | 3197 | |
| 3028 | - if (!file_exists($packagesdir . '/backups')) |
|
| 3029 | - mktree($packagesdir . '/backups', 0777); |
|
| 3030 | - if (!is_writable($packagesdir . '/backups')) |
|
| 3031 | - package_chmod($packagesdir . '/backups'); |
|
| 3198 | + if (!file_exists($packagesdir . '/backups')) { |
|
| 3199 | + mktree($packagesdir . '/backups', 0777); |
|
| 3200 | + } |
|
| 3201 | + if (!is_writable($packagesdir . '/backups')) { |
|
| 3202 | + package_chmod($packagesdir . '/backups'); |
|
| 3203 | + } |
|
| 3032 | 3204 | $output_file = $packagesdir . '/backups/' . strftime('%Y-%m-%d_') . preg_replace('~[$\\\\/:<>|?*"\']~', '', $id); |
| 3033 | 3205 | $output_ext = '.tar'; |
| 3034 | 3206 | |
| 3035 | 3207 | if (file_exists($output_file . $output_ext)) |
| 3036 | 3208 | { |
| 3037 | 3209 | $i = 2; |
| 3038 | - while (file_exists($output_file . '_' . $i . $output_ext)) |
|
| 3039 | - $i++; |
|
| 3210 | + while (file_exists($output_file . '_' . $i . $output_ext)) { |
|
| 3211 | + $i++; |
|
| 3212 | + } |
|
| 3040 | 3213 | $output_file = $output_file . '_' . $i . $output_ext; |
| 3214 | + } else { |
|
| 3215 | + $output_file .= $output_ext; |
|
| 3041 | 3216 | } |
| 3042 | - else |
|
| 3043 | - $output_file .= $output_ext; |
|
| 3044 | 3217 | |
| 3045 | 3218 | @set_time_limit(300); |
| 3046 | - if (function_exists('apache_reset_timeout')) |
|
| 3047 | - @apache_reset_timeout(); |
|
| 3219 | + if (function_exists('apache_reset_timeout')) { |
|
| 3220 | + @apache_reset_timeout(); |
|
| 3221 | + } |
|
| 3048 | 3222 | |
| 3049 | 3223 | $a = new PharData($output_file); |
| 3050 | 3224 | $a->buildFromIterator($iterator); |
@@ -3056,8 +3230,7 @@ discard block |
||
| 3056 | 3230 | */ |
| 3057 | 3231 | unset($a); |
| 3058 | 3232 | unlink($output_file); |
| 3059 | - } |
|
| 3060 | - catch (Exception $e) |
|
| 3233 | + } catch (Exception $e) |
|
| 3061 | 3234 | { |
| 3062 | 3235 | log_error($e->getMessage(), 'backup'); |
| 3063 | 3236 | |
@@ -3089,32 +3262,35 @@ discard block |
||
| 3089 | 3262 | preg_match('~^(http|ftp)(s)?://([^/:]+)(:(\d+))?(.+)$~', $url, $match); |
| 3090 | 3263 | |
| 3091 | 3264 | // An FTP url. We should try connecting and RETRieving it... |
| 3092 | - if (empty($match[1])) |
|
| 3093 | - return false; |
|
| 3094 | - elseif ($match[1] == 'ftp') |
|
| 3265 | + if (empty($match[1])) { |
|
| 3266 | + return false; |
|
| 3267 | + } elseif ($match[1] == 'ftp') |
|
| 3095 | 3268 | { |
| 3096 | 3269 | // Include the file containing the ftp_connection class. |
| 3097 | 3270 | require_once($sourcedir . '/Class-Package.php'); |
| 3098 | 3271 | |
| 3099 | 3272 | // Establish a connection and attempt to enable passive mode. |
| 3100 | 3273 | $ftp = new ftp_connection(($match[2] ? 'ssl://' : '') . $match[3], empty($match[5]) ? 21 : $match[5], 'anonymous', $webmaster_email); |
| 3101 | - if ($ftp->error !== false || !$ftp->passive()) |
|
| 3102 | - return false; |
|
| 3274 | + if ($ftp->error !== false || !$ftp->passive()) { |
|
| 3275 | + return false; |
|
| 3276 | + } |
|
| 3103 | 3277 | |
| 3104 | 3278 | // I want that one *points*! |
| 3105 | 3279 | fwrite($ftp->connection, 'RETR ' . $match[6] . "\r\n"); |
| 3106 | 3280 | |
| 3107 | 3281 | // Since passive mode worked (or we would have returned already!) open the connection. |
| 3108 | 3282 | $fp = @fsockopen($ftp->pasv['ip'], $ftp->pasv['port'], $err, $err, 5); |
| 3109 | - if (!$fp) |
|
| 3110 | - return false; |
|
| 3283 | + if (!$fp) { |
|
| 3284 | + return false; |
|
| 3285 | + } |
|
| 3111 | 3286 | |
| 3112 | 3287 | // The server should now say something in acknowledgement. |
| 3113 | 3288 | $ftp->check_response(150); |
| 3114 | 3289 | |
| 3115 | 3290 | $data = ''; |
| 3116 | - while (!feof($fp)) |
|
| 3117 | - $data .= fread($fp, 4096); |
|
| 3291 | + while (!feof($fp)) { |
|
| 3292 | + $data .= fread($fp, 4096); |
|
| 3293 | + } |
|
| 3118 | 3294 | fclose($fp); |
| 3119 | 3295 | |
| 3120 | 3296 | // All done, right? Good. |
@@ -3131,22 +3307,25 @@ discard block |
||
| 3131 | 3307 | $fetch_data->get_url_data($url, $post_data); |
| 3132 | 3308 | |
| 3133 | 3309 | // no errors and a 200 result, then we have a good dataset, well we at least have data ;) |
| 3134 | - if ($fetch_data->result('code') == 200 && !$fetch_data->result('error')) |
|
| 3135 | - $data = $fetch_data->result('body'); |
|
| 3136 | - else |
|
| 3137 | - return false; |
|
| 3310 | + if ($fetch_data->result('code') == 200 && !$fetch_data->result('error')) { |
|
| 3311 | + $data = $fetch_data->result('body'); |
|
| 3312 | + } else { |
|
| 3313 | + return false; |
|
| 3314 | + } |
|
| 3138 | 3315 | } |
| 3139 | 3316 | // This is more likely; a standard HTTP URL. |
| 3140 | 3317 | elseif (isset($match[1]) && $match[1] == 'http') |
| 3141 | 3318 | { |
| 3142 | - if ($keep_alive && $match[3] == $keep_alive_dom) |
|
| 3143 | - $fp = $keep_alive_fp; |
|
| 3319 | + if ($keep_alive && $match[3] == $keep_alive_dom) { |
|
| 3320 | + $fp = $keep_alive_fp; |
|
| 3321 | + } |
|
| 3144 | 3322 | if (empty($fp)) |
| 3145 | 3323 | { |
| 3146 | 3324 | // Open the socket on the port we want... |
| 3147 | 3325 | $fp = @fsockopen(($match[2] ? 'ssl://' : '') . $match[3], empty($match[5]) ? ($match[2] ? 443 : 80) : $match[5], $err, $err, 5); |
| 3148 | - if (!$fp) |
|
| 3149 | - return false; |
|
| 3326 | + if (!$fp) { |
|
| 3327 | + return false; |
|
| 3328 | + } |
|
| 3150 | 3329 | } |
| 3151 | 3330 | |
| 3152 | 3331 | if ($keep_alive) |
@@ -3161,20 +3340,21 @@ discard block |
||
| 3161 | 3340 | fwrite($fp, 'GET ' . ($match[6] !== '/' ? str_replace(' ', '%20', $match[6]) : '') . ' HTTP/1.0' . "\r\n"); |
| 3162 | 3341 | fwrite($fp, 'Host: ' . $match[3] . (empty($match[5]) ? ($match[2] ? ':443' : '') : ':' . $match[5]) . "\r\n"); |
| 3163 | 3342 | fwrite($fp, 'User-Agent: PHP/SMF' . "\r\n"); |
| 3164 | - if ($keep_alive) |
|
| 3165 | - fwrite($fp, 'Connection: Keep-Alive' . "\r\n\r\n"); |
|
| 3166 | - else |
|
| 3167 | - fwrite($fp, 'Connection: close' . "\r\n\r\n"); |
|
| 3168 | - } |
|
| 3169 | - else |
|
| 3343 | + if ($keep_alive) { |
|
| 3344 | + fwrite($fp, 'Connection: Keep-Alive' . "\r\n\r\n"); |
|
| 3345 | + } else { |
|
| 3346 | + fwrite($fp, 'Connection: close' . "\r\n\r\n"); |
|
| 3347 | + } |
|
| 3348 | + } else |
|
| 3170 | 3349 | { |
| 3171 | 3350 | fwrite($fp, 'POST ' . ($match[6] !== '/' ? $match[6] : '') . ' HTTP/1.0' . "\r\n"); |
| 3172 | 3351 | fwrite($fp, 'Host: ' . $match[3] . (empty($match[5]) ? ($match[2] ? ':443' : '') : ':' . $match[5]) . "\r\n"); |
| 3173 | 3352 | fwrite($fp, 'User-Agent: PHP/SMF' . "\r\n"); |
| 3174 | - if ($keep_alive) |
|
| 3175 | - fwrite($fp, 'Connection: Keep-Alive' . "\r\n"); |
|
| 3176 | - else |
|
| 3177 | - fwrite($fp, 'Connection: close' . "\r\n"); |
|
| 3353 | + if ($keep_alive) { |
|
| 3354 | + fwrite($fp, 'Connection: Keep-Alive' . "\r\n"); |
|
| 3355 | + } else { |
|
| 3356 | + fwrite($fp, 'Connection: close' . "\r\n"); |
|
| 3357 | + } |
|
| 3178 | 3358 | fwrite($fp, 'Content-Type: application/x-www-form-urlencoded' . "\r\n"); |
| 3179 | 3359 | fwrite($fp, 'Content-Length: ' . strlen($post_data) . "\r\n\r\n"); |
| 3180 | 3360 | fwrite($fp, $post_data); |
@@ -3187,30 +3367,33 @@ discard block |
||
| 3187 | 3367 | { |
| 3188 | 3368 | $header = ''; |
| 3189 | 3369 | $location = ''; |
| 3190 | - while (!feof($fp) && trim($header = fgets($fp, 4096)) != '') |
|
| 3191 | - if (strpos($header, 'Location:') !== false) |
|
| 3370 | + while (!feof($fp) && trim($header = fgets($fp, 4096)) != '') { |
|
| 3371 | + if (strpos($header, 'Location:') !== false) |
|
| 3192 | 3372 | $location = trim(substr($header, strpos($header, ':') + 1)); |
| 3373 | + } |
|
| 3193 | 3374 | |
| 3194 | - if (empty($location)) |
|
| 3195 | - return false; |
|
| 3196 | - else |
|
| 3375 | + if (empty($location)) { |
|
| 3376 | + return false; |
|
| 3377 | + } else |
|
| 3197 | 3378 | { |
| 3198 | - if (!$keep_alive) |
|
| 3199 | - fclose($fp); |
|
| 3379 | + if (!$keep_alive) { |
|
| 3380 | + fclose($fp); |
|
| 3381 | + } |
|
| 3200 | 3382 | return fetch_web_data($location, $post_data, $keep_alive, $redirection_level + 1); |
| 3201 | 3383 | } |
| 3202 | 3384 | } |
| 3203 | 3385 | |
| 3204 | 3386 | // Make sure we get a 200 OK. |
| 3205 | - elseif (preg_match('~^HTTP/\S+\s+20[01]~i', $response) === 0) |
|
| 3206 | - return false; |
|
| 3387 | + elseif (preg_match('~^HTTP/\S+\s+20[01]~i', $response) === 0) { |
|
| 3388 | + return false; |
|
| 3389 | + } |
|
| 3207 | 3390 | |
| 3208 | 3391 | // Skip the headers... |
| 3209 | 3392 | while (!feof($fp) && trim($header = fgets($fp, 4096)) != '') |
| 3210 | 3393 | { |
| 3211 | - if (preg_match('~content-length:\s*(\d+)~i', $header, $match) != 0) |
|
| 3212 | - $content_length = $match[1]; |
|
| 3213 | - elseif (preg_match('~connection:\s*close~i', $header) != 0) |
|
| 3394 | + if (preg_match('~content-length:\s*(\d+)~i', $header, $match) != 0) { |
|
| 3395 | + $content_length = $match[1]; |
|
| 3396 | + } elseif (preg_match('~connection:\s*close~i', $header) != 0) |
|
| 3214 | 3397 | { |
| 3215 | 3398 | $keep_alive_dom = null; |
| 3216 | 3399 | $keep_alive = false; |
@@ -3222,19 +3405,20 @@ discard block |
||
| 3222 | 3405 | $data = ''; |
| 3223 | 3406 | if (isset($content_length)) |
| 3224 | 3407 | { |
| 3225 | - while (!feof($fp) && strlen($data) < $content_length) |
|
| 3226 | - $data .= fread($fp, $content_length - strlen($data)); |
|
| 3227 | - } |
|
| 3228 | - else |
|
| 3408 | + while (!feof($fp) && strlen($data) < $content_length) { |
|
| 3409 | + $data .= fread($fp, $content_length - strlen($data)); |
|
| 3410 | + } |
|
| 3411 | + } else |
|
| 3229 | 3412 | { |
| 3230 | - while (!feof($fp)) |
|
| 3231 | - $data .= fread($fp, 4096); |
|
| 3413 | + while (!feof($fp)) { |
|
| 3414 | + $data .= fread($fp, 4096); |
|
| 3415 | + } |
|
| 3232 | 3416 | } |
| 3233 | 3417 | |
| 3234 | - if (!$keep_alive) |
|
| 3235 | - fclose($fp); |
|
| 3236 | - } |
|
| 3237 | - else |
|
| 3418 | + if (!$keep_alive) { |
|
| 3419 | + fclose($fp); |
|
| 3420 | + } |
|
| 3421 | + } else |
|
| 3238 | 3422 | { |
| 3239 | 3423 | // Umm, this shouldn't happen? |
| 3240 | 3424 | trigger_error('fetch_web_data(): Bad URL', E_USER_NOTICE); |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Redirect to the user help ;). |
@@ -95,12 +96,13 @@ discard block |
||
| 95 | 96 | ); |
| 96 | 97 | |
| 97 | 98 | // Have we got a localized one? |
| 98 | - if (file_exists($boarddir . '/agreement.' . $user_info['language'] . '.txt')) |
|
| 99 | - $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.' . $user_info['language'] . '.txt'), true, 'agreement_' . $user_info['language']); |
|
| 100 | - elseif (file_exists($boarddir . '/agreement.txt')) |
|
| 101 | - $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.txt'), true, 'agreement'); |
|
| 102 | - else |
|
| 103 | - $context['agreement'] = ''; |
|
| 99 | + if (file_exists($boarddir . '/agreement.' . $user_info['language'] . '.txt')) { |
|
| 100 | + $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.' . $user_info['language'] . '.txt'), true, 'agreement_' . $user_info['language']); |
|
| 101 | + } elseif (file_exists($boarddir . '/agreement.txt')) { |
|
| 102 | + $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.txt'), true, 'agreement'); |
|
| 103 | + } else { |
|
| 104 | + $context['agreement'] = ''; |
|
| 105 | + } |
|
| 104 | 106 | |
| 105 | 107 | // Nothing to show, so let's get out of here |
| 106 | 108 | if (empty($context['agreement'])) |
@@ -128,18 +130,21 @@ discard block |
||
| 128 | 130 | { |
| 129 | 131 | global $txt, $helptxt, $context, $scripturl; |
| 130 | 132 | |
| 131 | - if (!isset($_GET['help']) || !is_string($_GET['help'])) |
|
| 132 | - fatal_lang_error('no_access', false); |
|
| 133 | + if (!isset($_GET['help']) || !is_string($_GET['help'])) { |
|
| 134 | + fatal_lang_error('no_access', false); |
|
| 135 | + } |
|
| 133 | 136 | |
| 134 | - if (!isset($helptxt)) |
|
| 135 | - $helptxt = array(); |
|
| 137 | + if (!isset($helptxt)) { |
|
| 138 | + $helptxt = array(); |
|
| 139 | + } |
|
| 136 | 140 | |
| 137 | 141 | // Load the admin help language file and template. |
| 138 | 142 | loadLanguage('Help'); |
| 139 | 143 | |
| 140 | 144 | // Permission specific help? |
| 141 | - if (isset($_GET['help']) && substr($_GET['help'], 0, 14) == 'permissionhelp') |
|
| 142 | - loadLanguage('ManagePermissions'); |
|
| 145 | + if (isset($_GET['help']) && substr($_GET['help'], 0, 14) == 'permissionhelp') { |
|
| 146 | + loadLanguage('ManagePermissions'); |
|
| 147 | + } |
|
| 143 | 148 | |
| 144 | 149 | loadTemplate('Help'); |
| 145 | 150 | |
@@ -154,16 +159,18 @@ discard block |
||
| 154 | 159 | $context['sub_template'] = 'popup'; |
| 155 | 160 | |
| 156 | 161 | // What help string should be used? |
| 157 | - if (isset($helptxt[$_GET['help']])) |
|
| 158 | - $context['help_text'] = $helptxt[$_GET['help']]; |
|
| 159 | - elseif (isset($txt[$_GET['help']])) |
|
| 160 | - $context['help_text'] = $txt[$_GET['help']]; |
|
| 161 | - else |
|
| 162 | - $context['help_text'] = $_GET['help']; |
|
| 162 | + if (isset($helptxt[$_GET['help']])) { |
|
| 163 | + $context['help_text'] = $helptxt[$_GET['help']]; |
|
| 164 | + } elseif (isset($txt[$_GET['help']])) { |
|
| 165 | + $context['help_text'] = $txt[$_GET['help']]; |
|
| 166 | + } else { |
|
| 167 | + $context['help_text'] = $_GET['help']; |
|
| 168 | + } |
|
| 163 | 169 | |
| 164 | 170 | // Does this text contain a link that we should fill in? |
| 165 | - if (preg_match('~%([0-9]+\$)?s\?~', $context['help_text'], $match)) |
|
| 166 | - $context['help_text'] = sprintf($context['help_text'], $scripturl, $context['session_id'], $context['session_var']); |
|
| 167 | -} |
|
| 171 | + if (preg_match('~%([0-9]+\$)?s\?~', $context['help_text'], $match)) { |
|
| 172 | + $context['help_text'] = sprintf($context['help_text'], $scripturl, $context['session_id'], $context['session_var']); |
|
| 173 | + } |
|
| 174 | + } |
|
| 168 | 175 | |
| 169 | 176 | ?> |
| 170 | 177 | \ No newline at end of file |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 3 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -43,8 +44,9 @@ discard block |
||
| 43 | 44 | { |
| 44 | 45 | $supported = is_writable($this->cachedir); |
| 45 | 46 | |
| 46 | - if ($test) |
|
| 47 | - return $supported; |
|
| 47 | + if ($test) { |
|
| 48 | + return $supported; |
|
| 49 | + } |
|
| 48 | 50 | return parent::isSupported() && $supported; |
| 49 | 51 | } |
| 50 | 52 | |
@@ -61,11 +63,13 @@ discard block |
||
| 61 | 63 | { |
| 62 | 64 | // Work around Zend's opcode caching (PHP 5.5+), they would cache older files for a couple of seconds |
| 63 | 65 | // causing newer files to take effect a while later. |
| 64 | - if (function_exists('opcache_invalidate')) |
|
| 65 | - opcache_invalidate($cachedir . '/data_' . $key . '.php', true); |
|
| 66 | + if (function_exists('opcache_invalidate')) { |
|
| 67 | + opcache_invalidate($cachedir . '/data_' . $key . '.php', true); |
|
| 68 | + } |
|
| 66 | 69 | |
| 67 | - if (function_exists('apc_delete_file')) |
|
| 68 | - @apc_delete_file($cachedir . '/data_' . $key . '.php'); |
|
| 70 | + if (function_exists('apc_delete_file')) { |
|
| 71 | + @apc_delete_file($cachedir . '/data_' . $key . '.php'); |
|
| 72 | + } |
|
| 69 | 73 | |
| 70 | 74 | // php will cache file_exists et all, we can't 100% depend on its results so proceed with caution |
| 71 | 75 | @include($cachedir . '/data_' . $key . '.php'); |
@@ -89,16 +93,18 @@ discard block |
||
| 89 | 93 | |
| 90 | 94 | // Work around Zend's opcode caching (PHP 5.5+), they would cache older files for a couple of seconds |
| 91 | 95 | // causing newer files to take effect a while later. |
| 92 | - if (function_exists('opcache_invalidate')) |
|
| 93 | - opcache_invalidate($cachedir . '/data_' . $key . '.php', true); |
|
| 96 | + if (function_exists('opcache_invalidate')) { |
|
| 97 | + opcache_invalidate($cachedir . '/data_' . $key . '.php', true); |
|
| 98 | + } |
|
| 94 | 99 | |
| 95 | - if (function_exists('apc_delete_file')) |
|
| 96 | - @apc_delete_file($cachedir . '/data_' . $key . '.php'); |
|
| 100 | + if (function_exists('apc_delete_file')) { |
|
| 101 | + @apc_delete_file($cachedir . '/data_' . $key . '.php'); |
|
| 102 | + } |
|
| 97 | 103 | |
| 98 | 104 | // Otherwise custom cache? |
| 99 | - if ($value === null) |
|
| 100 | - @unlink($cachedir . '/data_' . $key . '.php'); |
|
| 101 | - else |
|
| 105 | + if ($value === null) { |
|
| 106 | + @unlink($cachedir . '/data_' . $key . '.php'); |
|
| 107 | + } else |
|
| 102 | 108 | { |
| 103 | 109 | $cache_data = '<' . '?' . 'php if (!defined(\'SMF\')) die; if (' . (time() + $ttl) . ' < time()) $expired = true; else{$expired = false; $value = \'' . addcslashes($value, '\\\'') . '\';}' . '?' . '>'; |
| 104 | 110 | |
@@ -109,9 +115,9 @@ discard block |
||
| 109 | 115 | { |
| 110 | 116 | @unlink($cachedir . '/data_' . $key . '.php'); |
| 111 | 117 | return false; |
| 118 | + } else { |
|
| 119 | + return true; |
|
| 112 | 120 | } |
| 113 | - else |
|
| 114 | - return true; |
|
| 115 | 121 | } |
| 116 | 122 | } |
| 117 | 123 | |
@@ -123,15 +129,17 @@ discard block |
||
| 123 | 129 | $cachedir = $this->cachedir; |
| 124 | 130 | |
| 125 | 131 | // No directory = no game. |
| 126 | - if (!is_dir($cachedir)) |
|
| 127 | - return; |
|
| 132 | + if (!is_dir($cachedir)) { |
|
| 133 | + return; |
|
| 134 | + } |
|
| 128 | 135 | |
| 129 | 136 | // Remove the files in SMF's own disk cache, if any |
| 130 | 137 | $dh = opendir($cachedir); |
| 131 | 138 | while ($file = readdir($dh)) |
| 132 | 139 | { |
| 133 | - if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess' && (!$type || substr($file, 0, strlen($type)) == $type)) |
|
| 134 | - @unlink($cachedir . '/' . $file); |
|
| 140 | + if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess' && (!$type || substr($file, 0, strlen($type)) == $type)) { |
|
| 141 | + @unlink($cachedir . '/' . $file); |
|
| 142 | + } |
|
| 135 | 143 | } |
| 136 | 144 | closedir($dh); |
| 137 | 145 | |
@@ -165,8 +173,9 @@ discard block |
||
| 165 | 173 | $config_vars[] = $txt['cache_smf_settings']; |
| 166 | 174 | $config_vars[] = array('cachedir', $txt['cachedir'], 'file', 'text', 36, 'cache_cachedir'); |
| 167 | 175 | |
| 168 | - if (!isset($context['settings_post_javascript'])) |
|
| 169 | - $context['settings_post_javascript'] = ''; |
|
| 176 | + if (!isset($context['settings_post_javascript'])) { |
|
| 177 | + $context['settings_post_javascript'] = ''; |
|
| 178 | + } |
|
| 170 | 179 | |
| 171 | 180 | $context['settings_post_javascript'] .= ' |
| 172 | 181 | $("#cache_accelerator").change(function (e) { |
@@ -187,10 +196,11 @@ discard block |
||
| 187 | 196 | global $cachedir; |
| 188 | 197 | |
| 189 | 198 | // If its invalid, use SMF's. |
| 190 | - if (is_null($dir) || !is_writable($dir)) |
|
| 191 | - $this->cachedir = $cachedir; |
|
| 192 | - else |
|
| 193 | - $this->cachedir = $dir; |
|
| 199 | + if (is_null($dir) || !is_writable($dir)) { |
|
| 200 | + $this->cachedir = $cachedir; |
|
| 201 | + } else { |
|
| 202 | + $this->cachedir = $dir; |
|
| 203 | + } |
|
| 194 | 204 | } |
| 195 | 205 | |
| 196 | 206 | /** |
@@ -21,8 +21,9 @@ discard block |
||
| 21 | 21 | * @version 2.1 Beta 3 |
| 22 | 22 | */ |
| 23 | 23 | |
| 24 | -if (!defined('SMF')) |
|
| 24 | +if (!defined('SMF')) { |
|
| 25 | 25 | die('No direct access...'); |
| 26 | +} |
|
| 26 | 27 | |
| 27 | 28 | /** |
| 28 | 29 | * Handling function for generating reports. |
@@ -69,14 +70,15 @@ discard block |
||
| 69 | 70 | ); |
| 70 | 71 | |
| 71 | 72 | $is_first = 0; |
| 72 | - foreach ($context['report_types'] as $k => $temp) |
|
| 73 | - $context['report_types'][$k] = array( |
|
| 73 | + foreach ($context['report_types'] as $k => $temp) { |
|
| 74 | + $context['report_types'][$k] = array( |
|
| 74 | 75 | 'id' => $k, |
| 75 | 76 | 'title' => isset($txt['gr_type_' . $k]) ? $txt['gr_type_' . $k] : $k, |
| 76 | 77 | 'description' => isset($txt['gr_type_desc_' . $k]) ? $txt['gr_type_desc_' . $k] : null, |
| 77 | 78 | 'function' => $temp, |
| 78 | 79 | 'is_first' => $is_first++ == 0, |
| 79 | 80 | ); |
| 81 | + } |
|
| 80 | 82 | |
| 81 | 83 | // If they haven't chosen a report type which is valid, send them off to the report type chooser! |
| 82 | 84 | if (empty($_REQUEST['rt']) || !isset($context['report_types'][$_REQUEST['rt']])) |
@@ -102,8 +104,9 @@ discard block |
||
| 102 | 104 | $context['sub_template'] = $_REQUEST['st']; |
| 103 | 105 | |
| 104 | 106 | // Are we disabling the other layers - print friendly for example? |
| 105 | - if ($reportTemplates[$_REQUEST['st']]['layers'] !== null) |
|
| 106 | - $context['template_layers'] = $reportTemplates[$_REQUEST['st']]['layers']; |
|
| 107 | + if ($reportTemplates[$_REQUEST['st']]['layers'] !== null) { |
|
| 108 | + $context['template_layers'] = $reportTemplates[$_REQUEST['st']]['layers']; |
|
| 109 | + } |
|
| 107 | 110 | } |
| 108 | 111 | |
| 109 | 112 | // Make the page title more descriptive. |
@@ -151,8 +154,9 @@ discard block |
||
| 151 | 154 | ) |
| 152 | 155 | ); |
| 153 | 156 | $moderators = array(); |
| 154 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 155 | - $moderators[$row['id_board']][] = $row['real_name']; |
|
| 157 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 158 | + $moderators[$row['id_board']][] = $row['real_name']; |
|
| 159 | + } |
|
| 156 | 160 | $smcFunc['db_free_result']($request); |
| 157 | 161 | |
| 158 | 162 | // Get every moderator gruop. |
@@ -164,8 +168,9 @@ discard block |
||
| 164 | 168 | ) |
| 165 | 169 | ); |
| 166 | 170 | $moderator_groups = array(); |
| 167 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 168 | - $moderator_groups[$row['id_board']][] = $row['group_name']; |
|
| 171 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 172 | + $moderator_groups[$row['id_board']][] = $row['group_name']; |
|
| 173 | + } |
|
| 169 | 174 | $smcFunc['db_free_result']($request); |
| 170 | 175 | |
| 171 | 176 | // Get all the possible membergroups! |
@@ -176,8 +181,9 @@ discard block |
||
| 176 | 181 | ) |
| 177 | 182 | ); |
| 178 | 183 | $groups = array(-1 => $txt['guest_title'], 0 => $txt['full_member']); |
| 179 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 180 | - $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 184 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 185 | + $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 186 | + } |
|
| 181 | 187 | $smcFunc['db_free_result']($request); |
| 182 | 188 | |
| 183 | 189 | // All the fields we'll show. |
@@ -195,8 +201,9 @@ discard block |
||
| 195 | 201 | 'moderator_groups' => $txt['board_moderator_groups'], |
| 196 | 202 | 'groups' => $txt['board_groups'], |
| 197 | 203 | ); |
| 198 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 199 | - $boardSettings['disallowed_groups'] = $txt['board_disallowed_groups']; |
|
| 204 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 205 | + $boardSettings['disallowed_groups'] = $txt['board_disallowed_groups']; |
|
| 206 | + } |
|
| 200 | 207 | |
| 201 | 208 | // Do it in columns, it's just easier. |
| 202 | 209 | setKeys('cols'); |
@@ -222,8 +229,9 @@ discard block |
||
| 222 | 229 | newTable($row['name'], '', 'left', 'auto', 'left', 200, 'left'); |
| 223 | 230 | |
| 224 | 231 | $this_boardSettings = $boardSettings; |
| 225 | - if (empty($row['redirect'])) |
|
| 226 | - unset($this_boardSettings['redirect']); |
|
| 232 | + if (empty($row['redirect'])) { |
|
| 233 | + unset($this_boardSettings['redirect']); |
|
| 234 | + } |
|
| 227 | 235 | |
| 228 | 236 | // First off, add in the side key. |
| 229 | 237 | addData($this_boardSettings); |
@@ -250,10 +258,11 @@ discard block |
||
| 250 | 258 | $allowedGroups = explode(',', $row['member_groups']); |
| 251 | 259 | foreach ($allowedGroups as $key => $group) |
| 252 | 260 | { |
| 253 | - if (isset($groups[$group])) |
|
| 254 | - $allowedGroups[$key] = $groups[$group]; |
|
| 255 | - else |
|
| 256 | - unset($allowedGroups[$key]); |
|
| 261 | + if (isset($groups[$group])) { |
|
| 262 | + $allowedGroups[$key] = $groups[$group]; |
|
| 263 | + } else { |
|
| 264 | + unset($allowedGroups[$key]); |
|
| 265 | + } |
|
| 257 | 266 | } |
| 258 | 267 | $boardData['groups'] = implode(', ', $allowedGroups); |
| 259 | 268 | if (!empty($modSettings['deny_boards_access'])) |
@@ -261,16 +270,18 @@ discard block |
||
| 261 | 270 | $disallowedGroups = explode(',', $row['deny_member_groups']); |
| 262 | 271 | foreach ($disallowedGroups as $key => $group) |
| 263 | 272 | { |
| 264 | - if (isset($groups[$group])) |
|
| 265 | - $disallowedGroups[$key] = $groups[$group]; |
|
| 266 | - else |
|
| 267 | - unset($disallowedGroups[$key]); |
|
| 273 | + if (isset($groups[$group])) { |
|
| 274 | + $disallowedGroups[$key] = $groups[$group]; |
|
| 275 | + } else { |
|
| 276 | + unset($disallowedGroups[$key]); |
|
| 277 | + } |
|
| 268 | 278 | } |
| 269 | 279 | $boardData['disallowed_groups'] = implode(', ', $disallowedGroups); |
| 270 | 280 | } |
| 271 | 281 | |
| 272 | - if (empty($row['redirect'])) |
|
| 273 | - unset ($boardData['redirect']); |
|
| 282 | + if (empty($row['redirect'])) { |
|
| 283 | + unset ($boardData['redirect']); |
|
| 284 | + } |
|
| 274 | 285 | |
| 275 | 286 | // Next add the main data. |
| 276 | 287 | addData($boardData); |
@@ -295,27 +306,31 @@ discard block |
||
| 295 | 306 | |
| 296 | 307 | if (isset($_REQUEST['boards'])) |
| 297 | 308 | { |
| 298 | - if (!is_array($_REQUEST['boards'])) |
|
| 299 | - $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
|
| 300 | - foreach ($_REQUEST['boards'] as $k => $dummy) |
|
| 301 | - $_REQUEST['boards'][$k] = (int) $dummy; |
|
| 309 | + if (!is_array($_REQUEST['boards'])) { |
|
| 310 | + $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
|
| 311 | + } |
|
| 312 | + foreach ($_REQUEST['boards'] as $k => $dummy) { |
|
| 313 | + $_REQUEST['boards'][$k] = (int) $dummy; |
|
| 314 | + } |
|
| 302 | 315 | |
| 303 | 316 | $board_clause = 'id_board IN ({array_int:boards})'; |
| 317 | + } else { |
|
| 318 | + $board_clause = '1=1'; |
|
| 304 | 319 | } |
| 305 | - else |
|
| 306 | - $board_clause = '1=1'; |
|
| 307 | 320 | |
| 308 | 321 | if (isset($_REQUEST['groups'])) |
| 309 | 322 | { |
| 310 | - if (!is_array($_REQUEST['groups'])) |
|
| 311 | - $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 312 | - foreach ($_REQUEST['groups'] as $k => $dummy) |
|
| 313 | - $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 323 | + if (!is_array($_REQUEST['groups'])) { |
|
| 324 | + $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 325 | + } |
|
| 326 | + foreach ($_REQUEST['groups'] as $k => $dummy) { |
|
| 327 | + $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 328 | + } |
|
| 314 | 329 | |
| 315 | 330 | $group_clause = 'id_group IN ({array_int:groups})'; |
| 331 | + } else { |
|
| 332 | + $group_clause = '1=1'; |
|
| 316 | 333 | } |
| 317 | - else |
|
| 318 | - $group_clause = '1=1'; |
|
| 319 | 334 | |
| 320 | 335 | // Fetch all the board names. |
| 321 | 336 | $request = $smcFunc['db_query']('', ' |
@@ -369,12 +384,14 @@ discard block |
||
| 369 | 384 | 'groups' => isset($_REQUEST['groups']) ? $_REQUEST['groups'] : array(), |
| 370 | 385 | ) |
| 371 | 386 | ); |
| 372 | - if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) |
|
| 373 | - $member_groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 374 | - else |
|
| 375 | - $member_groups = array('col' => ''); |
|
| 376 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 377 | - $member_groups[$row['id_group']] = $row['group_name']; |
|
| 387 | + if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) { |
|
| 388 | + $member_groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 389 | + } else { |
|
| 390 | + $member_groups = array('col' => ''); |
|
| 391 | + } |
|
| 392 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 393 | + $member_groups[$row['id_group']] = $row['group_name']; |
|
| 394 | + } |
|
| 378 | 395 | $smcFunc['db_free_result']($request); |
| 379 | 396 | |
| 380 | 397 | // Make sure that every group is represented - plus in rows! |
@@ -411,12 +428,14 @@ discard block |
||
| 411 | 428 | ); |
| 412 | 429 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 413 | 430 | { |
| 414 | - if (in_array($row['permission'], $disabled_permissions)) |
|
| 415 | - continue; |
|
| 431 | + if (in_array($row['permission'], $disabled_permissions)) { |
|
| 432 | + continue; |
|
| 433 | + } |
|
| 416 | 434 | |
| 417 | - foreach ($boards as $id => $board) |
|
| 418 | - if ($board['profile'] == $row['id_profile']) |
|
| 435 | + foreach ($boards as $id => $board) { |
|
| 436 | + if ($board['profile'] == $row['id_profile']) |
|
| 419 | 437 | $board_permissions[$id][$row['id_group']][$row['permission']] = $row['add_deny']; |
| 438 | + } |
|
| 420 | 439 | |
| 421 | 440 | // Make sure we get every permission. |
| 422 | 441 | if (!isset($permissions[$row['permission']])) |
@@ -454,8 +473,9 @@ discard block |
||
| 454 | 473 | foreach ($member_groups as $id_group => $name) |
| 455 | 474 | { |
| 456 | 475 | // Don't overwrite the key column! |
| 457 | - if ($id_group === 'col') |
|
| 458 | - continue; |
|
| 476 | + if ($id_group === 'col') { |
|
| 477 | + continue; |
|
| 478 | + } |
|
| 459 | 479 | |
| 460 | 480 | $group_permissions = isset($groups[$id_group]) ? $groups[$id_group] : array(); |
| 461 | 481 | |
@@ -477,16 +497,18 @@ discard block |
||
| 477 | 497 | } |
| 478 | 498 | |
| 479 | 499 | // Now actually make the data for the group look right. |
| 480 | - if (empty($curData[$id_group])) |
|
| 481 | - $curData[$id_group] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 482 | - elseif ($curData[$id_group] == 1) |
|
| 483 | - $curData[$id_group] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 484 | - else |
|
| 485 | - $curData[$id_group] = 'x'; |
|
| 500 | + if (empty($curData[$id_group])) { |
|
| 501 | + $curData[$id_group] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 502 | + } elseif ($curData[$id_group] == 1) { |
|
| 503 | + $curData[$id_group] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 504 | + } else { |
|
| 505 | + $curData[$id_group] = 'x'; |
|
| 506 | + } |
|
| 486 | 507 | |
| 487 | 508 | // Embolden those permissions different from global (makes it a lot easier!) |
| 488 | - if (@$board_permissions[0][$id_group][$ID_PERM] != @$group_permissions[$ID_PERM]) |
|
| 489 | - $curData[$id_group] = '<strong>' . $curData[$id_group] . '</strong>'; |
|
| 509 | + if (@$board_permissions[0][$id_group][$ID_PERM] != @$group_permissions[$ID_PERM]) { |
|
| 510 | + $curData[$id_group] = '<strong>' . $curData[$id_group] . '</strong>'; |
|
| 511 | + } |
|
| 490 | 512 | } |
| 491 | 513 | |
| 492 | 514 | // Now add the data for this permission. |
@@ -516,15 +538,17 @@ discard block |
||
| 516 | 538 | ); |
| 517 | 539 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 518 | 540 | { |
| 519 | - if (trim($row['member_groups']) == '') |
|
| 520 | - $groups = array(1); |
|
| 521 | - else |
|
| 522 | - $groups = array_merge(array(1), explode(',', $row['member_groups'])); |
|
| 541 | + if (trim($row['member_groups']) == '') { |
|
| 542 | + $groups = array(1); |
|
| 543 | + } else { |
|
| 544 | + $groups = array_merge(array(1), explode(',', $row['member_groups'])); |
|
| 545 | + } |
|
| 523 | 546 | |
| 524 | - if (trim($row['deny_member_groups']) == '') |
|
| 525 | - $denyGroups = array(); |
|
| 526 | - else |
|
| 527 | - $denyGroups = explode(',', $row['deny_member_groups']); |
|
| 547 | + if (trim($row['deny_member_groups']) == '') { |
|
| 548 | + $denyGroups = array(); |
|
| 549 | + } else { |
|
| 550 | + $denyGroups = explode(',', $row['deny_member_groups']); |
|
| 551 | + } |
|
| 528 | 552 | |
| 529 | 553 | $boards[$row['id_board']] = array( |
| 530 | 554 | 'id' => $row['id_board'], |
@@ -548,8 +572,9 @@ discard block |
||
| 548 | 572 | ); |
| 549 | 573 | |
| 550 | 574 | // Add on the boards! |
| 551 | - foreach ($boards as $board) |
|
| 552 | - $mgSettings['board_' . $board['id']] = $board['name']; |
|
| 575 | + foreach ($boards as $board) { |
|
| 576 | + $mgSettings['board_' . $board['id']] = $board['name']; |
|
| 577 | + } |
|
| 553 | 578 | |
| 554 | 579 | // Add all the membergroup settings, plus we'll be adding in columns! |
| 555 | 580 | setKeys('cols', $mgSettings); |
@@ -594,8 +619,9 @@ discard block |
||
| 594 | 619 | 'icons' => '' |
| 595 | 620 | ), |
| 596 | 621 | ); |
| 597 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 598 | - $rows[] = $row; |
|
| 622 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 623 | + $rows[] = $row; |
|
| 624 | + } |
|
| 599 | 625 | $smcFunc['db_free_result']($request); |
| 600 | 626 | |
| 601 | 627 | foreach ($rows as $row) |
@@ -611,8 +637,9 @@ discard block |
||
| 611 | 637 | ); |
| 612 | 638 | |
| 613 | 639 | // Board permissions. |
| 614 | - foreach ($boards as $board) |
|
| 615 | - $group['board_' . $board['id']] = in_array($row['id_group'], $board['groups']) ? '<span class="success">' . $txt['board_perms_allow'] . '</span>' : (!empty($modSettings['deny_boards_access']) && in_array($row['id_group'], $board['deny_groups']) ? '<span class="alert">' . $txt['board_perms_deny'] . '</span>' : 'x'); |
|
| 640 | + foreach ($boards as $board) { |
|
| 641 | + $group['board_' . $board['id']] = in_array($row['id_group'], $board['groups']) ? '<span class="success">' . $txt['board_perms_allow'] . '</span>' : (!empty($modSettings['deny_boards_access']) && in_array($row['id_group'], $board['deny_groups']) ? '<span class="alert">' . $txt['board_perms_deny'] . '</span>' : 'x'); |
|
| 642 | + } |
|
| 616 | 643 | |
| 617 | 644 | addData($group); |
| 618 | 645 | } |
@@ -632,16 +659,18 @@ discard block |
||
| 632 | 659 | |
| 633 | 660 | if (isset($_REQUEST['groups'])) |
| 634 | 661 | { |
| 635 | - if (!is_array($_REQUEST['groups'])) |
|
| 636 | - $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 637 | - foreach ($_REQUEST['groups'] as $k => $dummy) |
|
| 638 | - $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 662 | + if (!is_array($_REQUEST['groups'])) { |
|
| 663 | + $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 664 | + } |
|
| 665 | + foreach ($_REQUEST['groups'] as $k => $dummy) { |
|
| 666 | + $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 667 | + } |
|
| 639 | 668 | $_REQUEST['groups'] = array_diff($_REQUEST['groups'], array(3)); |
| 640 | 669 | |
| 641 | 670 | $clause = 'id_group IN ({array_int:groups})'; |
| 671 | + } else { |
|
| 672 | + $clause = 'id_group != {int:moderator_group}'; |
|
| 642 | 673 | } |
| 643 | - else |
|
| 644 | - $clause = 'id_group != {int:moderator_group}'; |
|
| 645 | 674 | |
| 646 | 675 | // Get all the possible membergroups, except admin! |
| 647 | 676 | $request = $smcFunc['db_query']('', ' |
@@ -659,12 +688,14 @@ discard block |
||
| 659 | 688 | 'groups' => isset($_REQUEST['groups']) ? $_REQUEST['groups'] : array(), |
| 660 | 689 | ) |
| 661 | 690 | ); |
| 662 | - if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) |
|
| 663 | - $groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 664 | - else |
|
| 665 | - $groups = array('col' => ''); |
|
| 666 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 667 | - $groups[$row['id_group']] = $row['group_name']; |
|
| 691 | + if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) { |
|
| 692 | + $groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 693 | + } else { |
|
| 694 | + $groups = array('col' => ''); |
|
| 695 | + } |
|
| 696 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 697 | + $groups[$row['id_group']] = $row['group_name']; |
|
| 698 | + } |
|
| 668 | 699 | $smcFunc['db_free_result']($request); |
| 669 | 700 | |
| 670 | 701 | // Make sure that every group is represented! |
@@ -688,8 +719,9 @@ discard block |
||
| 688 | 719 | $disabled_permissions[] = 'calendar_edit_own'; |
| 689 | 720 | $disabled_permissions[] = 'calendar_edit_any'; |
| 690 | 721 | } |
| 691 | - if (empty($modSettings['warning_settings']) || $modSettings['warning_settings'][0] == 0) |
|
| 692 | - $disabled_permissions[] = 'issue_warning'; |
|
| 722 | + if (empty($modSettings['warning_settings']) || $modSettings['warning_settings'][0] == 0) { |
|
| 723 | + $disabled_permissions[] = 'issue_warning'; |
|
| 724 | + } |
|
| 693 | 725 | |
| 694 | 726 | call_integration_hook('integrate_reports_groupperm', array(&$disabled_permissions)); |
| 695 | 727 | |
@@ -710,15 +742,17 @@ discard block |
||
| 710 | 742 | $curData = array(); |
| 711 | 743 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 712 | 744 | { |
| 713 | - if (in_array($row['permission'], $disabled_permissions)) |
|
| 714 | - continue; |
|
| 745 | + if (in_array($row['permission'], $disabled_permissions)) { |
|
| 746 | + continue; |
|
| 747 | + } |
|
| 715 | 748 | |
| 716 | 749 | // If this is a new permission flush the last row. |
| 717 | 750 | if ($row['permission'] != $lastPermission) |
| 718 | 751 | { |
| 719 | 752 | // Send the data! |
| 720 | - if ($lastPermission !== null) |
|
| 721 | - addData($curData); |
|
| 753 | + if ($lastPermission !== null) { |
|
| 754 | + addData($curData); |
|
| 755 | + } |
|
| 722 | 756 | |
| 723 | 757 | // Add the permission name in the left column. |
| 724 | 758 | $curData = array('col' => isset($txt['group_perms_name_' . $row['permission']]) ? $txt['group_perms_name_' . $row['permission']] : $row['permission']); |
@@ -727,10 +761,11 @@ discard block |
||
| 727 | 761 | } |
| 728 | 762 | |
| 729 | 763 | // Good stuff - add the permission to the list! |
| 730 | - if ($row['add_deny']) |
|
| 731 | - $curData[$row['id_group']] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 732 | - else |
|
| 733 | - $curData[$row['id_group']] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 764 | + if ($row['add_deny']) { |
|
| 765 | + $curData[$row['id_group']] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 766 | + } else { |
|
| 767 | + $curData[$row['id_group']] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 768 | + } |
|
| 734 | 769 | } |
| 735 | 770 | $smcFunc['db_free_result']($request); |
| 736 | 771 | |
@@ -760,8 +795,9 @@ discard block |
||
| 760 | 795 | ) |
| 761 | 796 | ); |
| 762 | 797 | $boards = array(); |
| 763 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 764 | - $boards[$row['id_board']] = $row['name']; |
|
| 798 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 799 | + $boards[$row['id_board']] = $row['name']; |
|
| 800 | + } |
|
| 765 | 801 | $smcFunc['db_free_result']($request); |
| 766 | 802 | |
| 767 | 803 | // Get every moderator. |
@@ -793,12 +829,14 @@ discard block |
||
| 793 | 829 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 794 | 830 | { |
| 795 | 831 | // Either we don't have them as a moderator at all or at least not as a moderator of this board |
| 796 | - if (!array_key_exists($row['id_member'], $moderators) || !in_array($row['id_board'], $moderators[$row['id_member']])) |
|
| 797 | - $moderators[$row['id_member']][] = $row['id_board']; |
|
| 832 | + if (!array_key_exists($row['id_member'], $moderators) || !in_array($row['id_board'], $moderators[$row['id_member']])) { |
|
| 833 | + $moderators[$row['id_member']][] = $row['id_board']; |
|
| 834 | + } |
|
| 798 | 835 | |
| 799 | 836 | // We don't have them listed as a moderator yet |
| 800 | - if (!array_key_exists($row['id_member'], $local_mods)) |
|
| 801 | - $local_mods[$row['id_member']] = $row['id_member']; |
|
| 837 | + if (!array_key_exists($row['id_member'], $local_mods)) { |
|
| 838 | + $local_mods[$row['id_member']] = $row['id_member']; |
|
| 839 | + } |
|
| 802 | 840 | } |
| 803 | 841 | |
| 804 | 842 | // Get a list of global moderators (i.e. members with moderation powers). |
@@ -811,8 +849,9 @@ discard block |
||
| 811 | 849 | $allStaff = array_unique($allStaff); |
| 812 | 850 | |
| 813 | 851 | // This is a bit of a cop out - but we're protecting their forum, really! |
| 814 | - if (count($allStaff) > 300) |
|
| 815 | - fatal_lang_error('report_error_too_many_staff'); |
|
| 852 | + if (count($allStaff) > 300) { |
|
| 853 | + fatal_lang_error('report_error_too_many_staff'); |
|
| 854 | + } |
|
| 816 | 855 | |
| 817 | 856 | // Get all the possible membergroups! |
| 818 | 857 | $request = $smcFunc['db_query']('', ' |
@@ -822,8 +861,9 @@ discard block |
||
| 822 | 861 | ) |
| 823 | 862 | ); |
| 824 | 863 | $groups = array(0 => $txt['full_member']); |
| 825 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 826 | - $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 864 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 865 | + $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 866 | + } |
|
| 827 | 867 | $smcFunc['db_free_result']($request); |
| 828 | 868 | |
| 829 | 869 | // All the fields we'll show. |
@@ -864,19 +904,20 @@ discard block |
||
| 864 | 904 | ); |
| 865 | 905 | |
| 866 | 906 | // What do they moderate? |
| 867 | - if (in_array($row['id_member'], $global_mods)) |
|
| 868 | - $staffData['moderates'] = '<em>' . $txt['report_staff_all_boards'] . '</em>'; |
|
| 869 | - elseif (isset($moderators[$row['id_member']])) |
|
| 907 | + if (in_array($row['id_member'], $global_mods)) { |
|
| 908 | + $staffData['moderates'] = '<em>' . $txt['report_staff_all_boards'] . '</em>'; |
|
| 909 | + } elseif (isset($moderators[$row['id_member']])) |
|
| 870 | 910 | { |
| 871 | 911 | // Get the names |
| 872 | - foreach ($moderators[$row['id_member']] as $board) |
|
| 873 | - if (isset($boards[$board])) |
|
| 912 | + foreach ($moderators[$row['id_member']] as $board) { |
|
| 913 | + if (isset($boards[$board])) |
|
| 874 | 914 | $staffData['moderates'][] = $boards[$board]; |
| 915 | + } |
|
| 875 | 916 | |
| 876 | 917 | $staffData['moderates'] = implode(', ', $staffData['moderates']); |
| 918 | + } else { |
|
| 919 | + $staffData['moderates'] = '<em>' . $txt['report_staff_no_boards'] . '</em>'; |
|
| 877 | 920 | } |
| 878 | - else |
|
| 879 | - $staffData['moderates'] = '<em>' . $txt['report_staff_no_boards'] . '</em>'; |
|
| 880 | 921 | |
| 881 | 922 | // Next add the main data. |
| 882 | 923 | addData($staffData); |
@@ -904,8 +945,9 @@ discard block |
||
| 904 | 945 | global $context; |
| 905 | 946 | |
| 906 | 947 | // Set the table count if needed. |
| 907 | - if (empty($context['table_count'])) |
|
| 908 | - $context['table_count'] = 0; |
|
| 948 | + if (empty($context['table_count'])) { |
|
| 949 | + $context['table_count'] = 0; |
|
| 950 | + } |
|
| 909 | 951 | |
| 910 | 952 | // Create the table! |
| 911 | 953 | $context['tables'][$context['table_count']] = array( |
@@ -955,16 +997,18 @@ discard block |
||
| 955 | 997 | global $context; |
| 956 | 998 | |
| 957 | 999 | // No tables? Create one even though we are probably already in a bad state! |
| 958 | - if (empty($context['table_count'])) |
|
| 959 | - newTable(); |
|
| 1000 | + if (empty($context['table_count'])) { |
|
| 1001 | + newTable(); |
|
| 1002 | + } |
|
| 960 | 1003 | |
| 961 | 1004 | // Specific table? |
| 962 | - if ($custom_table !== null && !isset($context['tables'][$custom_table])) |
|
| 963 | - return false; |
|
| 964 | - elseif ($custom_table !== null) |
|
| 965 | - $table = $custom_table; |
|
| 966 | - else |
|
| 967 | - $table = $context['current_table']; |
|
| 1005 | + if ($custom_table !== null && !isset($context['tables'][$custom_table])) { |
|
| 1006 | + return false; |
|
| 1007 | + } elseif ($custom_table !== null) { |
|
| 1008 | + $table = $custom_table; |
|
| 1009 | + } else { |
|
| 1010 | + $table = $context['current_table']; |
|
| 1011 | + } |
|
| 968 | 1012 | |
| 969 | 1013 | // If we have keys, sanitise the data... |
| 970 | 1014 | if (!empty($context['keys'])) |
@@ -976,11 +1020,11 @@ discard block |
||
| 976 | 1020 | 'v' => empty($inc_data[$key]) ? $context['tables'][$table]['default_value'] : $inc_data[$key], |
| 977 | 1021 | ); |
| 978 | 1022 | // Special "hack" the adding separators when doing data by column. |
| 979 | - if (substr($key, 0, 5) == '#sep#') |
|
| 980 | - $data[$key]['separator'] = true; |
|
| 1023 | + if (substr($key, 0, 5) == '#sep#') { |
|
| 1024 | + $data[$key]['separator'] = true; |
|
| 1025 | + } |
|
| 981 | 1026 | } |
| 982 | - } |
|
| 983 | - else |
|
| 1027 | + } else |
|
| 984 | 1028 | { |
| 985 | 1029 | $data = $inc_data; |
| 986 | 1030 | foreach ($data as $key => $value) |
@@ -988,8 +1032,9 @@ discard block |
||
| 988 | 1032 | $data[$key] = array( |
| 989 | 1033 | 'v' => $value, |
| 990 | 1034 | ); |
| 991 | - if (substr($key, 0, 5) == '#sep#') |
|
| 992 | - $data[$key]['separator'] = true; |
|
| 1035 | + if (substr($key, 0, 5) == '#sep#') { |
|
| 1036 | + $data[$key]['separator'] = true; |
|
| 1037 | + } |
|
| 993 | 1038 | } |
| 994 | 1039 | } |
| 995 | 1040 | |
@@ -1002,8 +1047,9 @@ discard block |
||
| 1002 | 1047 | // Otherwise, tricky! |
| 1003 | 1048 | else |
| 1004 | 1049 | { |
| 1005 | - foreach ($data as $key => $item) |
|
| 1006 | - $context['tables'][$table]['data'][$key][] = $item; |
|
| 1050 | + foreach ($data as $key => $item) { |
|
| 1051 | + $context['tables'][$table]['data'][$key][] = $item; |
|
| 1052 | + } |
|
| 1007 | 1053 | } |
| 1008 | 1054 | } |
| 1009 | 1055 | |
@@ -1020,16 +1066,18 @@ discard block |
||
| 1020 | 1066 | global $context; |
| 1021 | 1067 | |
| 1022 | 1068 | // No tables - return? |
| 1023 | - if (empty($context['table_count'])) |
|
| 1024 | - return; |
|
| 1069 | + if (empty($context['table_count'])) { |
|
| 1070 | + return; |
|
| 1071 | + } |
|
| 1025 | 1072 | |
| 1026 | 1073 | // Specific table? |
| 1027 | - if ($custom_table !== null && !isset($context['tables'][$table])) |
|
| 1028 | - return false; |
|
| 1029 | - elseif ($custom_table !== null) |
|
| 1030 | - $table = $custom_table; |
|
| 1031 | - else |
|
| 1032 | - $table = $context['current_table']; |
|
| 1074 | + if ($custom_table !== null && !isset($context['tables'][$table])) { |
|
| 1075 | + return false; |
|
| 1076 | + } elseif ($custom_table !== null) { |
|
| 1077 | + $table = $custom_table; |
|
| 1078 | + } else { |
|
| 1079 | + $table = $context['current_table']; |
|
| 1080 | + } |
|
| 1033 | 1081 | |
| 1034 | 1082 | // Plumb in the separator |
| 1035 | 1083 | $context['tables'][$table]['data'][] = array(0 => array( |
@@ -1050,8 +1098,9 @@ discard block |
||
| 1050 | 1098 | { |
| 1051 | 1099 | global $context; |
| 1052 | 1100 | |
| 1053 | - if (empty($context['tables'])) |
|
| 1054 | - return; |
|
| 1101 | + if (empty($context['tables'])) { |
|
| 1102 | + return; |
|
| 1103 | + } |
|
| 1055 | 1104 | |
| 1056 | 1105 | // Loop through each table counting up some basic values, to help with the templating. |
| 1057 | 1106 | foreach ($context['tables'] as $id => $table) |
@@ -1062,12 +1111,13 @@ discard block |
||
| 1062 | 1111 | $context['tables'][$id]['column_count'] = count($curElement); |
| 1063 | 1112 | |
| 1064 | 1113 | // Work out the rough width - for templates like the print template. Without this we might get funny tables. |
| 1065 | - if ($table['shading']['left'] && $table['width']['shaded'] != 'auto' && $table['width']['normal'] != 'auto') |
|
| 1066 | - $context['tables'][$id]['max_width'] = $table['width']['shaded'] + ($context['tables'][$id]['column_count'] - 1) * $table['width']['normal']; |
|
| 1067 | - elseif ($table['width']['normal'] != 'auto') |
|
| 1068 | - $context['tables'][$id]['max_width'] = $context['tables'][$id]['column_count'] * $table['width']['normal']; |
|
| 1069 | - else |
|
| 1070 | - $context['tables'][$id]['max_width'] = 'auto'; |
|
| 1114 | + if ($table['shading']['left'] && $table['width']['shaded'] != 'auto' && $table['width']['normal'] != 'auto') { |
|
| 1115 | + $context['tables'][$id]['max_width'] = $table['width']['shaded'] + ($context['tables'][$id]['column_count'] - 1) * $table['width']['normal']; |
|
| 1116 | + } elseif ($table['width']['normal'] != 'auto') { |
|
| 1117 | + $context['tables'][$id]['max_width'] = $context['tables'][$id]['column_count'] * $table['width']['normal']; |
|
| 1118 | + } else { |
|
| 1119 | + $context['tables'][$id]['max_width'] = 'auto'; |
|
| 1120 | + } |
|
| 1071 | 1121 | } |
| 1072 | 1122 | } |
| 1073 | 1123 | |
@@ -1092,10 +1142,11 @@ discard block |
||
| 1092 | 1142 | global $context; |
| 1093 | 1143 | |
| 1094 | 1144 | // Do we want to use the keys of the keys as the keys? :P |
| 1095 | - if ($reverse) |
|
| 1096 | - $context['keys'] = array_flip($keys); |
|
| 1097 | - else |
|
| 1098 | - $context['keys'] = $keys; |
|
| 1145 | + if ($reverse) { |
|
| 1146 | + $context['keys'] = array_flip($keys); |
|
| 1147 | + } else { |
|
| 1148 | + $context['keys'] = $keys; |
|
| 1149 | + } |
|
| 1099 | 1150 | |
| 1100 | 1151 | // Rows or columns? |
| 1101 | 1152 | $context['key_method'] = $method == 'rows' ? 'rows' : 'cols'; |
@@ -11,8 +11,9 @@ |
||
| 11 | 11 | * @version 2.1 Beta 3 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('No direct access...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Standard non full index, non custom index search |