@@ -18,7 +18,7 @@ |
||
| 18 | 18 | class ApproveReply_Notify_Background extends SMF_BackgroundTask |
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | - * This executes the task - loads up the information, puts the email in the queue and inserts alerts. |
|
| 21 | + * This executes the task - loads up the information, puts the email in the queue and inserts alerts. |
|
| 22 | 22 | * @return bool Always returns true. |
| 23 | 23 | */ |
| 24 | 24 | public function execute() |
@@ -96,14 +96,15 @@ |
||
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | // Insert the alerts if any |
| 99 | - if (!empty($alert_rows)) |
|
| 100 | - $smcFunc['db_insert']('', |
|
| 99 | + if (!empty($alert_rows)) { |
|
| 100 | + $smcFunc['db_insert']('', |
|
| 101 | 101 | '{db_prefix}user_alerts', |
| 102 | 102 | array('alert_time' => 'int', 'id_member' => 'int', 'id_member_started' => 'int', 'member_name' => 'string', |
| 103 | 103 | 'content_type' => 'string', 'content_id' => 'int', 'content_action' => 'string', 'is_read' => 'int', 'extra' => 'string'), |
| 104 | 104 | $alert_rows, |
| 105 | 105 | array() |
| 106 | 106 | ); |
| 107 | + } |
|
| 107 | 108 | |
| 108 | 109 | return true; |
| 109 | 110 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | class GroupReq_Notify_Background extends SMF_BackgroundTask |
| 21 | 21 | { |
| 22 | 22 | /** |
| 23 | - * This executes the task - loads up the information, puts the email in the queue and inserts any alerts as needed. |
|
| 23 | + * This executes the task - loads up the information, puts the email in the queue and inserts any alerts as needed. |
|
| 24 | 24 | * @return bool Always returns true. |
| 25 | 25 | */ |
| 26 | 26 | public function execute() |
@@ -37,8 +37,9 @@ discard block |
||
| 37 | 37 | ) |
| 38 | 38 | ); |
| 39 | 39 | $moderators = array(); |
| 40 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 41 | - $moderators[] = $row['id_member']; |
|
| 40 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 41 | + $moderators[] = $row['id_member']; |
|
| 42 | + } |
|
| 42 | 43 | $smcFunc['db_free_result']($request); |
| 43 | 44 | |
| 44 | 45 | require_once($sourcedir . '/Subs-Members.php'); |
@@ -59,11 +60,13 @@ discard block |
||
| 59 | 60 | { |
| 60 | 61 | if (!empty($prefs[$mod]['request_group'])) |
| 61 | 62 | { |
| 62 | - if ($prefs[$mod]['request_group'] & 0x01) |
|
| 63 | - $data['alert'][] = $mod; |
|
| 63 | + if ($prefs[$mod]['request_group'] & 0x01) { |
|
| 64 | + $data['alert'][] = $mod; |
|
| 65 | + } |
|
| 64 | 66 | |
| 65 | - if ($prefs[$mod]['request_group'] & 0x02) |
|
| 66 | - $data['email'][] = $mod; |
|
| 67 | + if ($prefs[$mod]['request_group'] & 0x02) { |
|
| 68 | + $data['email'][] = $mod; |
|
| 69 | + } |
|
| 67 | 70 | } |
| 68 | 71 | } |
| 69 | 72 | |
@@ -240,8 +240,8 @@ |
||
| 240 | 240 | $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
| 241 | 241 | |
| 242 | 242 | $js_time_string = str_replace( |
| 243 | - array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
|
| 244 | - array('H', 'G', 'h', 'g', 'i', 'A', 'a', 'h:i:s A', 'H:i', 's', 'H:i:s', 'H:i:s'), |
|
| 243 | + array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
|
| 244 | + array('H', 'G', 'h', 'g', 'i', 'A', 'a', 'h:i:s A', 'H:i', 's', 'H:i:s', 'H:i:s'), |
|
| 245 | 245 | $time_string |
| 246 | 246 | ); |
| 247 | 247 | |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Show the calendar. |
@@ -47,12 +48,14 @@ discard block |
||
| 47 | 48 | 'post' => 'CalendarPost', |
| 48 | 49 | ); |
| 49 | 50 | |
| 50 | - if (isset($_GET['sa']) && isset($subActions[$_GET['sa']])) |
|
| 51 | - return call_helper($subActions[$_GET['sa']]); |
|
| 51 | + if (isset($_GET['sa']) && isset($subActions[$_GET['sa']])) { |
|
| 52 | + return call_helper($subActions[$_GET['sa']]); |
|
| 53 | + } |
|
| 52 | 54 | |
| 53 | 55 | // You can't do anything if the calendar is off. |
| 54 | - if (empty($modSettings['cal_enabled'])) |
|
| 55 | - fatal_lang_error('calendar_off', false); |
|
| 56 | + if (empty($modSettings['cal_enabled'])) { |
|
| 57 | + fatal_lang_error('calendar_off', false); |
|
| 58 | + } |
|
| 56 | 59 | |
| 57 | 60 | // This is gonna be needed... |
| 58 | 61 | loadTemplate('Calendar'); |
@@ -88,22 +91,25 @@ discard block |
||
| 88 | 91 | $context['page_title'] = $txt['calendar']; |
| 89 | 92 | |
| 90 | 93 | // Ensure a default view is defined |
| 91 | - if (empty($modSettings['calendar_default_view'])) |
|
| 92 | - $modSettings['calendar_default_view'] = 'viewlist'; |
|
| 94 | + if (empty($modSettings['calendar_default_view'])) { |
|
| 95 | + $modSettings['calendar_default_view'] = 'viewlist'; |
|
| 96 | + } |
|
| 93 | 97 | |
| 94 | 98 | // What view do we want? |
| 95 | - if (isset($_GET['viewweek'])) |
|
| 96 | - $context['calendar_view'] = 'viewweek'; |
|
| 97 | - elseif (isset($_GET['viewmonth'])) |
|
| 98 | - $context['calendar_view'] = 'viewmonth'; |
|
| 99 | - elseif (isset($_GET['viewlist'])) |
|
| 100 | - $context['calendar_view'] = 'viewlist'; |
|
| 101 | - else |
|
| 102 | - $context['calendar_view'] = $modSettings['calendar_default_view']; |
|
| 99 | + if (isset($_GET['viewweek'])) { |
|
| 100 | + $context['calendar_view'] = 'viewweek'; |
|
| 101 | + } elseif (isset($_GET['viewmonth'])) { |
|
| 102 | + $context['calendar_view'] = 'viewmonth'; |
|
| 103 | + } elseif (isset($_GET['viewlist'])) { |
|
| 104 | + $context['calendar_view'] = 'viewlist'; |
|
| 105 | + } else { |
|
| 106 | + $context['calendar_view'] = $modSettings['calendar_default_view']; |
|
| 107 | + } |
|
| 103 | 108 | |
| 104 | 109 | // Don't let search engines index the non-default calendar pages |
| 105 | - if ($context['calendar_view'] !== $modSettings['calendar_default_view']) |
|
| 106 | - $context['robot_no_index'] = true; |
|
| 110 | + if ($context['calendar_view'] !== $modSettings['calendar_default_view']) { |
|
| 111 | + $context['robot_no_index'] = true; |
|
| 112 | + } |
|
| 107 | 113 | |
| 108 | 114 | // Get the current day of month... |
| 109 | 115 | require_once($sourcedir . '/Subs-Calendar.php'); |
@@ -164,16 +170,19 @@ discard block |
||
| 164 | 170 | ); |
| 165 | 171 | |
| 166 | 172 | // Make sure the year and month are in valid ranges. |
| 167 | - if ($curPage['month'] < 1 || $curPage['month'] > 12) |
|
| 168 | - fatal_lang_error('invalid_month', false); |
|
| 169 | - if ($curPage['year'] < $modSettings['cal_minyear'] || $curPage['year'] > $modSettings['cal_maxyear']) |
|
| 170 | - fatal_lang_error('invalid_year', false); |
|
| 173 | + if ($curPage['month'] < 1 || $curPage['month'] > 12) { |
|
| 174 | + fatal_lang_error('invalid_month', false); |
|
| 175 | + } |
|
| 176 | + if ($curPage['year'] < $modSettings['cal_minyear'] || $curPage['year'] > $modSettings['cal_maxyear']) { |
|
| 177 | + fatal_lang_error('invalid_year', false); |
|
| 178 | + } |
|
| 171 | 179 | // If we have a day clean that too. |
| 172 | 180 | if ($context['calendar_view'] != 'viewmonth') |
| 173 | 181 | { |
| 174 | 182 | $isValid = checkdate($curPage['month'], $curPage['day'], $curPage['year']); |
| 175 | - if (!$isValid) |
|
| 176 | - fatal_lang_error('invalid_day', false); |
|
| 183 | + if (!$isValid) { |
|
| 184 | + fatal_lang_error('invalid_day', false); |
|
| 185 | + } |
|
| 177 | 186 | } |
| 178 | 187 | |
| 179 | 188 | // Load all the context information needed to show the calendar grid. |
@@ -195,23 +204,26 @@ discard block |
||
| 195 | 204 | ); |
| 196 | 205 | |
| 197 | 206 | // Load up the main view. |
| 198 | - if ($context['calendar_view'] == 'viewlist') |
|
| 199 | - $context['calendar_grid_main'] = getCalendarList($curPage['start_date'], $curPage['end_date'], $calendarOptions); |
|
| 200 | - elseif ($context['calendar_view'] == 'viewweek') |
|
| 201 | - $context['calendar_grid_main'] = getCalendarWeek($curPage['month'], $curPage['year'], $curPage['day'], $calendarOptions); |
|
| 202 | - else |
|
| 203 | - $context['calendar_grid_main'] = getCalendarGrid($curPage['month'], $curPage['year'], $calendarOptions); |
|
| 207 | + if ($context['calendar_view'] == 'viewlist') { |
|
| 208 | + $context['calendar_grid_main'] = getCalendarList($curPage['start_date'], $curPage['end_date'], $calendarOptions); |
|
| 209 | + } elseif ($context['calendar_view'] == 'viewweek') { |
|
| 210 | + $context['calendar_grid_main'] = getCalendarWeek($curPage['month'], $curPage['year'], $curPage['day'], $calendarOptions); |
|
| 211 | + } else { |
|
| 212 | + $context['calendar_grid_main'] = getCalendarGrid($curPage['month'], $curPage['year'], $calendarOptions); |
|
| 213 | + } |
|
| 204 | 214 | |
| 205 | 215 | // Load up the previous and next months. |
| 206 | 216 | $context['calendar_grid_current'] = getCalendarGrid($curPage['month'], $curPage['year'], $calendarOptions); |
| 207 | 217 | |
| 208 | 218 | // Only show previous month if it isn't pre-January of the min-year |
| 209 | - if ($context['calendar_grid_current']['previous_calendar']['year'] > $modSettings['cal_minyear'] || $curPage['month'] != 1) |
|
| 210 | - $context['calendar_grid_prev'] = getCalendarGrid($context['calendar_grid_current']['previous_calendar']['month'], $context['calendar_grid_current']['previous_calendar']['year'], $calendarOptions, true); |
|
| 219 | + if ($context['calendar_grid_current']['previous_calendar']['year'] > $modSettings['cal_minyear'] || $curPage['month'] != 1) { |
|
| 220 | + $context['calendar_grid_prev'] = getCalendarGrid($context['calendar_grid_current']['previous_calendar']['month'], $context['calendar_grid_current']['previous_calendar']['year'], $calendarOptions, true); |
|
| 221 | + } |
|
| 211 | 222 | |
| 212 | 223 | // Only show next month if it isn't post-December of the max-year |
| 213 | - if ($context['calendar_grid_current']['next_calendar']['year'] < $modSettings['cal_maxyear'] || $curPage['month'] != 12) |
|
| 214 | - $context['calendar_grid_next'] = getCalendarGrid($context['calendar_grid_current']['next_calendar']['month'], $context['calendar_grid_current']['next_calendar']['year'], $calendarOptions); |
|
| 224 | + if ($context['calendar_grid_current']['next_calendar']['year'] < $modSettings['cal_maxyear'] || $curPage['month'] != 12) { |
|
| 225 | + $context['calendar_grid_next'] = getCalendarGrid($context['calendar_grid_current']['next_calendar']['month'], $context['calendar_grid_current']['next_calendar']['year'], $calendarOptions); |
|
| 226 | + } |
|
| 215 | 227 | |
| 216 | 228 | // Basic template stuff. |
| 217 | 229 | $context['allow_calendar_event'] = allowedTo('calendar_post'); |
@@ -231,8 +243,9 @@ discard block |
||
| 231 | 243 | $context['blocks_disabled'] = !empty($modSettings['cal_disable_prev_next']) ? 1 : 0; |
| 232 | 244 | |
| 233 | 245 | // Set the page title to mention the month or week, too |
| 234 | - if ($context['calendar_view'] != 'viewlist') |
|
| 235 | - $context['page_title'] .= ' - ' . ($context['calendar_view'] == 'viewweek' ? $context['calendar_grid_main']['week_title'] : $txt['months'][$context['current_month']] . ' ' . $context['current_year']); |
|
| 246 | + if ($context['calendar_view'] != 'viewlist') { |
|
| 247 | + $context['page_title'] .= ' - ' . ($context['calendar_view'] == 'viewweek' ? $context['calendar_grid_main']['week_title'] : $txt['months'][$context['current_month']] . ' ' . $context['current_year']); |
|
| 248 | + } |
|
| 236 | 249 | |
| 237 | 250 | // Load up the linktree! |
| 238 | 251 | $context['linktree'][] = array( |
@@ -245,17 +258,19 @@ discard block |
||
| 245 | 258 | 'name' => $txt['months'][$context['current_month']] . ' ' . $context['current_year'] |
| 246 | 259 | ); |
| 247 | 260 | // If applicable, add the current week to the linktree. |
| 248 | - if ($context['calendar_view'] == 'viewweek') |
|
| 249 | - $context['linktree'][] = array( |
|
| 261 | + if ($context['calendar_view'] == 'viewweek') { |
|
| 262 | + $context['linktree'][] = array( |
|
| 250 | 263 | 'url' => $scripturl . '?action=calendar;viewweek;year=' . $context['current_year'] . ';month=' . $context['current_month'] . ';day=' . $context['current_day'], |
| 251 | 264 | 'name' => $context['calendar_grid_main']['week_title'], |
| 252 | 265 | ); |
| 266 | + } |
|
| 253 | 267 | |
| 254 | 268 | // Build the calendar button array. |
| 255 | 269 | $context['calendar_buttons'] = array(); |
| 256 | 270 | |
| 257 | - if ($context['can_post']) |
|
| 258 | - $context['calendar_buttons']['post_event'] = array('text' => 'calendar_post_event', 'image' => 'calendarpe.png', 'url' => $scripturl . '?action=calendar;sa=post;month=' . $context['current_month'] . ';year=' . $context['current_year'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 271 | + if ($context['can_post']) { |
|
| 272 | + $context['calendar_buttons']['post_event'] = array('text' => 'calendar_post_event', 'image' => 'calendarpe.png', 'url' => $scripturl . '?action=calendar;sa=post;month=' . $context['current_month'] . ';year=' . $context['current_year'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 273 | + } |
|
| 259 | 274 | |
| 260 | 275 | // Allow mods to add additional buttons here |
| 261 | 276 | call_integration_hook('integrate_calendar_buttons'); |
@@ -284,14 +299,16 @@ discard block |
||
| 284 | 299 | require_once($sourcedir . '/Subs.php'); |
| 285 | 300 | |
| 286 | 301 | // Cast this for safety... |
| 287 | - if (isset($_REQUEST['eventid'])) |
|
| 288 | - $_REQUEST['eventid'] = (int) $_REQUEST['eventid']; |
|
| 302 | + if (isset($_REQUEST['eventid'])) { |
|
| 303 | + $_REQUEST['eventid'] = (int) $_REQUEST['eventid']; |
|
| 304 | + } |
|
| 289 | 305 | |
| 290 | 306 | // We want a fairly compact version of the time, but as close as possible to the user's settings. |
| 291 | - if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) |
|
| 292 | - $time_string = '%k:%M'; |
|
| 293 | - else |
|
| 294 | - $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
| 307 | + if (preg_match('~%[HkIlMpPrRSTX](?:[^%]*%[HkIlMpPrRSTX])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0])) { |
|
| 308 | + $time_string = '%k:%M'; |
|
| 309 | + } else { |
|
| 310 | + $time_string = str_replace(array('%I', '%H', '%S', '%r', '%R', '%T'), array('%l', '%k', '', '%l:%M %p', '%k:%M', '%l:%M'), $matches[0]); |
|
| 311 | + } |
|
| 295 | 312 | |
| 296 | 313 | $js_time_string = str_replace( |
| 297 | 314 | array('%H', '%k', '%I', '%l', '%M', '%p', '%P', '%r', '%R', '%S', '%T', '%X'), |
@@ -305,12 +322,14 @@ discard block |
||
| 305 | 322 | checkSession(); |
| 306 | 323 | |
| 307 | 324 | // Validate the post... |
| 308 | - if (!isset($_POST['link_to_board'])) |
|
| 309 | - validateEventPost(); |
|
| 325 | + if (!isset($_POST['link_to_board'])) { |
|
| 326 | + validateEventPost(); |
|
| 327 | + } |
|
| 310 | 328 | |
| 311 | 329 | // If you're not allowed to edit any events, you have to be the poster. |
| 312 | - if ($_REQUEST['eventid'] > 0 && !allowedTo('calendar_edit_any')) |
|
| 313 | - isAllowedTo('calendar_edit_' . (!empty($user_info['id']) && getEventPoster($_REQUEST['eventid']) == $user_info['id'] ? 'own' : 'any')); |
|
| 330 | + if ($_REQUEST['eventid'] > 0 && !allowedTo('calendar_edit_any')) { |
|
| 331 | + isAllowedTo('calendar_edit_' . (!empty($user_info['id']) && getEventPoster($_REQUEST['eventid']) == $user_info['id'] ? 'own' : 'any')); |
|
| 332 | + } |
|
| 314 | 333 | |
| 315 | 334 | // New - and directing? |
| 316 | 335 | if (isset($_POST['link_to_board']) || empty($modSettings['cal_allow_unlinked'])) |
@@ -333,8 +352,9 @@ discard block |
||
| 333 | 352 | } |
| 334 | 353 | |
| 335 | 354 | // Deleting... |
| 336 | - elseif (isset($_REQUEST['deleteevent'])) |
|
| 337 | - removeEvent($_REQUEST['eventid']); |
|
| 355 | + elseif (isset($_REQUEST['deleteevent'])) { |
|
| 356 | + removeEvent($_REQUEST['eventid']); |
|
| 357 | + } |
|
| 338 | 358 | |
| 339 | 359 | // ... or just update it? |
| 340 | 360 | else |
@@ -357,15 +377,13 @@ discard block |
||
| 357 | 377 | $year = $d['year']; |
| 358 | 378 | $month = $d['month']; |
| 359 | 379 | $day = $d['day']; |
| 360 | - } |
|
| 361 | - elseif (isset($_POST['start_datetime'])) |
|
| 380 | + } elseif (isset($_POST['start_datetime'])) |
|
| 362 | 381 | { |
| 363 | 382 | $d = date_parse($_POST['start_datetime']); |
| 364 | 383 | $year = $d['year']; |
| 365 | 384 | $month = $d['month']; |
| 366 | 385 | $day = $d['day']; |
| 367 | - } |
|
| 368 | - else |
|
| 386 | + } else |
|
| 369 | 387 | { |
| 370 | 388 | $today = getdate(); |
| 371 | 389 | $year = isset($_POST['year']) ? $_POST['year'] : $today['year']; |
@@ -399,13 +417,13 @@ discard block |
||
| 399 | 417 | $context['event'] = array_merge($context['event'], $eventDatetimes); |
| 400 | 418 | |
| 401 | 419 | $context['event']['last_day'] = (int) strftime('%d', mktime(0, 0, 0, $context['event']['month'] == 12 ? 1 : $context['event']['month'] + 1, 0, $context['event']['month'] == 12 ? $context['event']['year'] + 1 : $context['event']['year'])); |
| 402 | - } |
|
| 403 | - else |
|
| 420 | + } else |
|
| 404 | 421 | { |
| 405 | 422 | $context['event'] = getEventProperties($_REQUEST['eventid']); |
| 406 | 423 | |
| 407 | - if ($context['event'] === false) |
|
| 408 | - fatal_lang_error('no_access', false); |
|
| 424 | + if ($context['event'] === false) { |
|
| 425 | + fatal_lang_error('no_access', false); |
|
| 426 | + } |
|
| 409 | 427 | |
| 410 | 428 | // If it has a board, then they should be editing it within the topic. |
| 411 | 429 | if (!empty($context['event']['topic']['id']) && !empty($context['event']['topic']['first_msg'])) |
@@ -416,10 +434,11 @@ discard block |
||
| 416 | 434 | } |
| 417 | 435 | |
| 418 | 436 | // Make sure the user is allowed to edit this event. |
| 419 | - if ($context['event']['member'] != $user_info['id']) |
|
| 420 | - isAllowedTo('calendar_edit_any'); |
|
| 421 | - elseif (!allowedTo('calendar_edit_any')) |
|
| 422 | - isAllowedTo('calendar_edit_own'); |
|
| 437 | + if ($context['event']['member'] != $user_info['id']) { |
|
| 438 | + isAllowedTo('calendar_edit_any'); |
|
| 439 | + } elseif (!allowedTo('calendar_edit_any')) { |
|
| 440 | + isAllowedTo('calendar_edit_own'); |
|
| 441 | + } |
|
| 423 | 442 | } |
| 424 | 443 | |
| 425 | 444 | // An all day event? Set up some nice defaults in case the user wants to change that |
@@ -453,8 +472,7 @@ discard block |
||
| 453 | 472 | { |
| 454 | 473 | // You can post new events but can't link them to anything... |
| 455 | 474 | $context['event']['categories'] = array(); |
| 456 | - } |
|
| 457 | - else |
|
| 475 | + } else |
|
| 458 | 476 | { |
| 459 | 477 | // Load the list of boards and categories in the context. |
| 460 | 478 | require_once($sourcedir . '/Subs-MessageIndex.php'); |
@@ -541,12 +559,14 @@ discard block |
||
| 541 | 559 | global $smcFunc, $sourcedir, $forum_version, $modSettings, $webmaster_email, $mbname; |
| 542 | 560 | |
| 543 | 561 | // You can't export if the calendar export feature is off. |
| 544 | - if (empty($modSettings['cal_export'])) |
|
| 545 | - fatal_lang_error('calendar_export_off', false); |
|
| 562 | + if (empty($modSettings['cal_export'])) { |
|
| 563 | + fatal_lang_error('calendar_export_off', false); |
|
| 564 | + } |
|
| 546 | 565 | |
| 547 | 566 | // Goes without saying that this is required. |
| 548 | - if (!isset($_REQUEST['eventid'])) |
|
| 549 | - fatal_lang_error('no_access', false); |
|
| 567 | + if (!isset($_REQUEST['eventid'])) { |
|
| 568 | + fatal_lang_error('no_access', false); |
|
| 569 | + } |
|
| 550 | 570 | |
| 551 | 571 | // This is kinda wanted. |
| 552 | 572 | require_once($sourcedir . '/Subs-Calendar.php'); |
@@ -554,15 +574,17 @@ discard block |
||
| 554 | 574 | // Load up the event in question and check it exists. |
| 555 | 575 | $event = getEventProperties($_REQUEST['eventid']); |
| 556 | 576 | |
| 557 | - if ($event === false) |
|
| 558 | - fatal_lang_error('no_access', false); |
|
| 577 | + if ($event === false) { |
|
| 578 | + fatal_lang_error('no_access', false); |
|
| 579 | + } |
|
| 559 | 580 | |
| 560 | 581 | // Check the title isn't too long - iCal requires some formatting if so. |
| 561 | 582 | $title = str_split($event['title'], 30); |
| 562 | 583 | foreach ($title as $id => $line) |
| 563 | 584 | { |
| 564 | - if ($id != 0) |
|
| 565 | - $title[$id] = ' ' . $title[$id]; |
|
| 585 | + if ($id != 0) { |
|
| 586 | + $title[$id] = ' ' . $title[$id]; |
|
| 587 | + } |
|
| 566 | 588 | $title[$id] .= "\n"; |
| 567 | 589 | } |
| 568 | 590 | |
@@ -575,8 +597,7 @@ discard block |
||
| 575 | 597 | { |
| 576 | 598 | $datestart = date_format($start_date, 'Ymd\THis'); |
| 577 | 599 | $dateend = date_format($end_date, 'Ymd\THis'); |
| 578 | - } |
|
| 579 | - else |
|
| 600 | + } else |
|
| 580 | 601 | { |
| 581 | 602 | $datestart = date_format($start_date, 'Ymd'); |
| 582 | 603 | |
@@ -597,15 +618,18 @@ discard block |
||
| 597 | 618 | $filecontents .= 'DTSTART' . (!empty($event['start_time']) ? ';TZID=' . $event['tz'] : ';VALUE=DATE') . ':' . $datestart . "\n"; |
| 598 | 619 | |
| 599 | 620 | // event has a duration |
| 600 | - if ($event['start_iso_gmdate'] != $event['end_iso_gmdate']) |
|
| 601 | - $filecontents .= 'DTEND' . (!empty($event['end_time']) ? ';TZID=' . $event['tz'] : ';VALUE=DATE') . ':' . $dateend . "\n"; |
|
| 621 | + if ($event['start_iso_gmdate'] != $event['end_iso_gmdate']) { |
|
| 622 | + $filecontents .= 'DTEND' . (!empty($event['end_time']) ? ';TZID=' . $event['tz'] : ';VALUE=DATE') . ':' . $dateend . "\n"; |
|
| 623 | + } |
|
| 602 | 624 | |
| 603 | 625 | // event has changed? advance the sequence for this UID |
| 604 | - if ($event['sequence'] > 0) |
|
| 605 | - $filecontents .= 'SEQUENCE:' . $event['sequence'] . "\n"; |
|
| 626 | + if ($event['sequence'] > 0) { |
|
| 627 | + $filecontents .= 'SEQUENCE:' . $event['sequence'] . "\n"; |
|
| 628 | + } |
|
| 606 | 629 | |
| 607 | - if (!empty($event['location'])) |
|
| 608 | - $filecontents .= 'LOCATION:' . str_replace(',', '\,', $event['location']) . "\n"; |
|
| 630 | + if (!empty($event['location'])) { |
|
| 631 | + $filecontents .= 'LOCATION:' . str_replace(',', '\,', $event['location']) . "\n"; |
|
| 632 | + } |
|
| 609 | 633 | |
| 610 | 634 | $filecontents .= 'SUMMARY:' . implode('', $title); |
| 611 | 635 | $filecontents .= 'UID:' . $event['eventid'] . '@' . str_replace(' ', '-', $mbname) . "\n"; |
@@ -614,23 +638,26 @@ discard block |
||
| 614 | 638 | |
| 615 | 639 | // Send some standard headers. |
| 616 | 640 | ob_end_clean(); |
| 617 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
| 618 | - @ob_start('ob_gzhandler'); |
|
| 619 | - else |
|
| 620 | - ob_start(); |
|
| 641 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
| 642 | + @ob_start('ob_gzhandler'); |
|
| 643 | + } else { |
|
| 644 | + ob_start(); |
|
| 645 | + } |
|
| 621 | 646 | |
| 622 | 647 | // Send the file headers |
| 623 | 648 | header('Pragma: '); |
| 624 | 649 | header('Cache-Control: no-cache'); |
| 625 | - if (!isBrowser('gecko')) |
|
| 626 | - header('Content-Transfer-Encoding: binary'); |
|
| 650 | + if (!isBrowser('gecko')) { |
|
| 651 | + header('Content-Transfer-Encoding: binary'); |
|
| 652 | + } |
|
| 627 | 653 | header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT'); |
| 628 | 654 | header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . 'GMT'); |
| 629 | 655 | header('Accept-Ranges: bytes'); |
| 630 | 656 | header('Connection: close'); |
| 631 | 657 | header('Content-Disposition: attachment; filename="' . $event['title'] . '.ics"'); |
| 632 | - if (empty($modSettings['enableCompressedOutput'])) |
|
| 633 | - header('Content-Length: ' . $smcFunc['strlen']($filecontents)); |
|
| 658 | + if (empty($modSettings['enableCompressedOutput'])) { |
|
| 659 | + header('Content-Length: ' . $smcFunc['strlen']($filecontents)); |
|
| 660 | + } |
|
| 634 | 661 | |
| 635 | 662 | // This is a calendar item! |
| 636 | 663 | header('Content-Type: text/calendar'); |
@@ -669,20 +696,17 @@ discard block |
||
| 669 | 696 | $context['sub_template'] = 'bcd'; |
| 670 | 697 | $context['linktree'][] = array('url' => $scripturl . '?action=clock;bcd', 'name' => 'BCD'); |
| 671 | 698 | $context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJoMSI6WzIsMV0sImgyIjpbOCw0LDIsMV0sIm0xIjpbNCwyLDFdLCJtMiI6WzgsNCwyLDFdLCJzMSI6WzQsMiwxXSwiczIiOls4LDQsMiwxXX0='), true); |
| 672 | - } |
|
| 673 | - elseif (!$omfg && !isset($_REQUEST['time'])) |
|
| 699 | + } elseif (!$omfg && !isset($_REQUEST['time'])) |
|
| 674 | 700 | { |
| 675 | 701 | $context['sub_template'] = 'hms'; |
| 676 | 702 | $context['linktree'][] = array('url' => $scripturl . '?action=clock', 'name' => 'Binary'); |
| 677 | 703 | $context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJoIjpbMTYsOCw0LDIsMV0sIm0iOlszMiwxNiw4LDQsMiwxXSwicyI6WzMyLDE2LDgsNCwyLDFdfQ'), true); |
| 678 | - } |
|
| 679 | - elseif ($omfg) |
|
| 704 | + } elseif ($omfg) |
|
| 680 | 705 | { |
| 681 | 706 | $context['sub_template'] = 'omfg'; |
| 682 | 707 | $context['linktree'][] = array('url' => $scripturl . '?action=clock;omfg', 'name' => 'OMFG'); |
| 683 | 708 | $context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJ5ZWFyIjpbNjQsMzIsMTYsOCw0LDIsMV0sIm1vbnRoIjpbOCw0LDIsMV0sImRheSI6WzE2LDgsNCwyLDFdLCJob3VyIjpbMTYsOCw0LDIsMV0sIm1pbiI6WzMyLDE2LDgsNCwyLDFdLCJzZWMiOlszMiwxNiw4LDQsMiwxXX0='), true); |
| 684 | - } |
|
| 685 | - elseif (isset($_REQUEST['time'])) |
|
| 709 | + } elseif (isset($_REQUEST['time'])) |
|
| 686 | 710 | { |
| 687 | 711 | $context['sub_template'] = 'thetime'; |
| 688 | 712 | $time = getdate($_REQUEST['time'] == 'now' ? time() : (int) $_REQUEST['time']); |
@@ -736,12 +760,13 @@ discard block |
||
| 736 | 760 | ), |
| 737 | 761 | ); |
| 738 | 762 | |
| 739 | - foreach ($context['clockicons'] as $t => $vs) |
|
| 740 | - foreach ($vs as $v => $dumb) |
|
| 763 | + foreach ($context['clockicons'] as $t => $vs) { |
|
| 764 | + foreach ($vs as $v => $dumb) |
|
| 741 | 765 | { |
| 742 | 766 | if ($$t >= $v) |
| 743 | 767 | { |
| 744 | 768 | $$t -= $v; |
| 769 | + } |
|
| 745 | 770 | $context['clockicons'][$t][$v] = true; |
| 746 | 771 | } |
| 747 | 772 | } |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | <div id="recent" class="main_section"> |
| 22 | 22 | <div class="cat_bar"> |
| 23 | 23 | <h3 class="catbg"> |
| 24 | - <span class="xx"></span>',$txt['recent_posts'],' |
|
| 24 | + <span class="xx"></span>',$txt['recent_posts'], ' |
|
| 25 | 25 | </h3> |
| 26 | 26 | </div> |
| 27 | 27 | <div class="pagesection">', $context['page_index'], '</div>'; |
@@ -26,9 +26,10 @@ discard block |
||
| 26 | 26 | </div> |
| 27 | 27 | <div class="pagesection">', $context['page_index'], '</div>'; |
| 28 | 28 | |
| 29 | - if (empty($context['posts'])) |
|
| 30 | - echo ' |
|
| 29 | + if (empty($context['posts'])) { |
|
| 30 | + echo ' |
|
| 31 | 31 | <div class="windowbg">', $txt['no_messages'], '</div>'; |
| 32 | + } |
|
| 32 | 33 | |
| 33 | 34 | foreach ($context['posts'] as $post) |
| 34 | 35 | { |
@@ -41,28 +42,33 @@ discard block |
||
| 41 | 42 | </div> |
| 42 | 43 | <div class="list_posts">', $post['message'], '</div>'; |
| 43 | 44 | |
| 44 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
| 45 | - echo ' |
|
| 45 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
| 46 | + echo ' |
|
| 46 | 47 | <ul class="quickbuttons">'; |
| 48 | + } |
|
| 47 | 49 | |
| 48 | 50 | // If they *can* reply? |
| 49 | - if ($post['can_reply']) |
|
| 50 | - echo ' |
|
| 51 | + if ($post['can_reply']) { |
|
| 52 | + echo ' |
|
| 51 | 53 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
| 54 | + } |
|
| 52 | 55 | |
| 53 | 56 | // If they *can* quote? |
| 54 | - if ($post['can_quote']) |
|
| 55 | - echo ' |
|
| 57 | + if ($post['can_quote']) { |
|
| 58 | + echo ' |
|
| 56 | 59 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], ';quote=', $post['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
| 60 | + } |
|
| 57 | 61 | |
| 58 | 62 | // How about... even... remove it entirely?! |
| 59 | - if ($post['can_delete']) |
|
| 60 | - echo ' |
|
| 63 | + if ($post['can_delete']) { |
|
| 64 | + echo ' |
|
| 61 | 65 | <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';recent;', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['remove_message'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['remove'], '</a></li>'; |
| 66 | + } |
|
| 62 | 67 | |
| 63 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
| 64 | - echo ' |
|
| 68 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
| 69 | + echo ' |
|
| 65 | 70 | </ul>'; |
| 71 | + } |
|
| 66 | 72 | |
| 67 | 73 | echo ' |
| 68 | 74 | </div><!-- $post[css_class] -->'; |
@@ -84,12 +90,13 @@ discard block |
||
| 84 | 90 | echo ' |
| 85 | 91 | <div id="recent" class="main_content">'; |
| 86 | 92 | |
| 87 | - if ($context['showCheckboxes']) |
|
| 88 | - echo ' |
|
| 93 | + if ($context['showCheckboxes']) { |
|
| 94 | + echo ' |
|
| 89 | 95 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm"> |
| 90 | 96 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 91 | 97 | <input type="hidden" name="qaction" value="markread"> |
| 92 | 98 | <input type="hidden" name="redirect_url" value="action=unread', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
| 99 | + } |
|
| 93 | 100 | |
| 94 | 101 | if (!empty($context['topics'])) |
| 95 | 102 | { |
@@ -118,11 +125,12 @@ discard block |
||
| 118 | 125 | </div>'; |
| 119 | 126 | |
| 120 | 127 | // Show a "select all" box for quick moderation? |
| 121 | - if ($context['showCheckboxes']) |
|
| 122 | - echo ' |
|
| 128 | + if ($context['showCheckboxes']) { |
|
| 129 | + echo ' |
|
| 123 | 130 | <div class="moderation"> |
| 124 | 131 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');"> |
| 125 | 132 | </div>'; |
| 133 | + } |
|
| 126 | 134 | |
| 127 | 135 | echo ' |
| 128 | 136 | </div><!-- #topic_header --> |
@@ -142,17 +150,20 @@ discard block |
||
| 142 | 150 | echo ' |
| 143 | 151 | <div class="icons floatright">'; |
| 144 | 152 | |
| 145 | - if ($topic['is_locked']) |
|
| 146 | - echo ' |
|
| 153 | + if ($topic['is_locked']) { |
|
| 154 | + echo ' |
|
| 147 | 155 | <span class="generic_icons lock"></span>'; |
| 156 | + } |
|
| 148 | 157 | |
| 149 | - if ($topic['is_sticky']) |
|
| 150 | - echo ' |
|
| 158 | + if ($topic['is_sticky']) { |
|
| 159 | + echo ' |
|
| 151 | 160 | <span class="generic_icons sticky"></span>'; |
| 161 | + } |
|
| 152 | 162 | |
| 153 | - if ($topic['is_poll']) |
|
| 154 | - echo ' |
|
| 163 | + if ($topic['is_poll']) { |
|
| 164 | + echo ' |
|
| 155 | 165 | <span class="generic_icons poll"></span>'; |
| 166 | + } |
|
| 156 | 167 | |
| 157 | 168 | echo ' |
| 158 | 169 | </div>'; |
@@ -178,19 +189,21 @@ discard block |
||
| 178 | 189 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
| 179 | 190 | </div>'; |
| 180 | 191 | |
| 181 | - if ($context['showCheckboxes']) |
|
| 182 | - echo ' |
|
| 192 | + if ($context['showCheckboxes']) { |
|
| 193 | + echo ' |
|
| 183 | 194 | <div class="moderation"> |
| 184 | 195 | <input type="checkbox" name="topics[]" value="', $topic['id'], '"> |
| 185 | 196 | </div>'; |
| 197 | + } |
|
| 186 | 198 | |
| 187 | 199 | echo ' |
| 188 | 200 | </div><!-- $topic[css_class] -->'; |
| 189 | 201 | } |
| 190 | 202 | |
| 191 | - if (empty($context['topics'])) |
|
| 192 | - echo ' |
|
| 203 | + if (empty($context['topics'])) { |
|
| 204 | + echo ' |
|
| 193 | 205 | <div style="display: none;"></div>'; |
| 206 | + } |
|
| 194 | 207 | |
| 195 | 208 | echo ' |
| 196 | 209 | </div><!-- #topic_container --> |
@@ -205,25 +218,27 @@ discard block |
||
| 205 | 218 | ', $context['page_index'], ' |
| 206 | 219 | </div> |
| 207 | 220 | </div>'; |
| 208 | - } |
|
| 209 | - else |
|
| 210 | - echo ' |
|
| 221 | + } else { |
|
| 222 | + echo ' |
|
| 211 | 223 | <div class="cat_bar"> |
| 212 | 224 | <h3 class="catbg centertext"> |
| 213 | 225 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
| 214 | 226 | </h3> |
| 215 | 227 | </div>'; |
| 228 | + } |
|
| 216 | 229 | |
| 217 | - if ($context['showCheckboxes']) |
|
| 218 | - echo ' |
|
| 230 | + if ($context['showCheckboxes']) { |
|
| 231 | + echo ' |
|
| 219 | 232 | </form>'; |
| 233 | + } |
|
| 220 | 234 | |
| 221 | 235 | echo ' |
| 222 | 236 | </div><!-- #recent -->'; |
| 223 | 237 | |
| 224 | - if (empty($context['no_topic_listing'])) |
|
| 225 | - template_topic_legend(); |
|
| 226 | -} |
|
| 238 | + if (empty($context['no_topic_listing'])) { |
|
| 239 | + template_topic_legend(); |
|
| 240 | + } |
|
| 241 | + } |
|
| 227 | 242 | |
| 228 | 243 | /** |
| 229 | 244 | * Template for showing unread replies (eg new replies to topics you've posted in) |
@@ -235,12 +250,13 @@ discard block |
||
| 235 | 250 | echo ' |
| 236 | 251 | <div id="recent">'; |
| 237 | 252 | |
| 238 | - if ($context['showCheckboxes']) |
|
| 239 | - echo ' |
|
| 253 | + if ($context['showCheckboxes']) { |
|
| 254 | + echo ' |
|
| 240 | 255 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm"> |
| 241 | 256 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 242 | 257 | <input type="hidden" name="qaction" value="markread"> |
| 243 | 258 | <input type="hidden" name="redirect_url" value="action=unreadreplies', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
| 259 | + } |
|
| 244 | 260 | |
| 245 | 261 | if (!empty($context['topics'])) |
| 246 | 262 | { |
@@ -269,11 +285,12 @@ discard block |
||
| 269 | 285 | </div>'; |
| 270 | 286 | |
| 271 | 287 | // Show a "select all" box for quick moderation? |
| 272 | - if ($context['showCheckboxes']) |
|
| 273 | - echo ' |
|
| 288 | + if ($context['showCheckboxes']) { |
|
| 289 | + echo ' |
|
| 274 | 290 | <div class="moderation"> |
| 275 | 291 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');"> |
| 276 | 292 | </div>'; |
| 293 | + } |
|
| 277 | 294 | |
| 278 | 295 | echo ' |
| 279 | 296 | </div><!-- #topic_header --> |
@@ -293,17 +310,20 @@ discard block |
||
| 293 | 310 | echo ' |
| 294 | 311 | <div class="icons floatright">'; |
| 295 | 312 | |
| 296 | - if ($topic['is_locked']) |
|
| 297 | - echo ' |
|
| 313 | + if ($topic['is_locked']) { |
|
| 314 | + echo ' |
|
| 298 | 315 | <span class="generic_icons lock"></span>'; |
| 316 | + } |
|
| 299 | 317 | |
| 300 | - if ($topic['is_sticky']) |
|
| 301 | - echo ' |
|
| 318 | + if ($topic['is_sticky']) { |
|
| 319 | + echo ' |
|
| 302 | 320 | <span class="generic_icons sticky"></span>'; |
| 321 | + } |
|
| 303 | 322 | |
| 304 | - if ($topic['is_poll']) |
|
| 305 | - echo ' |
|
| 323 | + if ($topic['is_poll']) { |
|
| 324 | + echo ' |
|
| 306 | 325 | <span class="generic_icons poll"></span>'; |
| 326 | + } |
|
| 307 | 327 | |
| 308 | 328 | echo ' |
| 309 | 329 | </div>'; |
@@ -329,11 +349,12 @@ discard block |
||
| 329 | 349 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
| 330 | 350 | </div>'; |
| 331 | 351 | |
| 332 | - if ($context['showCheckboxes']) |
|
| 333 | - echo ' |
|
| 352 | + if ($context['showCheckboxes']) { |
|
| 353 | + echo ' |
|
| 334 | 354 | <div class="moderation"> |
| 335 | 355 | <input type="checkbox" name="topics[]" value="', $topic['id'], '"> |
| 336 | 356 | </div>'; |
| 357 | + } |
|
| 337 | 358 | |
| 338 | 359 | echo ' |
| 339 | 360 | </div><!-- $topic[css_class] -->'; |
@@ -350,24 +371,26 @@ discard block |
||
| 350 | 371 | ', $context['page_index'], ' |
| 351 | 372 | </div> |
| 352 | 373 | </div>'; |
| 353 | - } |
|
| 354 | - else |
|
| 355 | - echo ' |
|
| 374 | + } else { |
|
| 375 | + echo ' |
|
| 356 | 376 | <div class="cat_bar"> |
| 357 | 377 | <h3 class="catbg centertext"> |
| 358 | 378 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
| 359 | 379 | </h3> |
| 360 | 380 | </div>'; |
| 381 | + } |
|
| 361 | 382 | |
| 362 | - if ($context['showCheckboxes']) |
|
| 363 | - echo ' |
|
| 383 | + if ($context['showCheckboxes']) { |
|
| 384 | + echo ' |
|
| 364 | 385 | </form>'; |
| 386 | + } |
|
| 365 | 387 | |
| 366 | 388 | echo ' |
| 367 | 389 | </div><!-- #recent -->'; |
| 368 | 390 | |
| 369 | - if (empty($context['no_topic_listing'])) |
|
| 370 | - template_topic_legend(); |
|
| 371 | -} |
|
| 391 | + if (empty($context['no_topic_listing'])) { |
|
| 392 | + template_topic_legend(); |
|
| 393 | + } |
|
| 394 | + } |
|
| 372 | 395 | |
| 373 | 396 | ?> |
| 374 | 397 | \ No newline at end of file |
@@ -673,7 +673,7 @@ |
||
| 673 | 673 | 'Nikola "Dzonny" Novaković', |
| 674 | 674 | // Localizers |
| 675 | 675 | 'Dr. Deejay', |
| 676 | - 'd3vcho', |
|
| 676 | + 'd3vcho', |
|
| 677 | 677 | // Former Localizers |
| 678 | 678 | 'Relyana', |
| 679 | 679 | ), |
@@ -590,7 +590,7 @@ discard block |
||
| 590 | 590 | 'Shitiz "Dragooon" Garg', |
| 591 | 591 | 'Karl "RegularExpression" Benson', |
| 592 | 592 | 'Matthew "Labradoodle-360" Kerle', |
| 593 | - $user_info['is_admin'] ? 'Matt "Grudge" Wolf': 'Grudge', |
|
| 593 | + $user_info['is_admin'] ? 'Matt "Grudge" Wolf' : 'Grudge', |
|
| 594 | 594 | 'Michael "Thantos" Miller', |
| 595 | 595 | 'Norv', |
| 596 | 596 | 'Peter "Arantor" Spicer', |
@@ -814,13 +814,13 @@ discard block |
||
| 814 | 814 | $credit_info = $smcFunc['json_decode']($row['credits'], true); |
| 815 | 815 | |
| 816 | 816 | $copyright = empty($credit_info['copyright']) ? '' : $txt['credits_copyright'] . ' © ' . $smcFunc['htmlspecialchars']($credit_info['copyright']); |
| 817 | - $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="'. $smcFunc['htmlspecialchars']($credit_info['licenseurl']) .'">'. $smcFunc['htmlspecialchars']($credit_info['license']) .'</a>' : $smcFunc['htmlspecialchars']($credit_info['license'])); |
|
| 817 | + $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="' . $smcFunc['htmlspecialchars']($credit_info['licenseurl']) . '">' . $smcFunc['htmlspecialchars']($credit_info['license']) . '</a>' : $smcFunc['htmlspecialchars']($credit_info['license'])); |
|
| 818 | 818 | $version = $txt['credits_version'] . ' ' . $row['version']; |
| 819 | 819 | $title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ': ' . $version; |
| 820 | 820 | |
| 821 | 821 | // build this one out and stash it away |
| 822 | 822 | $mod_name = empty($credit_info['url']) ? $title : '<a href="' . $credit_info['url'] . '">' . $title . '</a>'; |
| 823 | - $mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : ''); |
|
| 823 | + $mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : ''); |
|
| 824 | 824 | } |
| 825 | 825 | cache_put_data('mods_credits', $mods, 86400); |
| 826 | 826 | } |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Who's online, and what are they doing? |
@@ -35,8 +36,9 @@ discard block |
||
| 35 | 36 | isAllowedTo('who_view'); |
| 36 | 37 | |
| 37 | 38 | // You can't do anything if this is off. |
| 38 | - if (empty($modSettings['who_enabled'])) |
|
| 39 | - fatal_lang_error('who_off', false); |
|
| 39 | + if (empty($modSettings['who_enabled'])) { |
|
| 40 | + fatal_lang_error('who_off', false); |
|
| 41 | + } |
|
| 40 | 42 | |
| 41 | 43 | // Load the 'Who' template. |
| 42 | 44 | loadTemplate('Who'); |
@@ -71,9 +73,9 @@ discard block |
||
| 71 | 73 | $show_methods['spiders'] = '(lo.id_member = 0 AND lo.id_spider > 0)'; |
| 72 | 74 | $show_methods['guests'] = '(lo.id_member = 0 AND lo.id_spider = 0)'; |
| 73 | 75 | $context['show_methods']['spiders'] = $txt['who_show_spiders_only']; |
| 76 | + } elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') { |
|
| 77 | + unset($_SESSION['who_online_filter']); |
|
| 74 | 78 | } |
| 75 | - elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') |
|
| 76 | - unset($_SESSION['who_online_filter']); |
|
| 77 | 79 | |
| 78 | 80 | // Does the user prefer a different sort direction? |
| 79 | 81 | if (isset($_REQUEST['sort']) && isset($sort_methods[$_REQUEST['sort']])) |
@@ -97,20 +99,24 @@ discard block |
||
| 97 | 99 | $context['sort_direction'] = isset($_REQUEST['asc']) || (isset($_REQUEST['sort_dir']) && $_REQUEST['sort_dir'] == 'asc') ? 'up' : 'down'; |
| 98 | 100 | |
| 99 | 101 | $conditions = array(); |
| 100 | - if (!allowedTo('moderate_forum')) |
|
| 101 | - $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
| 102 | + if (!allowedTo('moderate_forum')) { |
|
| 103 | + $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
| 104 | + } |
|
| 102 | 105 | |
| 103 | 106 | // Fallback to top filter? |
| 104 | - if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) |
|
| 105 | - $_REQUEST['show'] = $_REQUEST['show_top']; |
|
| 107 | + if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) { |
|
| 108 | + $_REQUEST['show'] = $_REQUEST['show_top']; |
|
| 109 | + } |
|
| 106 | 110 | // Does the user wish to apply a filter? |
| 107 | - if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) |
|
| 108 | - $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
| 111 | + if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) { |
|
| 112 | + $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
| 113 | + } |
|
| 109 | 114 | // Perhaps we saved a filter earlier in the session? |
| 110 | - elseif (isset($_SESSION['who_online_filter'])) |
|
| 111 | - $context['show_by'] = $_SESSION['who_online_filter']; |
|
| 112 | - else |
|
| 113 | - $context['show_by'] = 'members'; |
|
| 115 | + elseif (isset($_SESSION['who_online_filter'])) { |
|
| 116 | + $context['show_by'] = $_SESSION['who_online_filter']; |
|
| 117 | + } else { |
|
| 118 | + $context['show_by'] = 'members'; |
|
| 119 | + } |
|
| 114 | 120 | |
| 115 | 121 | $conditions[] = $show_methods[$context['show_by']]; |
| 116 | 122 | |
@@ -156,8 +162,9 @@ discard block |
||
| 156 | 162 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 157 | 163 | { |
| 158 | 164 | $actions = $smcFunc['json_decode']($row['url'], true); |
| 159 | - if ($actions === false) |
|
| 160 | - continue; |
|
| 165 | + if ($actions === false) { |
|
| 166 | + continue; |
|
| 167 | + } |
|
| 161 | 168 | |
| 162 | 169 | // Send the information to the template. |
| 163 | 170 | $context['members'][$row['session']] = array( |
@@ -195,8 +202,8 @@ discard block |
||
| 195 | 202 | $spiderContext = array(); |
| 196 | 203 | if (!empty($modSettings['show_spider_online']) && ($modSettings['show_spider_online'] == 2 || allowedTo('admin_forum')) && !empty($modSettings['spider_name_cache'])) |
| 197 | 204 | { |
| 198 | - foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) |
|
| 199 | - $spiderContext[$id] = array( |
|
| 205 | + foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) { |
|
| 206 | + $spiderContext[$id] = array( |
|
| 200 | 207 | 'id' => 0, |
| 201 | 208 | 'name' => $name, |
| 202 | 209 | 'group' => $txt['spiders'], |
@@ -205,6 +212,7 @@ discard block |
||
| 205 | 212 | 'email' => $name, |
| 206 | 213 | 'is_guest' => true |
| 207 | 214 | ); |
| 215 | + } |
|
| 208 | 216 | } |
| 209 | 217 | |
| 210 | 218 | $url_data = determineActions($url_data); |
@@ -219,16 +227,18 @@ discard block |
||
| 219 | 227 | // Put it in the context variables. |
| 220 | 228 | foreach ($context['members'] as $i => $member) |
| 221 | 229 | { |
| 222 | - if ($member['id'] != 0) |
|
| 223 | - $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
| 230 | + if ($member['id'] != 0) { |
|
| 231 | + $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
| 232 | + } |
|
| 224 | 233 | |
| 225 | 234 | // Keep the IP that came from the database. |
| 226 | 235 | $memberContext[$member['id']]['ip'] = $member['ip']; |
| 227 | 236 | $context['members'][$i]['action'] = isset($url_data[$i]) ? $url_data[$i] : $txt['who_hidden']; |
| 228 | - if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) |
|
| 229 | - $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
| 230 | - else |
|
| 231 | - $context['members'][$i] += $memberContext[$member['id']]; |
|
| 237 | + if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) { |
|
| 238 | + $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
| 239 | + } else { |
|
| 240 | + $context['members'][$i] += $memberContext[$member['id']]; |
|
| 241 | + } |
|
| 232 | 242 | } |
| 233 | 243 | |
| 234 | 244 | // Some people can't send personal messages... |
@@ -263,8 +273,9 @@ discard block |
||
| 263 | 273 | { |
| 264 | 274 | global $txt, $user_info, $modSettings, $smcFunc; |
| 265 | 275 | |
| 266 | - if (!allowedTo('who_view')) |
|
| 267 | - return array(); |
|
| 276 | + if (!allowedTo('who_view')) { |
|
| 277 | + return array(); |
|
| 278 | + } |
|
| 268 | 279 | loadLanguage('Who'); |
| 269 | 280 | |
| 270 | 281 | // Actions that require a specific permission level. |
@@ -292,10 +303,11 @@ discard block |
||
| 292 | 303 | ); |
| 293 | 304 | call_integration_hook('who_allowed', array(&$allowedActions)); |
| 294 | 305 | |
| 295 | - if (!is_array($urls)) |
|
| 296 | - $url_list = array(array($urls, $user_info['id'])); |
|
| 297 | - else |
|
| 298 | - $url_list = $urls; |
|
| 306 | + if (!is_array($urls)) { |
|
| 307 | + $url_list = array(array($urls, $user_info['id'])); |
|
| 308 | + } else { |
|
| 309 | + $url_list = $urls; |
|
| 310 | + } |
|
| 299 | 311 | |
| 300 | 312 | // These are done to later query these in large chunks. (instead of one by one.) |
| 301 | 313 | $topic_ids = array(); |
@@ -307,12 +319,14 @@ discard block |
||
| 307 | 319 | { |
| 308 | 320 | // Get the request parameters.. |
| 309 | 321 | $actions = $smcFunc['json_decode']($url[0], true); |
| 310 | - if ($actions === false) |
|
| 311 | - continue; |
|
| 322 | + if ($actions === false) { |
|
| 323 | + continue; |
|
| 324 | + } |
|
| 312 | 325 | |
| 313 | 326 | // If it's the admin or moderation center, and there is an area set, use that instead. |
| 314 | - if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) |
|
| 315 | - $actions['action'] = $actions['area']; |
|
| 327 | + if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) { |
|
| 328 | + $actions['action'] = $actions['area']; |
|
| 329 | + } |
|
| 316 | 330 | |
| 317 | 331 | // Check if there was no action or the action is display. |
| 318 | 332 | if (!isset($actions['action']) || $actions['action'] == 'display') |
@@ -332,12 +346,14 @@ discard block |
||
| 332 | 346 | $board_ids[$actions['board']][$k] = $txt['who_board']; |
| 333 | 347 | } |
| 334 | 348 | // It's the board index!! It must be! |
| 335 | - else |
|
| 336 | - $data[$k] = $txt['who_index']; |
|
| 349 | + else { |
|
| 350 | + $data[$k] = $txt['who_index']; |
|
| 351 | + } |
|
| 337 | 352 | } |
| 338 | 353 | // Probably an error or some goon? |
| 339 | - elseif ($actions['action'] == '') |
|
| 340 | - $data[$k] = $txt['who_index']; |
|
| 354 | + elseif ($actions['action'] == '') { |
|
| 355 | + $data[$k] = $txt['who_index']; |
|
| 356 | + } |
|
| 341 | 357 | // Some other normal action...? |
| 342 | 358 | else |
| 343 | 359 | { |
@@ -345,23 +361,25 @@ discard block |
||
| 345 | 361 | if ($actions['action'] == 'profile') |
| 346 | 362 | { |
| 347 | 363 | // Whose? Their own? |
| 348 | - if (empty($actions['u'])) |
|
| 349 | - $actions['u'] = $url[1]; |
|
| 364 | + if (empty($actions['u'])) { |
|
| 365 | + $actions['u'] = $url[1]; |
|
| 366 | + } |
|
| 350 | 367 | |
| 351 | 368 | $data[$k] = $txt['who_hidden']; |
| 352 | 369 | $profile_ids[(int) $actions['u']][$k] = $actions['u'] == $url[1] ? $txt['who_viewownprofile'] : $txt['who_viewprofile']; |
| 353 | - } |
|
| 354 | - elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
| 370 | + } elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
| 355 | 371 | { |
| 356 | 372 | $data[$k] = $txt['who_hidden']; |
| 357 | 373 | $board_ids[(int) $actions['board']][$k] = isset($actions['poll']) ? $txt['who_poll'] : $txt['who_post']; |
| 358 | 374 | } |
| 359 | 375 | // A subaction anyone can view... if the language string is there, show it. |
| 360 | - elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) |
|
| 361 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
| 376 | + elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) { |
|
| 377 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
| 378 | + } |
|
| 362 | 379 | // An action any old fellow can look at. (if ['whoall_' . $action] exists, we know everyone can see it.) |
| 363 | - elseif (isset($txt['whoall_' . $actions['action']])) |
|
| 364 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
| 380 | + elseif (isset($txt['whoall_' . $actions['action']])) { |
|
| 381 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
| 382 | + } |
|
| 365 | 383 | // Viewable if and only if they can see the board... |
| 366 | 384 | elseif (isset($txt['whotopic_' . $actions['action']])) |
| 367 | 385 | { |
@@ -370,8 +388,7 @@ discard block |
||
| 370 | 388 | |
| 371 | 389 | $data[$k] = $txt['who_hidden']; |
| 372 | 390 | $topic_ids[$topic][$k] = $txt['whotopic_' . $actions['action']]; |
| 373 | - } |
|
| 374 | - elseif (isset($txt['whopost_' . $actions['action']])) |
|
| 391 | + } elseif (isset($txt['whopost_' . $actions['action']])) |
|
| 375 | 392 | { |
| 376 | 393 | // Find out what message they are accessing. |
| 377 | 394 | $msgid = (int) (isset($actions['msg']) ? $actions['msg'] : (isset($actions['quote']) ? $actions['quote'] : 0)); |
@@ -394,41 +411,46 @@ discard block |
||
| 394 | 411 | $data[$k] = sprintf($txt['whopost_' . $actions['action']], $id_topic, $subject); |
| 395 | 412 | $smcFunc['db_free_result']($result); |
| 396 | 413 | |
| 397 | - if (empty($id_topic)) |
|
| 398 | - $data[$k] = $txt['who_hidden']; |
|
| 414 | + if (empty($id_topic)) { |
|
| 415 | + $data[$k] = $txt['who_hidden']; |
|
| 416 | + } |
|
| 399 | 417 | } |
| 400 | 418 | // Viewable only by administrators.. (if it starts with whoadmin, it's admin only!) |
| 401 | - elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) |
|
| 402 | - $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
| 419 | + elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) { |
|
| 420 | + $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
| 421 | + } |
|
| 403 | 422 | // Viewable by permission level. |
| 404 | 423 | elseif (isset($allowedActions[$actions['action']])) |
| 405 | 424 | { |
| 406 | - if (allowedTo($allowedActions[$actions['action']])) |
|
| 407 | - $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
| 408 | - elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) |
|
| 409 | - $data[$k] = $txt['who_moderate']; |
|
| 410 | - elseif (in_array('admin_forum', $allowedActions[$actions['action']])) |
|
| 411 | - $data[$k] = $txt['who_admin']; |
|
| 412 | - else |
|
| 413 | - $data[$k] = $txt['who_hidden']; |
|
| 425 | + if (allowedTo($allowedActions[$actions['action']])) { |
|
| 426 | + $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
| 427 | + } elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) { |
|
| 428 | + $data[$k] = $txt['who_moderate']; |
|
| 429 | + } elseif (in_array('admin_forum', $allowedActions[$actions['action']])) { |
|
| 430 | + $data[$k] = $txt['who_admin']; |
|
| 431 | + } else { |
|
| 432 | + $data[$k] = $txt['who_hidden']; |
|
| 433 | + } |
|
| 434 | + } elseif (!empty($actions['action'])) { |
|
| 435 | + $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
| 436 | + } else { |
|
| 437 | + $data[$k] = $txt['who_unknown']; |
|
| 414 | 438 | } |
| 415 | - elseif (!empty($actions['action'])) |
|
| 416 | - $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
| 417 | - else |
|
| 418 | - $data[$k] = $txt['who_unknown']; |
|
| 419 | 439 | } |
| 420 | 440 | |
| 421 | 441 | if (isset($actions['error'])) |
| 422 | 442 | { |
| 423 | - if (isset($txt[$actions['error']])) |
|
| 424 | - $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
| 425 | - elseif ($actions['error'] == 'guest_login') |
|
| 426 | - $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
| 427 | - else |
|
| 428 | - $error_message = str_replace('"', '"', $actions['error']); |
|
| 429 | - |
|
| 430 | - if (!empty($error_message)) |
|
| 431 | - $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
| 443 | + if (isset($txt[$actions['error']])) { |
|
| 444 | + $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
| 445 | + } elseif ($actions['error'] == 'guest_login') { |
|
| 446 | + $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
| 447 | + } else { |
|
| 448 | + $error_message = str_replace('"', '"', $actions['error']); |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + if (!empty($error_message)) { |
|
| 452 | + $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
| 453 | + } |
|
| 432 | 454 | } |
| 433 | 455 | |
| 434 | 456 | // Maybe the action is integrated into another system? |
@@ -439,12 +461,15 @@ discard block |
||
| 439 | 461 | if (!empty($integrate_action)) |
| 440 | 462 | { |
| 441 | 463 | $data[$k] = $integrate_action; |
| 442 | - if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) |
|
| 443 | - $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
| 444 | - if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) |
|
| 445 | - $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
| 446 | - if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) |
|
| 447 | - $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
| 464 | + if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) { |
|
| 465 | + $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
| 466 | + } |
|
| 467 | + if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) { |
|
| 468 | + $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
| 469 | + } |
|
| 470 | + if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) { |
|
| 471 | + $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
| 472 | + } |
|
| 448 | 473 | break; |
| 449 | 474 | } |
| 450 | 475 | } |
@@ -472,8 +497,9 @@ discard block |
||
| 472 | 497 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 473 | 498 | { |
| 474 | 499 | // Show the topic's subject for each of the actions. |
| 475 | - foreach ($topic_ids[$row['id_topic']] as $k => $session_text) |
|
| 476 | - $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
| 500 | + foreach ($topic_ids[$row['id_topic']] as $k => $session_text) { |
|
| 501 | + $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
| 502 | + } |
|
| 477 | 503 | } |
| 478 | 504 | $smcFunc['db_free_result']($result); |
| 479 | 505 | } |
@@ -495,8 +521,9 @@ discard block |
||
| 495 | 521 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 496 | 522 | { |
| 497 | 523 | // Put the board name into the string for each member... |
| 498 | - foreach ($board_ids[$row['id_board']] as $k => $session_text) |
|
| 499 | - $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
| 524 | + foreach ($board_ids[$row['id_board']] as $k => $session_text) { |
|
| 525 | + $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
| 526 | + } |
|
| 500 | 527 | } |
| 501 | 528 | $smcFunc['db_free_result']($result); |
| 502 | 529 | } |
@@ -518,23 +545,26 @@ discard block |
||
| 518 | 545 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 519 | 546 | { |
| 520 | 547 | // If they aren't allowed to view this person's profile, skip it. |
| 521 | - if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) |
|
| 522 | - continue; |
|
| 548 | + if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) { |
|
| 549 | + continue; |
|
| 550 | + } |
|
| 523 | 551 | |
| 524 | 552 | // Set their action on each - session/text to sprintf. |
| 525 | - foreach ($profile_ids[$row['id_member']] as $k => $session_text) |
|
| 526 | - $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
| 553 | + foreach ($profile_ids[$row['id_member']] as $k => $session_text) { |
|
| 554 | + $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
| 555 | + } |
|
| 527 | 556 | } |
| 528 | 557 | $smcFunc['db_free_result']($result); |
| 529 | 558 | } |
| 530 | 559 | |
| 531 | 560 | call_integration_hook('whos_online_after', array(&$urls, &$data)); |
| 532 | 561 | |
| 533 | - if (!is_array($urls)) |
|
| 534 | - return isset($data[0]) ? $data[0] : false; |
|
| 535 | - else |
|
| 536 | - return $data; |
|
| 537 | -} |
|
| 562 | + if (!is_array($urls)) { |
|
| 563 | + return isset($data[0]) ? $data[0] : false; |
|
| 564 | + } else { |
|
| 565 | + return $data; |
|
| 566 | + } |
|
| 567 | + } |
|
| 538 | 568 | |
| 539 | 569 | /** |
| 540 | 570 | * It prepares credit and copyright information for the credits page or the admin page |
@@ -710,8 +740,8 @@ discard block |
||
| 710 | 740 | ); |
| 711 | 741 | |
| 712 | 742 | // Give the translators some credit for their hard work. |
| 713 | - if (!empty($txt['translation_credits'])) |
|
| 714 | - $context['credits'][] = array( |
|
| 743 | + if (!empty($txt['translation_credits'])) { |
|
| 744 | + $context['credits'][] = array( |
|
| 715 | 745 | 'title' => $txt['credits_groups_translation'], |
| 716 | 746 | 'groups' => array( |
| 717 | 747 | array( |
@@ -720,6 +750,7 @@ discard block |
||
| 720 | 750 | ), |
| 721 | 751 | ), |
| 722 | 752 | ); |
| 753 | + } |
|
| 723 | 754 | |
| 724 | 755 | $context['credits'][] = array( |
| 725 | 756 | 'title' => $txt['credits_special'], |
@@ -104,7 +104,7 @@ |
||
| 104 | 104 | * |
| 105 | 105 | * @param string $class The fully-qualified class name. |
| 106 | 106 | */ |
| 107 | -spl_autoload_register(function ($class) use ($sourcedir) |
|
| 107 | +spl_autoload_register(function($class) use ($sourcedir) |
|
| 108 | 108 | { |
| 109 | 109 | $classMap = array( |
| 110 | 110 | 'ReCaptcha\\' => 'ReCaptcha/', |
@@ -32,16 +32,18 @@ discard block |
||
| 32 | 32 | ob_start(); |
| 33 | 33 | |
| 34 | 34 | // Do some cleaning, just in case. |
| 35 | -foreach (array('db_character_set', 'cachedir') as $variable) |
|
| 35 | +foreach (array('db_character_set', 'cachedir') as $variable) { |
|
| 36 | 36 | if (isset($GLOBALS[$variable])) |
| 37 | 37 | unset($GLOBALS[$variable], $GLOBALS[$variable]); |
| 38 | +} |
|
| 38 | 39 | |
| 39 | 40 | // Load the settings... |
| 40 | 41 | require_once(dirname(__FILE__) . '/Settings.php'); |
| 41 | 42 | |
| 42 | 43 | // Make absolutely sure the cache directory is defined. |
| 43 | -if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) |
|
| 44 | +if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) { |
|
| 44 | 45 | $cachedir = $boarddir . '/cache'; |
| 46 | +} |
|
| 45 | 47 | |
| 46 | 48 | // Without those we can't go anywhere |
| 47 | 49 | require_once($sourcedir . '/QueryString.php'); |
@@ -51,8 +53,9 @@ discard block |
||
| 51 | 53 | require_once($sourcedir . '/Load.php'); |
| 52 | 54 | |
| 53 | 55 | // If $maintenance is set specifically to 2, then we're upgrading or something. |
| 54 | -if (!empty($maintenance) && $maintenance == 2) |
|
| 56 | +if (!empty($maintenance) && $maintenance == 2) { |
|
| 55 | 57 | display_maintenance_message(); |
| 58 | +} |
|
| 56 | 59 | |
| 57 | 60 | // Create a variable to store some SMF specific functions in. |
| 58 | 61 | $smcFunc = array(); |
@@ -67,8 +70,9 @@ discard block |
||
| 67 | 70 | cleanRequest(); |
| 68 | 71 | |
| 69 | 72 | // Seed the random generator. |
| 70 | -if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) |
|
| 73 | +if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) { |
|
| 71 | 74 | smf_seed_generator(); |
| 75 | +} |
|
| 72 | 76 | |
| 73 | 77 | // Before we get carried away, are we doing a scheduled task? If so save CPU cycles by jumping out! |
| 74 | 78 | if (isset($_GET['scheduled'])) |
@@ -88,9 +92,9 @@ discard block |
||
| 88 | 92 | if (!empty($modSettings['enableCompressedOutput']) && !headers_sent()) |
| 89 | 93 | { |
| 90 | 94 | // If zlib is being used, turn off output compression. |
| 91 | - if (ini_get('zlib.output_compression') >= 1 || ini_get('output_handler') == 'ob_gzhandler') |
|
| 92 | - $modSettings['enableCompressedOutput'] = '0'; |
|
| 93 | - else |
|
| 95 | + if (ini_get('zlib.output_compression') >= 1 || ini_get('output_handler') == 'ob_gzhandler') { |
|
| 96 | + $modSettings['enableCompressedOutput'] = '0'; |
|
| 97 | + } else |
|
| 94 | 98 | { |
| 95 | 99 | ob_end_clean(); |
| 96 | 100 | ob_start('ob_gzhandler'); |
@@ -182,18 +186,21 @@ discard block |
||
| 182 | 186 | loadPermissions(); |
| 183 | 187 | |
| 184 | 188 | // Attachments don't require the entire theme to be loaded. |
| 185 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach') |
|
| 186 | - detectBrowser(); |
|
| 189 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach') { |
|
| 190 | + detectBrowser(); |
|
| 191 | + } |
|
| 187 | 192 | // Load the current theme. (note that ?theme=1 will also work, may be used for guest theming.) |
| 188 | - else |
|
| 189 | - loadTheme(); |
|
| 193 | + else { |
|
| 194 | + loadTheme(); |
|
| 195 | + } |
|
| 190 | 196 | |
| 191 | 197 | // Check if the user should be disallowed access. |
| 192 | 198 | is_not_banned(); |
| 193 | 199 | |
| 194 | 200 | // If we are in a topic and don't have permission to approve it then duck out now. |
| 195 | - if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest'])) |
|
| 196 | - fatal_lang_error('not_a_topic', false); |
|
| 201 | + if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest'])) { |
|
| 202 | + fatal_lang_error('not_a_topic', false); |
|
| 203 | + } |
|
| 197 | 204 | |
| 198 | 205 | $no_stat_actions = array('clock', 'dlattach', 'findmember', 'jsoption', 'likes', 'loadeditorlocale', 'modifycat', 'requestmembers', 'smstats', 'suggest', 'about:unknown', '.xml', 'xmlhttp', 'verificationcode', 'viewquery', 'viewsmfile'); |
| 199 | 206 | call_integration_hook('integrate_pre_log_stats', array(&$no_stat_actions)); |
@@ -204,8 +211,9 @@ discard block |
||
| 204 | 211 | writeLog(); |
| 205 | 212 | |
| 206 | 213 | // Track forum statistics and hits...? |
| 207 | - if (!empty($modSettings['hitStats'])) |
|
| 208 | - trackStats(array('hits' => '+')); |
|
| 214 | + if (!empty($modSettings['hitStats'])) { |
|
| 215 | + trackStats(array('hits' => '+')); |
|
| 216 | + } |
|
| 209 | 217 | } |
| 210 | 218 | unset($no_stat_actions); |
| 211 | 219 | |
@@ -219,13 +227,14 @@ discard block |
||
| 219 | 227 | return ($_REQUEST['action'] == 'login2' ? 'Login2' : ($_REQUEST['action'] == 'logintfa' ? 'LoginTFA' : 'Logout')); |
| 220 | 228 | } |
| 221 | 229 | // Don't even try it, sonny. |
| 222 | - else |
|
| 223 | - return 'InMaintenance'; |
|
| 230 | + else { |
|
| 231 | + return 'InMaintenance'; |
|
| 232 | + } |
|
| 224 | 233 | } |
| 225 | 234 | // If guest access is off, a guest can only do one of the very few following actions. |
| 226 | - elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'logintfa', 'reminder', 'activate', 'help', 'helpadmin', 'smstats', 'verificationcode', 'signup', 'signup2')))) |
|
| 227 | - return 'KickGuest'; |
|
| 228 | - elseif (empty($_REQUEST['action'])) |
|
| 235 | + elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'logintfa', 'reminder', 'activate', 'help', 'helpadmin', 'smstats', 'verificationcode', 'signup', 'signup2')))) { |
|
| 236 | + return 'KickGuest'; |
|
| 237 | + } elseif (empty($_REQUEST['action'])) |
|
| 229 | 238 | { |
| 230 | 239 | // Action and board are both empty... BoardIndex! Unless someone else wants to do something different. |
| 231 | 240 | if (empty($board) && empty($topic)) |
@@ -239,8 +248,9 @@ discard block |
||
| 239 | 248 | |
| 240 | 249 | $call = call_helper($defaultAction, true); |
| 241 | 250 | |
| 242 | - if (!empty($call)) |
|
| 243 | - return $call; |
|
| 251 | + if (!empty($call)) { |
|
| 252 | + return $call; |
|
| 253 | + } |
|
| 244 | 254 | } |
| 245 | 255 | |
| 246 | 256 | // No default action huh? then go to our good old BoardIndex. |
@@ -370,8 +380,9 @@ discard block |
||
| 370 | 380 | |
| 371 | 381 | $call = call_helper($fallbackAction, true); |
| 372 | 382 | |
| 373 | - if (!empty($call)) |
|
| 374 | - return $call; |
|
| 383 | + if (!empty($call)) { |
|
| 384 | + return $call; |
|
| 385 | + } |
|
| 375 | 386 | } |
| 376 | 387 | |
| 377 | 388 | // No fallback action, huh? |
@@ -382,8 +393,9 @@ discard block |
||
| 382 | 393 | } |
| 383 | 394 | |
| 384 | 395 | // Otherwise, it was set - so let's go to that action. |
| 385 | - if (!empty($actionArray[$_REQUEST['action']][0])) |
|
| 386 | - require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]); |
|
| 396 | + if (!empty($actionArray[$_REQUEST['action']][0])) { |
|
| 397 | + require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]); |
|
| 398 | + } |
|
| 387 | 399 | |
| 388 | 400 | // Do the right thing. |
| 389 | 401 | return call_helper($actionArray[$_REQUEST['action']][1], true); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * Display a list of upcoming events, birthdays, and holidays. |
| 69 | 69 | * |
| 70 | 70 | * @param string $grid_name The grid name |
| 71 | - * @return void|bool Returns false if the grid doesn't exist. |
|
| 71 | + * @return false|null Returns false if the grid doesn't exist. |
|
| 72 | 72 | */ |
| 73 | 73 | function template_show_upcoming_list($grid_name) |
| 74 | 74 | { |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * |
| 239 | 239 | * @param string $grid_name The grid name |
| 240 | 240 | * @param bool $is_mini Is this a mini grid? |
| 241 | - * @return void|bool Returns false if the grid doesn't exist. |
|
| 241 | + * @return false|null Returns false if the grid doesn't exist. |
|
| 242 | 242 | */ |
| 243 | 243 | function template_show_month_grid($grid_name, $is_mini = false) |
| 244 | 244 | { |
@@ -523,7 +523,7 @@ discard block |
||
| 523 | 523 | * Shows a weekly grid |
| 524 | 524 | * |
| 525 | 525 | * @param string $grid_name The name of the grid |
| 526 | - * @return void|bool Returns false if the grid doesn't exist |
|
| 526 | + * @return false|null Returns false if the grid doesn't exist |
|
| 527 | 527 | */ |
| 528 | 528 | function template_show_week_grid($grid_name) |
| 529 | 529 | { |
@@ -22,30 +22,32 @@ discard block |
||
| 22 | 22 | <div id="calendar">'; |
| 23 | 23 | |
| 24 | 24 | // Show the mini-blocks if they're enabled. |
| 25 | - if (empty($context['blocks_disabled'])) |
|
| 26 | - echo ' |
|
| 25 | + if (empty($context['blocks_disabled'])) { |
|
| 26 | + echo ' |
|
| 27 | 27 | <div id="month_grid"> |
| 28 | 28 | ', template_show_month_grid('prev', true), ' |
| 29 | 29 | ', template_show_month_grid('current', true), ' |
| 30 | 30 | ', template_show_month_grid('next', true), ' |
| 31 | 31 | </div>'; |
| 32 | + } |
|
| 32 | 33 | |
| 33 | 34 | // What view are we showing? |
| 34 | - if ($context['calendar_view'] == 'viewlist') |
|
| 35 | - echo ' |
|
| 35 | + if ($context['calendar_view'] == 'viewlist') { |
|
| 36 | + echo ' |
|
| 36 | 37 | <div id="main_grid"> |
| 37 | 38 | ', template_show_upcoming_list('main'), ' |
| 38 | 39 | </div>'; |
| 39 | - elseif ($context['calendar_view'] == 'viewweek') |
|
| 40 | - echo ' |
|
| 40 | + } elseif ($context['calendar_view'] == 'viewweek') { |
|
| 41 | + echo ' |
|
| 41 | 42 | <div id="main_grid"> |
| 42 | 43 | ', template_show_week_grid('main'), ' |
| 43 | 44 | </div>'; |
| 44 | - else |
|
| 45 | - echo ' |
|
| 45 | + } else { |
|
| 46 | + echo ' |
|
| 46 | 47 | <div id="main_grid"> |
| 47 | 48 | ', template_show_month_grid('main'), ' |
| 48 | 49 | </div>'; |
| 50 | + } |
|
| 49 | 51 | |
| 50 | 52 | // Close our wrapper. |
| 51 | 53 | echo ' |
@@ -64,20 +66,22 @@ discard block |
||
| 64 | 66 | global $context, $scripturl, $txt; |
| 65 | 67 | |
| 66 | 68 | // Bail out if we have nothing to work with |
| 67 | - if (!isset($context['calendar_grid_' . $grid_name])) |
|
| 68 | - return false; |
|
| 69 | + if (!isset($context['calendar_grid_' . $grid_name])) { |
|
| 70 | + return false; |
|
| 71 | + } |
|
| 69 | 72 | |
| 70 | 73 | // Protect programmer sanity |
| 71 | 74 | $calendar_data = &$context['calendar_grid_' . $grid_name]; |
| 72 | 75 | |
| 73 | 76 | // Do we want a title? |
| 74 | - if (empty($calendar_data['disable_title'])) |
|
| 75 | - echo ' |
|
| 77 | + if (empty($calendar_data['disable_title'])) { |
|
| 78 | + echo ' |
|
| 76 | 79 | <div class="cat_bar"> |
| 77 | 80 | <h3 class="catbg centertext largetext"> |
| 78 | 81 | <a href="', $scripturl, '?action=calendar;viewlist;year=', $calendar_data['start_year'], ';month=', $calendar_data['start_month'], ';day=', $calendar_data['start_day'], '">', $txt['calendar_upcoming'], '</a> |
| 79 | 82 | </h3> |
| 80 | 83 | </div>'; |
| 84 | + } |
|
| 81 | 85 | |
| 82 | 86 | // Give the user some controls to work with |
| 83 | 87 | template_calendar_top($calendar_data); |
@@ -100,11 +104,13 @@ discard block |
||
| 100 | 104 | <li class="windowbg"> |
| 101 | 105 | <strong class="event_title">', $event['link'], '</strong>'; |
| 102 | 106 | |
| 103 | - if ($event['can_edit']) |
|
| 104 | - echo ' <a href="' . $event['modify_href'] . '"><span class="generic_icons calendar_modify" title="', $txt['calendar_edit'], '"></span></a>'; |
|
| 107 | + if ($event['can_edit']) { |
|
| 108 | + echo ' <a href="' . $event['modify_href'] . '"><span class="generic_icons calendar_modify" title="', $txt['calendar_edit'], '"></span></a>'; |
|
| 109 | + } |
|
| 105 | 110 | |
| 106 | - if ($event['can_export']) |
|
| 107 | - echo ' <a href="' . $event['export_href'] . '"><span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span></a>'; |
|
| 111 | + if ($event['can_export']) { |
|
| 112 | + echo ' <a href="' . $event['export_href'] . '"><span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span></a>'; |
|
| 113 | + } |
|
| 108 | 114 | |
| 109 | 115 | echo ' |
| 110 | 116 | <br>'; |
@@ -112,14 +118,14 @@ discard block |
||
| 112 | 118 | if (!empty($event['allday'])) |
| 113 | 119 | { |
| 114 | 120 | echo '<time datetime="' . $event['start_iso_gmdate'] . '">', trim($event['start_date_local']), '</time>', ($event['start_date'] != $event['end_date']) ? ' – <time datetime="' . $event['end_iso_gmdate'] . '">' . trim($event['end_date_local']) . '</time>' : ''; |
| 115 | - } |
|
| 116 | - else |
|
| 121 | + } else |
|
| 117 | 122 | { |
| 118 | 123 | // Display event info relative to user's local timezone |
| 119 | 124 | echo '<time datetime="' . $event['start_iso_gmdate'] . '">', trim($event['start_date_local']), ', ', trim($event['start_time_local']), '</time> – <time datetime="' . $event['end_iso_gmdate'] . '">'; |
| 120 | 125 | |
| 121 | - if ($event['start_date_local'] != $event['end_date_local']) |
|
| 122 | - echo trim($event['end_date_local']) . ', '; |
|
| 126 | + if ($event['start_date_local'] != $event['end_date_local']) { |
|
| 127 | + echo trim($event['end_date_local']) . ', '; |
|
| 128 | + } |
|
| 123 | 129 | |
| 124 | 130 | echo trim($event['end_time_local']); |
| 125 | 131 | |
@@ -128,23 +134,27 @@ discard block |
||
| 128 | 134 | { |
| 129 | 135 | echo '</time> (<time datetime="' . $event['start_iso_gmdate'] . '">'; |
| 130 | 136 | |
| 131 | - if ($event['start_date_orig'] != $event['start_date_local'] || $event['end_date_orig'] != $event['end_date_local'] || $event['start_date_orig'] != $event['end_date_orig']) |
|
| 132 | - echo trim($event['start_date_orig']), ', '; |
|
| 137 | + if ($event['start_date_orig'] != $event['start_date_local'] || $event['end_date_orig'] != $event['end_date_local'] || $event['start_date_orig'] != $event['end_date_orig']) { |
|
| 138 | + echo trim($event['start_date_orig']), ', '; |
|
| 139 | + } |
|
| 133 | 140 | |
| 134 | 141 | echo trim($event['start_time_orig']), '</time> – <time datetime="' . $event['end_iso_gmdate'] . '">'; |
| 135 | 142 | |
| 136 | - if ($event['start_date_orig'] != $event['end_date_orig']) |
|
| 137 | - echo trim($event['end_date_orig']) . ', '; |
|
| 143 | + if ($event['start_date_orig'] != $event['end_date_orig']) { |
|
| 144 | + echo trim($event['end_date_orig']) . ', '; |
|
| 145 | + } |
|
| 138 | 146 | |
| 139 | 147 | echo trim($event['end_time_orig']), ' ', $event['tz_abbrev'], '</time>)'; |
| 140 | 148 | } |
| 141 | 149 | // Event is scheduled in the user's own timezone? Let 'em know, just to avoid confusion |
| 142 | - else |
|
| 143 | - echo ' ', $event['tz_abbrev'], '</time>'; |
|
| 150 | + else { |
|
| 151 | + echo ' ', $event['tz_abbrev'], '</time>'; |
|
| 152 | + } |
|
| 144 | 153 | } |
| 145 | 154 | |
| 146 | - if (!empty($event['location'])) |
|
| 147 | - echo '<br>', $event['location']; |
|
| 155 | + if (!empty($event['location'])) { |
|
| 156 | + echo '<br>', $event['location']; |
|
| 157 | + } |
|
| 148 | 158 | |
| 149 | 159 | echo ' |
| 150 | 160 | </li>'; |
@@ -176,8 +186,9 @@ discard block |
||
| 176 | 186 | |
| 177 | 187 | $birthdays = array(); |
| 178 | 188 | |
| 179 | - foreach ($date as $member) |
|
| 180 | - $birthdays[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '">' . $member['name'] . (isset($member['age']) ? ' (' . $member['age'] . ')' : '') . '</a>'; |
|
| 189 | + foreach ($date as $member) { |
|
| 190 | + $birthdays[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '">' . $member['name'] . (isset($member['age']) ? ' (' . $member['age'] . ')' : '') . '</a>'; |
|
| 191 | + } |
|
| 181 | 192 | |
| 182 | 193 | echo implode(', ', $birthdays); |
| 183 | 194 | |
@@ -208,8 +219,9 @@ discard block |
||
| 208 | 219 | $date_local = $date['date_local']; |
| 209 | 220 | unset($date['date_local']); |
| 210 | 221 | |
| 211 | - foreach ($date as $holiday) |
|
| 212 | - $holidays[] = $holiday . ' (' . $date_local . ')'; |
|
| 222 | + foreach ($date as $holiday) { |
|
| 223 | + $holidays[] = $holiday . ' (' . $date_local . ')'; |
|
| 224 | + } |
|
| 213 | 225 | } |
| 214 | 226 | |
| 215 | 227 | echo implode(', ', $holidays); |
@@ -233,17 +245,19 @@ discard block |
||
| 233 | 245 | global $context, $txt, $scripturl, $modSettings; |
| 234 | 246 | |
| 235 | 247 | // If the grid doesn't exist, no point in proceeding. |
| 236 | - if (!isset($context['calendar_grid_' . $grid_name])) |
|
| 237 | - return false; |
|
| 248 | + if (!isset($context['calendar_grid_' . $grid_name])) { |
|
| 249 | + return false; |
|
| 250 | + } |
|
| 238 | 251 | |
| 239 | 252 | // A handy little pointer variable. |
| 240 | 253 | $calendar_data = &$context['calendar_grid_' . $grid_name]; |
| 241 | 254 | |
| 242 | 255 | // Some conditions for whether or not we should show the week links *here*. |
| 243 | - if (isset($calendar_data['show_week_links']) && ($calendar_data['show_week_links'] == 3 || (($calendar_data['show_week_links'] == 1 && $is_mini === true) || $calendar_data['show_week_links'] == 2 && $is_mini === false))) |
|
| 244 | - $show_week_links = true; |
|
| 245 | - else |
|
| 246 | - $show_week_links = false; |
|
| 256 | + if (isset($calendar_data['show_week_links']) && ($calendar_data['show_week_links'] == 3 || (($calendar_data['show_week_links'] == 1 && $is_mini === true) || $calendar_data['show_week_links'] == 2 && $is_mini === false))) { |
|
| 257 | + $show_week_links = true; |
|
| 258 | + } else { |
|
| 259 | + $show_week_links = false; |
|
| 260 | + } |
|
| 247 | 261 | |
| 248 | 262 | // Assuming that we've not disabled it, show the title block! |
| 249 | 263 | if (empty($calendar_data['disable_title'])) |
@@ -253,18 +267,20 @@ discard block |
||
| 253 | 267 | <h3 class="catbg centertext largetext">'; |
| 254 | 268 | |
| 255 | 269 | // Previous Link: If we're showing prev / next and it's not a mini-calendar. |
| 256 | - if (empty($calendar_data['previous_calendar']['disabled']) && $calendar_data['show_next_prev'] && $is_mini === false) |
|
| 257 | - echo ' |
|
| 270 | + if (empty($calendar_data['previous_calendar']['disabled']) && $calendar_data['show_next_prev'] && $is_mini === false) { |
|
| 271 | + echo ' |
|
| 258 | 272 | <span class="floatleft"> |
| 259 | 273 | <a href="', $calendar_data['previous_calendar']['href'], '">«</a> |
| 260 | 274 | </span>'; |
| 275 | + } |
|
| 261 | 276 | |
| 262 | 277 | // Next Link: if we're showing prev / next and it's not a mini-calendar. |
| 263 | - if (empty($calendar_data['next_calendar']['disabled']) && $calendar_data['show_next_prev'] && $is_mini === false) |
|
| 264 | - echo ' |
|
| 278 | + if (empty($calendar_data['next_calendar']['disabled']) && $calendar_data['show_next_prev'] && $is_mini === false) { |
|
| 279 | + echo ' |
|
| 265 | 280 | <span class="floatright"> |
| 266 | 281 | <a href="', $calendar_data['next_calendar']['href'], '">»</a> |
| 267 | 282 | </span>'; |
| 283 | + } |
|
| 268 | 284 | |
| 269 | 285 | // Arguably the most exciting part, the title! |
| 270 | 286 | echo ' |
@@ -274,8 +290,9 @@ discard block |
||
| 274 | 290 | } |
| 275 | 291 | |
| 276 | 292 | // Show the controls on main grids |
| 277 | - if ($is_mini === false) |
|
| 278 | - template_calendar_top($calendar_data); |
|
| 293 | + if ($is_mini === false) { |
|
| 294 | + template_calendar_top($calendar_data); |
|
| 295 | + } |
|
| 279 | 296 | |
| 280 | 297 | // Finally, the main calendar table. |
| 281 | 298 | echo ' |
@@ -288,14 +305,16 @@ discard block |
||
| 288 | 305 | <tr>'; |
| 289 | 306 | |
| 290 | 307 | // If we're showing week links, there's an extra column ahead of the week links, so let's think ahead and be prepared! |
| 291 | - if ($show_week_links === true) |
|
| 292 | - echo ' |
|
| 308 | + if ($show_week_links === true) { |
|
| 309 | + echo ' |
|
| 293 | 310 | <th></th>'; |
| 311 | + } |
|
| 294 | 312 | |
| 295 | 313 | // Now, loop through each actual day of the week. |
| 296 | - foreach ($calendar_data['week_days'] as $day) |
|
| 297 | - echo ' |
|
| 314 | + foreach ($calendar_data['week_days'] as $day) { |
|
| 315 | + echo ' |
|
| 298 | 316 | <th class="days" scope="col">', !empty($calendar_data['short_day_titles']) || $is_mini === true ? $txt['days_short'][$day] : $txt['days'][$day], '</th>'; |
| 317 | + } |
|
| 299 | 318 | |
| 300 | 319 | echo ' |
| 301 | 320 | </tr>'; |
@@ -314,11 +333,12 @@ discard block |
||
| 314 | 333 | <tr class="days_wrapper">'; |
| 315 | 334 | |
| 316 | 335 | // This is where we add the actual week link, if enabled on this location. |
| 317 | - if ($show_week_links === true) |
|
| 318 | - echo ' |
|
| 336 | + if ($show_week_links === true) { |
|
| 337 | + echo ' |
|
| 319 | 338 | <td class="windowbg2 weeks"> |
| 320 | 339 | <a href="', $scripturl, '?action=calendar;viewweek;year=', $calendar_data['current_year'], ';month=', $calendar_data['current_month'], ';day=', $week['days'][0]['day'], '" title="', $txt['calendar_view_week'], '">»</a> |
| 321 | 340 | </td>'; |
| 341 | + } |
|
| 322 | 342 | |
| 323 | 343 | // Now loop through each day in the week we're on. |
| 324 | 344 | foreach ($week['days'] as $day) |
@@ -335,27 +355,29 @@ discard block |
||
| 335 | 355 | // Additional classes are given for events, holidays, and birthdays. |
| 336 | 356 | if (!empty($day['events']) && !empty($calendar_data['highlight']['events'])) |
| 337 | 357 | { |
| 338 | - if ($is_mini === true && in_array($calendar_data['highlight']['events'], array(1, 3))) |
|
| 339 | - $classes[] = 'events'; |
|
| 340 | - elseif ($is_mini === false && in_array($calendar_data['highlight']['events'], array(2, 3))) |
|
| 341 | - $classes[] = 'events'; |
|
| 358 | + if ($is_mini === true && in_array($calendar_data['highlight']['events'], array(1, 3))) { |
|
| 359 | + $classes[] = 'events'; |
|
| 360 | + } elseif ($is_mini === false && in_array($calendar_data['highlight']['events'], array(2, 3))) { |
|
| 361 | + $classes[] = 'events'; |
|
| 362 | + } |
|
| 342 | 363 | } |
| 343 | 364 | if (!empty($day['holidays']) && !empty($calendar_data['highlight']['holidays'])) |
| 344 | 365 | { |
| 345 | - if ($is_mini === true && in_array($calendar_data['highlight']['holidays'], array(1, 3))) |
|
| 346 | - $classes[] = 'holidays'; |
|
| 347 | - elseif ($is_mini === false && in_array($calendar_data['highlight']['holidays'], array(2, 3))) |
|
| 348 | - $classes[] = 'holidays'; |
|
| 366 | + if ($is_mini === true && in_array($calendar_data['highlight']['holidays'], array(1, 3))) { |
|
| 367 | + $classes[] = 'holidays'; |
|
| 368 | + } elseif ($is_mini === false && in_array($calendar_data['highlight']['holidays'], array(2, 3))) { |
|
| 369 | + $classes[] = 'holidays'; |
|
| 370 | + } |
|
| 349 | 371 | } |
| 350 | 372 | if (!empty($day['birthdays']) && !empty($calendar_data['highlight']['birthdays'])) |
| 351 | 373 | { |
| 352 | - if ($is_mini === true && in_array($calendar_data['highlight']['birthdays'], array(1, 3))) |
|
| 353 | - $classes[] = 'birthdays'; |
|
| 354 | - elseif ($is_mini === false && in_array($calendar_data['highlight']['birthdays'], array(2, 3))) |
|
| 355 | - $classes[] = 'birthdays'; |
|
| 374 | + if ($is_mini === true && in_array($calendar_data['highlight']['birthdays'], array(1, 3))) { |
|
| 375 | + $classes[] = 'birthdays'; |
|
| 376 | + } elseif ($is_mini === false && in_array($calendar_data['highlight']['birthdays'], array(2, 3))) { |
|
| 377 | + $classes[] = 'birthdays'; |
|
| 378 | + } |
|
| 356 | 379 | } |
| 357 | - } |
|
| 358 | - else |
|
| 380 | + } else |
|
| 359 | 381 | { |
| 360 | 382 | // Default Classes (either compact or comfortable and disabled). |
| 361 | 383 | $classes[] = !empty($calendar_data['size']) && $calendar_data['size'] == 'small' ? 'compact' : 'comfortable'; |
@@ -374,25 +396,27 @@ discard block |
||
| 374 | 396 | $title_prefix = !empty($day['is_first_of_month']) && $context['current_month'] == $calendar_data['current_month'] && $is_mini === false ? (!empty($calendar_data['short_month_titles']) ? $txt['months_short'][$calendar_data['current_month']] . ' ' : $txt['months_titles'][$calendar_data['current_month']] . ' ') : ''; |
| 375 | 397 | |
| 376 | 398 | // The actual day number - be it a link, or just plain old text! |
| 377 | - if (!empty($modSettings['cal_daysaslink']) && $context['can_post']) |
|
| 378 | - echo ' |
|
| 399 | + if (!empty($modSettings['cal_daysaslink']) && $context['can_post']) { |
|
| 400 | + echo ' |
|
| 379 | 401 | <a href="', $scripturl, '?action=calendar;sa=post;year=', $calendar_data['current_year'], ';month=', $calendar_data['current_month'], ';day=', $day['day'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="day_text">', $title_prefix, $day['day'], '</span></a>'; |
| 380 | - elseif ($is_mini) |
|
| 381 | - echo ' |
|
| 402 | + } elseif ($is_mini) { |
|
| 403 | + echo ' |
|
| 382 | 404 | <a href="', $scripturl, '?action=calendar;', $context['calendar_view'], ';year=', $calendar_data['current_year'], ';month=', $calendar_data['current_month'], ';day=', $day['day'], '"><span class="day_text">', $title_prefix, $day['day'], '</span></a>'; |
| 383 | - else |
|
| 384 | - echo ' |
|
| 405 | + } else { |
|
| 406 | + echo ' |
|
| 385 | 407 | <span class="day_text">', $title_prefix, $day['day'], '</span>'; |
| 408 | + } |
|
| 386 | 409 | |
| 387 | 410 | // A lot of stuff, we're not showing on mini-calendars to conserve space. |
| 388 | 411 | if ($is_mini === false) |
| 389 | 412 | { |
| 390 | 413 | // Holidays are always fun, let's show them! |
| 391 | - if (!empty($day['holidays'])) |
|
| 392 | - echo ' |
|
| 414 | + if (!empty($day['holidays'])) { |
|
| 415 | + echo ' |
|
| 393 | 416 | <div class="smalltext holiday"> |
| 394 | 417 | <span>', $txt['calendar_prompt'], '</span> ', implode(', ', $day['holidays']), ' |
| 395 | 418 | </div>'; |
| 419 | + } |
|
| 396 | 420 | |
| 397 | 421 | // Happy Birthday Dear Member! |
| 398 | 422 | if (!empty($day['birthdays'])) |
@@ -410,15 +434,17 @@ discard block |
||
| 410 | 434 | echo '<a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">', $member['name'], '</span>', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', $member['is_last'] || ($count == 10 && $use_js_hide) ? '' : ', '; |
| 411 | 435 | |
| 412 | 436 | // 9...10! Let's stop there. |
| 413 | - if ($birthday_count == 10 && $use_js_hide) |
|
| 414 | - // !!TODO - Inline CSS and JavaScript should be moved. |
|
| 437 | + if ($birthday_count == 10 && $use_js_hide) { |
|
| 438 | + // !!TODO - Inline CSS and JavaScript should be moved. |
|
| 415 | 439 | echo '<span class="hidelink" id="bdhidelink_', $day['day'], '">...<br><a href="', $scripturl, '?action=calendar;month=', $calendar_data['current_month'], ';year=', $calendar_data['current_year'], ';showbd" onclick="document.getElementById(\'bdhide_', $day['day'], '\').style.display = \'\'; document.getElementById(\'bdhidelink_', $day['day'], '\').style.display = \'none\'; return false;">(', sprintf($txt['calendar_click_all'], count($day['birthdays'])), ')</a></span><span id="bdhide_', $day['day'], '" style="display: none;">, '; |
| 440 | + } |
|
| 416 | 441 | |
| 417 | 442 | ++$birthday_count; |
| 418 | 443 | } |
| 419 | - if ($use_js_hide) |
|
| 420 | - echo ' |
|
| 444 | + if ($use_js_hide) { |
|
| 445 | + echo ' |
|
| 421 | 446 | </span>'; |
| 447 | + } |
|
| 422 | 448 | |
| 423 | 449 | echo ' |
| 424 | 450 | </div><!-- .smalltext -->'; |
@@ -429,8 +455,9 @@ discard block |
||
| 429 | 455 | { |
| 430 | 456 | // Sort events by start time (all day events will be listed first) |
| 431 | 457 | uasort($day['events'], function($a, $b) { |
| 432 | - if ($a['start_timestamp'] == $b['start_timestamp']) |
|
| 433 | - return 0; |
|
| 458 | + if ($a['start_timestamp'] == $b['start_timestamp']) { |
|
| 459 | + return 0; |
|
| 460 | + } |
|
| 434 | 461 | |
| 435 | 462 | return ($a['start_timestamp'] < $b['start_timestamp']) ? -1 : 1; |
| 436 | 463 | }); |
@@ -450,20 +477,22 @@ discard block |
||
| 450 | 477 | ', $event['link'], '<br> |
| 451 | 478 | <span class="event_time', empty($event_icons_needed) ? ' floatright' : '', '">'; |
| 452 | 479 | |
| 453 | - if (!empty($event['start_time_local']) && $event['starts_today'] == true) |
|
| 454 | - echo trim(str_replace(':00 ', ' ', $event['start_time_local'])); |
|
| 455 | - elseif (!empty($event['end_time_local']) && $event['ends_today'] == true) |
|
| 456 | - echo strtolower($txt['ends']), ' ', trim(str_replace(':00 ', ' ', $event['end_time_local'])); |
|
| 457 | - elseif (!empty($event['allday'])) |
|
| 458 | - echo $txt['calendar_allday']; |
|
| 480 | + if (!empty($event['start_time_local']) && $event['starts_today'] == true) { |
|
| 481 | + echo trim(str_replace(':00 ', ' ', $event['start_time_local'])); |
|
| 482 | + } elseif (!empty($event['end_time_local']) && $event['ends_today'] == true) { |
|
| 483 | + echo strtolower($txt['ends']), ' ', trim(str_replace(':00 ', ' ', $event['end_time_local'])); |
|
| 484 | + } elseif (!empty($event['allday'])) { |
|
| 485 | + echo $txt['calendar_allday']; |
|
| 486 | + } |
|
| 459 | 487 | |
| 460 | 488 | echo ' |
| 461 | 489 | </span>'; |
| 462 | 490 | |
| 463 | - if (!empty($event['location'])) |
|
| 464 | - echo ' |
|
| 491 | + if (!empty($event['location'])) { |
|
| 492 | + echo ' |
|
| 465 | 493 | <br> |
| 466 | 494 | <span class="event_location', empty($event_icons_needed) ? ' floatright' : '', '">' . $event['location'] . '</span>'; |
| 495 | + } |
|
| 467 | 496 | |
| 468 | 497 | if ($event['can_edit'] || $event['can_export']) |
| 469 | 498 | { |
@@ -471,18 +500,20 @@ discard block |
||
| 471 | 500 | <span class="modify_event_links">'; |
| 472 | 501 | |
| 473 | 502 | // If they can edit the event, show an icon they can click on.... |
| 474 | - if ($event['can_edit']) |
|
| 475 | - echo ' |
|
| 503 | + if ($event['can_edit']) { |
|
| 504 | + echo ' |
|
| 476 | 505 | <a class="modify_event" href="', $event['modify_href'], '"> |
| 477 | 506 | <span class="generic_icons calendar_modify" title="', $txt['calendar_edit'], '"></span> |
| 478 | 507 | </a>'; |
| 508 | + } |
|
| 479 | 509 | |
| 480 | 510 | // Exporting! |
| 481 | - if ($event['can_export']) |
|
| 482 | - echo ' |
|
| 511 | + if ($event['can_export']) { |
|
| 512 | + echo ' |
|
| 483 | 513 | <a class="modify_event" href="', $event['export_href'], '"> |
| 484 | 514 | <span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span> |
| 485 | 515 | </a>'; |
| 516 | + } |
|
| 486 | 517 | |
| 487 | 518 | echo ' |
| 488 | 519 | </span><br class="clear">'; |
@@ -501,10 +532,11 @@ discard block |
||
| 501 | 532 | // Otherwise, assuming it's not a mini-calendar, we can show previous / next month days! |
| 502 | 533 | elseif ($is_mini === false) |
| 503 | 534 | { |
| 504 | - if (empty($current_month_started) && !empty($context['calendar_grid_prev'])) |
|
| 505 | - echo '<a href="', $scripturl, '?action=calendar;year=', $context['calendar_grid_prev']['current_year'], ';month=', $context['calendar_grid_prev']['current_month'], '">', $context['calendar_grid_prev']['last_of_month'] - $calendar_data['shift']-- +1, '</a>'; |
|
| 506 | - elseif (!empty($current_month_started) && !empty($context['calendar_grid_next'])) |
|
| 507 | - echo '<a href="', $scripturl, '?action=calendar;year=', $context['calendar_grid_next']['current_year'], ';month=', $context['calendar_grid_next']['current_month'], '">', $current_month_started + 1 == $count ? (!empty($calendar_data['short_month_titles']) ? $txt['months_short'][$context['calendar_grid_next']['current_month']] . ' ' : $txt['months_titles'][$context['calendar_grid_next']['current_month']] . ' ') : '', $final_count++, '</a>'; |
|
| 535 | + if (empty($current_month_started) && !empty($context['calendar_grid_prev'])) { |
|
| 536 | + echo '<a href="', $scripturl, '?action=calendar;year=', $context['calendar_grid_prev']['current_year'], ';month=', $context['calendar_grid_prev']['current_month'], '">', $context['calendar_grid_prev']['last_of_month'] - $calendar_data['shift']-- +1, '</a>'; |
|
| 537 | + } elseif (!empty($current_month_started) && !empty($context['calendar_grid_next'])) { |
|
| 538 | + echo '<a href="', $scripturl, '?action=calendar;year=', $context['calendar_grid_next']['current_year'], ';month=', $context['calendar_grid_next']['current_month'], '">', $current_month_started + 1 == $count ? (!empty($calendar_data['short_month_titles']) ? $txt['months_short'][$context['calendar_grid_next']['current_month']] . ' ' : $txt['months_titles'][$context['calendar_grid_next']['current_month']] . ' ') : '', $final_count++, '</a>'; |
|
| 539 | + } |
|
| 508 | 540 | } |
| 509 | 541 | |
| 510 | 542 | // Close this day and increase var count. |
@@ -534,8 +566,9 @@ discard block |
||
| 534 | 566 | global $context, $txt, $scripturl, $modSettings; |
| 535 | 567 | |
| 536 | 568 | // We might have no reason to proceed, if the variable isn't there. |
| 537 | - if (!isset($context['calendar_grid_' . $grid_name])) |
|
| 538 | - return false; |
|
| 569 | + if (!isset($context['calendar_grid_' . $grid_name])) { |
|
| 570 | + return false; |
|
| 571 | + } |
|
| 539 | 572 | |
| 540 | 573 | // Handy pointer. |
| 541 | 574 | $calendar_data = &$context['calendar_grid_' . $grid_name]; |
@@ -552,22 +585,25 @@ discard block |
||
| 552 | 585 | <h3 class="catbg centertext largetext">'; |
| 553 | 586 | |
| 554 | 587 | // Previous Week Link... |
| 555 | - if (empty($calendar_data['previous_calendar']['disabled']) && !empty($calendar_data['show_next_prev'])) |
|
| 556 | - echo ' |
|
| 588 | + if (empty($calendar_data['previous_calendar']['disabled']) && !empty($calendar_data['show_next_prev'])) { |
|
| 589 | + echo ' |
|
| 557 | 590 | <span class="floatleft"> |
| 558 | 591 | <a href="', $calendar_data['previous_week']['href'], '">«</a> |
| 559 | 592 | </span>'; |
| 593 | + } |
|
| 560 | 594 | |
| 561 | 595 | // Next Week Link... |
| 562 | - if (empty($calendar_data['next_calendar']['disabled']) && !empty($calendar_data['show_next_prev'])) |
|
| 563 | - echo ' |
|
| 596 | + if (empty($calendar_data['next_calendar']['disabled']) && !empty($calendar_data['show_next_prev'])) { |
|
| 597 | + echo ' |
|
| 564 | 598 | <span class="floatright"> |
| 565 | 599 | <a href="', $calendar_data['next_week']['href'], '">»</a> |
| 566 | 600 | </span>'; |
| 601 | + } |
|
| 567 | 602 | |
| 568 | 603 | // The Month Title + Week Number... |
| 569 | - if (!empty($calendar_data['week_title'])) |
|
| 570 | - echo $calendar_data['week_title']; |
|
| 604 | + if (!empty($calendar_data['week_title'])) { |
|
| 605 | + echo $calendar_data['week_title']; |
|
| 606 | + } |
|
| 571 | 607 | |
| 572 | 608 | echo ' |
| 573 | 609 | </h3> |
@@ -608,11 +644,12 @@ discard block |
||
| 608 | 644 | <td class="', implode(' ', $classes), ' act_day">'; |
| 609 | 645 | |
| 610 | 646 | // Should the day number be a link? |
| 611 | - if (!empty($modSettings['cal_daysaslink']) && $context['can_post']) |
|
| 612 | - echo ' |
|
| 647 | + if (!empty($modSettings['cal_daysaslink']) && $context['can_post']) { |
|
| 648 | + echo ' |
|
| 613 | 649 | <a href="', $scripturl, '?action=calendar;sa=post;month=', $month_data['current_month'], ';year=', $month_data['current_year'], ';day=', $day['day'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['days'][$day['day_of_week']], ' - ', $day['day'], '</a>'; |
| 614 | - else |
|
| 615 | - echo $txt['days'][$day['day_of_week']], ' - ', $day['day']; |
|
| 650 | + } else { |
|
| 651 | + echo $txt['days'][$day['day_of_week']], ' - ', $day['day']; |
|
| 652 | + } |
|
| 616 | 653 | |
| 617 | 654 | echo ' |
| 618 | 655 | </td> |
@@ -623,8 +660,9 @@ discard block |
||
| 623 | 660 | { |
| 624 | 661 | // Sort events by start time (all day events will be listed first) |
| 625 | 662 | uasort($day['events'], function($a, $b) { |
| 626 | - if ($a['start_timestamp'] == $b['start_timestamp']) |
|
| 627 | - return 0; |
|
| 663 | + if ($a['start_timestamp'] == $b['start_timestamp']) { |
|
| 664 | + return 0; |
|
| 665 | + } |
|
| 628 | 666 | return ($a['start_timestamp'] < $b['start_timestamp']) ? -1 : 1; |
| 629 | 667 | }); |
| 630 | 668 | |
@@ -638,35 +676,39 @@ discard block |
||
| 638 | 676 | echo $event['link'], '<br> |
| 639 | 677 | <span class="event_time', empty($event_icons_needed) ? ' floatright' : '', '">'; |
| 640 | 678 | |
| 641 | - if (!empty($event['start_time_local'])) |
|
| 642 | - echo trim($event['start_time_local']), !empty($event['end_time_local']) ? ' – ' . trim($event['end_time_local']) : ''; |
|
| 643 | - else |
|
| 644 | - echo $txt['calendar_allday']; |
|
| 679 | + if (!empty($event['start_time_local'])) { |
|
| 680 | + echo trim($event['start_time_local']), !empty($event['end_time_local']) ? ' – ' . trim($event['end_time_local']) : ''; |
|
| 681 | + } else { |
|
| 682 | + echo $txt['calendar_allday']; |
|
| 683 | + } |
|
| 645 | 684 | |
| 646 | 685 | echo ' |
| 647 | 686 | </span>'; |
| 648 | 687 | |
| 649 | - if (!empty($event['location'])) |
|
| 650 | - echo '<br> |
|
| 688 | + if (!empty($event['location'])) { |
|
| 689 | + echo '<br> |
|
| 651 | 690 | <span class="event_location', empty($event_icons_needed) ? ' floatright' : '', '">' . $event['location'] . '</span>'; |
| 691 | + } |
|
| 652 | 692 | |
| 653 | 693 | if (!empty($event_icons_needed)) |
| 654 | 694 | { |
| 655 | 695 | echo ' <span class="modify_event_links">'; |
| 656 | 696 | |
| 657 | 697 | // If they can edit the event, show a star they can click on.... |
| 658 | - if (!empty($event['can_edit'])) |
|
| 659 | - echo ' |
|
| 698 | + if (!empty($event['can_edit'])) { |
|
| 699 | + echo ' |
|
| 660 | 700 | <a class="modify_event" href="', $event['modify_href'], '"> |
| 661 | 701 | <span class="generic_icons calendar_modify" title="', $txt['calendar_edit'], '"></span> |
| 662 | 702 | </a>'; |
| 703 | + } |
|
| 663 | 704 | |
| 664 | 705 | // Can we export? Sweet. |
| 665 | - if (!empty($event['can_export'])) |
|
| 666 | - echo ' |
|
| 706 | + if (!empty($event['can_export'])) { |
|
| 707 | + echo ' |
|
| 667 | 708 | <a class="modify_event" href="', $event['export_href'], '"> |
| 668 | 709 | <span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span> |
| 669 | 710 | </a>'; |
| 711 | + } |
|
| 670 | 712 | |
| 671 | 713 | echo ' |
| 672 | 714 | </span><br class="clear">'; |
@@ -684,22 +726,23 @@ discard block |
||
| 684 | 726 | </div> |
| 685 | 727 | <br class="clear">'; |
| 686 | 728 | } |
| 687 | - } |
|
| 688 | - else |
|
| 729 | + } else |
|
| 689 | 730 | { |
| 690 | - if (!empty($context['can_post'])) |
|
| 691 | - echo ' |
|
| 731 | + if (!empty($context['can_post'])) { |
|
| 732 | + echo ' |
|
| 692 | 733 | <div class="week_add_event"> |
| 693 | 734 | <a href="', $scripturl, '?action=calendar;sa=post;month=', $month_data['current_month'], ';year=', $month_data['current_year'], ';day=', $day['day'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['calendar_post_event'], '</a> |
| 694 | 735 | </div>'; |
| 736 | + } |
|
| 695 | 737 | } |
| 696 | 738 | echo ' |
| 697 | 739 | </td> |
| 698 | 740 | <td class="', implode(' ', $classes), !empty($day['holidays']) ? ' holidays' : ' disabled', ' holiday_col" data-css-prefix="' . $txt['calendar_prompt'] . ' ">'; |
| 699 | 741 | |
| 700 | 742 | // Show any holidays! |
| 701 | - if (!empty($day['holidays'])) |
|
| 702 | - echo implode('<br>', $day['holidays']); |
|
| 743 | + if (!empty($day['holidays'])) { |
|
| 744 | + echo implode('<br>', $day['holidays']); |
|
| 745 | + } |
|
| 703 | 746 | |
| 704 | 747 | echo ' |
| 705 | 748 | </td> |
@@ -708,11 +751,12 @@ discard block |
||
| 708 | 751 | // Show any birthdays... |
| 709 | 752 | if (!empty($day['birthdays'])) |
| 710 | 753 | { |
| 711 | - foreach ($day['birthdays'] as $member) |
|
| 712 | - echo ' |
|
| 754 | + foreach ($day['birthdays'] as $member) { |
|
| 755 | + echo ' |
|
| 713 | 756 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['name'], '</a> |
| 714 | 757 | ', isset($member['age']) ? ' (' . $member['age'] . ')' : '', ' |
| 715 | 758 | ', $member['is_last'] ? '' : '<br>'; |
| 759 | + } |
|
| 716 | 760 | } |
| 717 | 761 | echo ' |
| 718 | 762 | </td> |
@@ -758,26 +802,27 @@ discard block |
||
| 758 | 802 | <input type="text" name="end_date" id="end_date" maxlength="10" value="', $calendar_data['end_date'], '" tabindex="', $context['tabindex']++, '" class="date_input end" data-type="date"> |
| 759 | 803 | <input type="submit" class="button" style="float:none" id="view_button" value="', $txt['view'], '"> |
| 760 | 804 | </form>'; |
| 761 | - } |
|
| 762 | - else |
|
| 805 | + } else |
|
| 763 | 806 | { |
| 764 | 807 | echo' |
| 765 | 808 | <form action="', $scripturl, '?action=calendar" id="calendar_navigation" method="post" accept-charset="', $context['character_set'], '"> |
| 766 | 809 | <select name="month" id="input_month">'; |
| 767 | 810 | |
| 768 | 811 | // Show a select box with all the months. |
| 769 | - foreach ($txt['months_short'] as $number => $month) |
|
| 770 | - echo ' |
|
| 812 | + foreach ($txt['months_short'] as $number => $month) { |
|
| 813 | + echo ' |
|
| 771 | 814 | <option value="', $number, '"', $number == $context['current_month'] ? ' selected' : '', '>', $month, '</option>'; |
| 815 | + } |
|
| 772 | 816 | |
| 773 | 817 | echo ' |
| 774 | 818 | </select> |
| 775 | 819 | <select name="year">'; |
| 776 | 820 | |
| 777 | 821 | // Show a link for every year... |
| 778 | - for ($year = $context['calendar_resources']['min_year']; $year <= $context['calendar_resources']['max_year']; $year++) |
|
| 779 | - echo ' |
|
| 822 | + for ($year = $context['calendar_resources']['min_year']; $year <= $context['calendar_resources']['max_year']; $year++) { |
|
| 823 | + echo ' |
|
| 780 | 824 | <option value="', $year, '"', $year == $context['current_year'] ? ' selected' : '', '>', $year, '</option>'; |
| 825 | + } |
|
| 781 | 826 | |
| 782 | 827 | echo ' |
| 783 | 828 | </select> |
@@ -799,9 +844,10 @@ discard block |
||
| 799 | 844 | echo ' |
| 800 | 845 | <form action="', $scripturl, '?action=calendar;sa=post" method="post" name="postevent" accept-charset="', $context['character_set'], '" onsubmit="submitonce(this);">'; |
| 801 | 846 | |
| 802 | - if (!empty($context['event']['new'])) |
|
| 803 | - echo ' |
|
| 847 | + if (!empty($context['event']['new'])) { |
|
| 848 | + echo ' |
|
| 804 | 849 | <input type="hidden" name="eventid" value="', $context['event']['eventid'], '">'; |
| 850 | + } |
|
| 805 | 851 | |
| 806 | 852 | // Start the main table. |
| 807 | 853 | echo ' |
@@ -812,8 +858,8 @@ discard block |
||
| 812 | 858 | </h3> |
| 813 | 859 | </div>'; |
| 814 | 860 | |
| 815 | - if (!empty($context['post_error']['messages'])) |
|
| 816 | - echo ' |
|
| 861 | + if (!empty($context['post_error']['messages'])) { |
|
| 862 | + echo ' |
|
| 817 | 863 | <div class="errorbox"> |
| 818 | 864 | <dl class="event_error"> |
| 819 | 865 | <dt> |
@@ -824,6 +870,7 @@ discard block |
||
| 824 | 870 | </dt> |
| 825 | 871 | </dl> |
| 826 | 872 | </div>'; |
| 873 | + } |
|
| 827 | 874 | |
| 828 | 875 | echo ' |
| 829 | 876 | <div class="roundframe noup"> |
@@ -851,9 +898,10 @@ discard block |
||
| 851 | 898 | echo ' |
| 852 | 899 | <optgroup label="', $category['name'], '">'; |
| 853 | 900 | |
| 854 | - foreach ($category['boards'] as $board) |
|
| 855 | - echo ' |
|
| 901 | + foreach ($category['boards'] as $board) { |
|
| 902 | + echo ' |
|
| 856 | 903 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=>' : '', ' ', $board['name'], '</option>'; |
| 904 | + } |
|
| 857 | 905 | echo ' |
| 858 | 906 | </optgroup>'; |
| 859 | 907 | } |
@@ -889,9 +937,10 @@ discard block |
||
| 889 | 937 | <span class="label">', $txt['calendar_timezone'], '</span> |
| 890 | 938 | <select name="tz" id="tz"', !empty($context['event']['allday']) ? ' disabled' : '', '>'; |
| 891 | 939 | |
| 892 | - foreach ($context['all_timezones'] as $tz => $tzname) |
|
| 893 | - echo ' |
|
| 940 | + foreach ($context['all_timezones'] as $tz => $tzname) { |
|
| 941 | + echo ' |
|
| 894 | 942 | <option value="', $tz, '"', $tz == $context['event']['tz'] ? ' selected' : '', '>', $tzname, '</option>'; |
| 943 | + } |
|
| 895 | 944 | |
| 896 | 945 | echo ' |
| 897 | 946 | </select> |
@@ -907,9 +956,10 @@ discard block |
||
| 907 | 956 | <input type="submit" value="', empty($context['event']['new']) ? $txt['save'] : $txt['post'], '" class="button">'; |
| 908 | 957 | |
| 909 | 958 | // Delete button? |
| 910 | - if (empty($context['event']['new'])) |
|
| 911 | - echo ' |
|
| 959 | + if (empty($context['event']['new'])) { |
|
| 960 | + echo ' |
|
| 912 | 961 | <input type="submit" name="deleteevent" value="', $txt['event_delete'], '" data-confirm="', $txt['calendar_confirm_delete'], '" class="button you_sure">'; |
| 962 | + } |
|
| 913 | 963 | |
| 914 | 964 | echo ' |
| 915 | 965 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -937,9 +987,10 @@ discard block |
||
| 937 | 987 | echo ' |
| 938 | 988 | <td style="padding-', $alt ? 'right' : 'left', ': 1.5em;">'; |
| 939 | 989 | |
| 940 | - foreach ($v as $i) |
|
| 941 | - echo ' |
|
| 990 | + foreach ($v as $i) { |
|
| 991 | + echo ' |
|
| 942 | 992 | <img src="', $context['offimg'], '" alt="" id="', $t, '_', $i, '"><br>'; |
| 993 | + } |
|
| 943 | 994 | |
| 944 | 995 | echo ' |
| 945 | 996 | </td>'; |
@@ -960,9 +1011,10 @@ discard block |
||
| 960 | 1011 | |
| 961 | 1012 | foreach ($context['clockicons'] as $t => $v) |
| 962 | 1013 | { |
| 963 | - foreach ($v as $i) |
|
| 964 | - echo ' |
|
| 1014 | + foreach ($v as $i) { |
|
| 1015 | + echo ' |
|
| 965 | 1016 | icons[\'', $t, '_', $i, '\'] = document.getElementById(\'', $t, '_', $i, '\');'; |
| 1017 | + } |
|
| 966 | 1018 | } |
| 967 | 1019 | |
| 968 | 1020 | echo ' |
@@ -987,13 +1039,14 @@ discard block |
||
| 987 | 1039 | |
| 988 | 1040 | foreach ($context['clockicons'] as $t => $v) |
| 989 | 1041 | { |
| 990 | - foreach ($v as $i) |
|
| 991 | - echo ' |
|
| 1042 | + foreach ($v as $i) { |
|
| 1043 | + echo ' |
|
| 992 | 1044 | if (', $t, ' >= ', $i, ') |
| 993 | 1045 | { |
| 994 | 1046 | turnon.push("', $t, '_', $i, '"); |
| 995 | 1047 | ', $t, ' -= ', $i, '; |
| 996 | 1048 | }'; |
| 1049 | + } |
|
| 997 | 1050 | } |
| 998 | 1051 | |
| 999 | 1052 | echo ' |
@@ -1037,9 +1090,10 @@ discard block |
||
| 1037 | 1090 | <tr class="', $alt ? 'windowbg2' : 'windowbg', '"> |
| 1038 | 1091 | <td>'; |
| 1039 | 1092 | |
| 1040 | - foreach ($v as $i) |
|
| 1041 | - echo ' |
|
| 1093 | + foreach ($v as $i) { |
|
| 1094 | + echo ' |
|
| 1042 | 1095 | <img src="', $context['offimg'], '" alt="" id="', $t, '_', $i, '" style="padding: 2px;">'; |
| 1096 | + } |
|
| 1043 | 1097 | |
| 1044 | 1098 | echo ' |
| 1045 | 1099 | </td> |
@@ -1061,9 +1115,10 @@ discard block |
||
| 1061 | 1115 | |
| 1062 | 1116 | foreach ($context['clockicons'] as $t => $v) |
| 1063 | 1117 | { |
| 1064 | - foreach ($v as $i) |
|
| 1065 | - echo ' |
|
| 1118 | + foreach ($v as $i) { |
|
| 1119 | + echo ' |
|
| 1066 | 1120 | icons[\'', $t, '_', $i, '\'] = document.getElementById(\'', $t, '_', $i, '\');'; |
| 1121 | + } |
|
| 1067 | 1122 | } |
| 1068 | 1123 | |
| 1069 | 1124 | echo ' |
@@ -1080,13 +1135,14 @@ discard block |
||
| 1080 | 1135 | |
| 1081 | 1136 | foreach ($context['clockicons'] as $t => $v) |
| 1082 | 1137 | { |
| 1083 | - foreach ($v as $i) |
|
| 1084 | - echo ' |
|
| 1138 | + foreach ($v as $i) { |
|
| 1139 | + echo ' |
|
| 1085 | 1140 | if (', $t, ' >= ', $i, ') |
| 1086 | 1141 | { |
| 1087 | 1142 | turnon.push("', $t, '_', $i, '"); |
| 1088 | 1143 | ', $t, ' -= ', $i, '; |
| 1089 | 1144 | }'; |
| 1145 | + } |
|
| 1090 | 1146 | } |
| 1091 | 1147 | |
| 1092 | 1148 | echo ' |
@@ -1130,9 +1186,10 @@ discard block |
||
| 1130 | 1186 | <tr class="', $alt ? 'windowbg2' : 'windowbg', '"> |
| 1131 | 1187 | <td>'; |
| 1132 | 1188 | |
| 1133 | - foreach ($v as $i) |
|
| 1134 | - echo ' |
|
| 1189 | + foreach ($v as $i) { |
|
| 1190 | + echo ' |
|
| 1135 | 1191 | <img src="', $context['offimg'], '" alt="" id="', $t, '_', $i, '" style="padding: 2px;">'; |
| 1192 | + } |
|
| 1136 | 1193 | |
| 1137 | 1194 | echo ' |
| 1138 | 1195 | </td> |
@@ -1148,9 +1205,10 @@ discard block |
||
| 1148 | 1205 | |
| 1149 | 1206 | foreach ($context['clockicons'] as $t => $v) |
| 1150 | 1207 | { |
| 1151 | - foreach ($v as $i) |
|
| 1152 | - echo ' |
|
| 1208 | + foreach ($v as $i) { |
|
| 1209 | + echo ' |
|
| 1153 | 1210 | icons[\'', $t, '_', $i, '\'] = document.getElementById(\'', $t, '_', $i, '\');'; |
| 1211 | + } |
|
| 1154 | 1212 | } |
| 1155 | 1213 | |
| 1156 | 1214 | echo ' |
@@ -1171,13 +1229,14 @@ discard block |
||
| 1171 | 1229 | |
| 1172 | 1230 | foreach ($context['clockicons'] as $t => $v) |
| 1173 | 1231 | { |
| 1174 | - foreach ($v as $i) |
|
| 1175 | - echo ' |
|
| 1232 | + foreach ($v as $i) { |
|
| 1233 | + echo ' |
|
| 1176 | 1234 | if (', $t, ' >= ', $i, ') |
| 1177 | 1235 | { |
| 1178 | 1236 | turnon.push("', $t, '_', $i, '"); |
| 1179 | 1237 | ', $t, ' -= ', $i, '; |
| 1180 | 1238 | }'; |
| 1239 | + } |
|
| 1181 | 1240 | } |
| 1182 | 1241 | |
| 1183 | 1242 | echo ' |
@@ -1221,9 +1280,10 @@ discard block |
||
| 1221 | 1280 | <tr class="', $alt ? 'windowbg2' : 'windowbg', '"> |
| 1222 | 1281 | <td>'; |
| 1223 | 1282 | |
| 1224 | - foreach ($v as $i) |
|
| 1225 | - echo ' |
|
| 1283 | + foreach ($v as $i) { |
|
| 1284 | + echo ' |
|
| 1226 | 1285 | <img src="', $i ? $context['onimg'] : $context['offimg'], '" alt="" style="padding: 2px;">'; |
| 1286 | + } |
|
| 1227 | 1287 | |
| 1228 | 1288 | echo ' |
| 1229 | 1289 | </td> |
@@ -82,7 +82,7 @@ |
||
| 82 | 82 | |
| 83 | 83 | // The helper is crucial. Include it first thing. |
| 84 | 84 | if (!file_exists($upgrade_path . '/upgrade-helper.php')) |
| 85 | - die('upgrade-helper.php not found where it was expected: ' . $upgrade_path . '/upgrade-helper.php! Make sure you have uploaded ALL files from the upgrade package. The upgrader cannot continue.'); |
|
| 85 | + die('upgrade-helper.php not found where it was expected: ' . $upgrade_path . '/upgrade-helper.php! Make sure you have uploaded ALL files from the upgrade package. The upgrader cannot continue.'); |
|
| 86 | 86 | |
| 87 | 87 | require_once($upgrade_path . '/upgrade-helper.php'); |
| 88 | 88 | |
@@ -1661,7 +1661,7 @@ discard block |
||
| 1661 | 1661 | |
| 1662 | 1662 | // Our custom error handler - does nothing but does stop public errors from XML! |
| 1663 | 1663 | set_error_handler( |
| 1664 | - function ($errno, $errstr, $errfile, $errline) use ($support_js) |
|
| 1664 | + function($errno, $errstr, $errfile, $errline) use ($support_js) |
|
| 1665 | 1665 | { |
| 1666 | 1666 | if ($support_js) |
| 1667 | 1667 | return true; |
@@ -2651,94 +2651,94 @@ discard block |
||
| 2651 | 2651 | // Translation table for the character sets not native for MySQL. |
| 2652 | 2652 | $translation_tables = array( |
| 2653 | 2653 | 'windows-1255' => array( |
| 2654 | - '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
| 2655 | - '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
| 2656 | - '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
| 2657 | - '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
| 2658 | - '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
| 2659 | - '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
| 2660 | - '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
| 2661 | - '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
| 2662 | - '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
| 2663 | - '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
| 2664 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
| 2665 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
| 2666 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
| 2667 | - '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
| 2668 | - '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
| 2669 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
| 2670 | - '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
| 2671 | - '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
| 2672 | - '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
| 2673 | - '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
| 2674 | - '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
| 2675 | - '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
| 2676 | - '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
| 2677 | - '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
| 2678 | - '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
| 2679 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
| 2680 | - '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
| 2681 | - '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
| 2682 | - '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
| 2683 | - '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
| 2684 | - '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
| 2685 | - '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
| 2686 | - '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
| 2687 | - '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
| 2688 | - '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
| 2689 | - '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
| 2690 | - '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
| 2691 | - '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
| 2692 | - '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
| 2693 | - '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
| 2694 | - '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
| 2695 | - '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
| 2654 | + '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
| 2655 | + '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
| 2656 | + '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
| 2657 | + '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
| 2658 | + '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
| 2659 | + '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
| 2660 | + '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
| 2661 | + '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
| 2662 | + '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
| 2663 | + '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
| 2664 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
| 2665 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
| 2666 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
| 2667 | + '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
| 2668 | + '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
| 2669 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
| 2670 | + '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
| 2671 | + '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
| 2672 | + '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
| 2673 | + '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
| 2674 | + '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
| 2675 | + '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
| 2676 | + '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
| 2677 | + '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
| 2678 | + '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
| 2679 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
| 2680 | + '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
| 2681 | + '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
| 2682 | + '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
| 2683 | + '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
| 2684 | + '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
| 2685 | + '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
| 2686 | + '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
| 2687 | + '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
| 2688 | + '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
| 2689 | + '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
| 2690 | + '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
| 2691 | + '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
| 2692 | + '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
| 2693 | + '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
| 2694 | + '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
| 2695 | + '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
| 2696 | 2696 | '0xFA' => '0xD7AA', |
| 2697 | 2697 | ), |
| 2698 | 2698 | 'windows-1253' => array( |
| 2699 | - '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
| 2700 | - '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
| 2701 | - '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
| 2702 | - '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
| 2703 | - '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
| 2704 | - '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
| 2705 | - '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
| 2706 | - '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
| 2707 | - '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
| 2708 | - '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
| 2709 | - '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
| 2710 | - '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
| 2711 | - '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
| 2712 | - '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
| 2713 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
| 2714 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
| 2715 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
| 2716 | - '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
| 2717 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
| 2718 | - '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
| 2719 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
| 2720 | - '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
| 2721 | - '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
| 2722 | - '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
| 2723 | - '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
| 2724 | - '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
| 2725 | - '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
| 2726 | - '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
| 2727 | - '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
| 2728 | - '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
| 2729 | - '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
| 2730 | - '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
| 2731 | - '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
| 2732 | - '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
| 2733 | - '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
| 2734 | - '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
| 2735 | - '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
| 2736 | - '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
| 2737 | - '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
| 2738 | - '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
| 2739 | - '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
| 2740 | - '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
| 2741 | - '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
| 2699 | + '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
| 2700 | + '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
| 2701 | + '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
| 2702 | + '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
| 2703 | + '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
| 2704 | + '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
| 2705 | + '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
| 2706 | + '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
| 2707 | + '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
| 2708 | + '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
| 2709 | + '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
| 2710 | + '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
| 2711 | + '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
| 2712 | + '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
| 2713 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
| 2714 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
| 2715 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
| 2716 | + '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
| 2717 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
| 2718 | + '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
| 2719 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
| 2720 | + '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
| 2721 | + '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
| 2722 | + '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
| 2723 | + '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
| 2724 | + '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
| 2725 | + '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
| 2726 | + '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
| 2727 | + '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
| 2728 | + '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
| 2729 | + '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
| 2730 | + '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
| 2731 | + '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
| 2732 | + '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
| 2733 | + '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
| 2734 | + '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
| 2735 | + '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
| 2736 | + '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
| 2737 | + '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
| 2738 | + '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
| 2739 | + '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
| 2740 | + '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
| 2741 | + '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
| 2742 | 2742 | ), |
| 2743 | 2743 | ); |
| 2744 | 2744 | |
@@ -3638,7 +3638,7 @@ discard block |
||
| 3638 | 3638 | |
| 3639 | 3639 | if ($active < 600) |
| 3640 | 3640 | echo ' |
| 3641 | - ', $txt['upgrade_run_script'], ' ', $upcontext['user']['name'],' ', $txt['upgrade_run_script2'], ''; |
|
| 3641 | + ', $txt['upgrade_run_script'], ' ', $upcontext['user']['name'], ' ', $txt['upgrade_run_script2'], ''; |
|
| 3642 | 3642 | |
| 3643 | 3643 | if ($active > $upcontext['inactive_timeout']) |
| 3644 | 3644 | echo ' |
@@ -3840,7 +3840,7 @@ discard block |
||
| 3840 | 3840 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
| 3841 | 3841 | <input type="hidden" name="backup_done" id="backup_done" value="0"> |
| 3842 | 3842 | <strong>Completed <span id="tab_done">', $upcontext['cur_table_num'], '</span> out of ', $upcontext['table_count'], ' tables.</strong> |
| 3843 | - <div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;"> |
|
| 3843 | + <div id="debug_section" style="height: ', ($is_debug ? '115' : '12'), 'px; overflow: auto;"> |
|
| 3844 | 3844 | <span id="debuginfo"></span> |
| 3845 | 3845 | </div>'; |
| 3846 | 3846 | |
@@ -4341,7 +4341,7 @@ discard block |
||
| 4341 | 4341 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
| 4342 | 4342 | <input type="hidden" name="utf8_done" id="utf8_done" value="0"> |
| 4343 | 4343 | <strong>', $txt['upgrade_completed'], ' <span id="tab_done">', $upcontext['cur_table_num'], '</span> ', $txt['upgrade_outof'], ' ', $upcontext['table_count'], ' ', $txt['upgrade_tables'], '</strong> |
| 4344 | - <div id="debug_section" style="height: ', ($is_debug ? '97' : '12') , 'px; overflow: auto;"> |
|
| 4344 | + <div id="debug_section" style="height: ', ($is_debug ? '97' : '12'), 'px; overflow: auto;"> |
|
| 4345 | 4345 | <span id="debuginfo"></span> |
| 4346 | 4346 | </div>'; |
| 4347 | 4347 | |
@@ -4442,7 +4442,7 @@ discard block |
||
| 4442 | 4442 | <form action="', $upcontext['form_url'], '" name="upform" id="upform" method="post"> |
| 4443 | 4443 | <input type="hidden" name="json_done" id="json_done" value="0"> |
| 4444 | 4444 | <strong>', $txt['upgrade_completed'], ' <span id="tab_done">', $upcontext['cur_table_num'], '</span> ', $txt['upgrade_outof'], ' ', $upcontext['table_count'], ' ', $txt['upgrade_tables'], '</strong> |
| 4445 | - <div id="debug_section" style="height: ', ($is_debug ? '115' : '12') , 'px; overflow: auto;"> |
|
| 4445 | + <div id="debug_section" style="height: ', ($is_debug ? '115' : '12'), 'px; overflow: auto;"> |
|
| 4446 | 4446 | <span id="debuginfo"></span> |
| 4447 | 4447 | </div>'; |
| 4448 | 4448 | |
@@ -75,8 +75,9 @@ discard block |
||
| 75 | 75 | $upcontext['inactive_timeout'] = 10; |
| 76 | 76 | |
| 77 | 77 | // The helper is crucial. Include it first thing. |
| 78 | -if (!file_exists($upgrade_path . '/upgrade-helper.php')) |
|
| 78 | +if (!file_exists($upgrade_path . '/upgrade-helper.php')) { |
|
| 79 | 79 | die('upgrade-helper.php not found where it was expected: ' . $upgrade_path . '/upgrade-helper.php! Make sure you have uploaded ALL files from the upgrade package. The upgrader cannot continue.'); |
| 80 | +} |
|
| 80 | 81 | |
| 81 | 82 | require_once($upgrade_path . '/upgrade-helper.php'); |
| 82 | 83 | |
@@ -102,11 +103,14 @@ discard block |
||
| 102 | 103 | ini_set('default_socket_timeout', 900); |
| 103 | 104 | } |
| 104 | 105 | // Clean the upgrade path if this is from the client. |
| 105 | -if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) |
|
| 106 | - for ($i = 1; $i < $_SERVER['argc']; $i++) |
|
| 106 | +if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) { |
|
| 107 | + for ($i = 1; |
|
| 108 | +} |
|
| 109 | +$i < $_SERVER['argc']; $i++) |
|
| 107 | 110 | { |
| 108 | - if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) |
|
| 109 | - $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
| 111 | + if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) { |
|
| 112 | + $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
| 113 | + } |
|
| 110 | 114 | } |
| 111 | 115 | |
| 112 | 116 | // Are we from the client? |
@@ -114,16 +118,17 @@ discard block |
||
| 114 | 118 | { |
| 115 | 119 | $command_line = true; |
| 116 | 120 | $disable_security = true; |
| 117 | -} |
|
| 118 | -else |
|
| 121 | +} else { |
|
| 119 | 122 | $command_line = false; |
| 123 | +} |
|
| 120 | 124 | |
| 121 | 125 | // Load this now just because we can. |
| 122 | 126 | require_once($upgrade_path . '/Settings.php'); |
| 123 | 127 | |
| 124 | 128 | // We don't use "-utf8" anymore... Tweak the entry that may have been loaded by Settings.php |
| 125 | -if (isset($language)) |
|
| 129 | +if (isset($language)) { |
|
| 126 | 130 | $language = str_ireplace('-utf8', '', $language); |
| 131 | +} |
|
| 127 | 132 | |
| 128 | 133 | // Are we logged in? |
| 129 | 134 | if (isset($upgradeData)) |
@@ -131,10 +136,12 @@ discard block |
||
| 131 | 136 | $upcontext['user'] = json_decode(base64_decode($upgradeData), true); |
| 132 | 137 | |
| 133 | 138 | // Check for sensible values. |
| 134 | - if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) |
|
| 135 | - $upcontext['user']['started'] = time(); |
|
| 136 | - if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) |
|
| 137 | - $upcontext['user']['updated'] = 0; |
|
| 139 | + if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) { |
|
| 140 | + $upcontext['user']['started'] = time(); |
|
| 141 | + } |
|
| 142 | + if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) { |
|
| 143 | + $upcontext['user']['updated'] = 0; |
|
| 144 | + } |
|
| 138 | 145 | |
| 139 | 146 | $upcontext['started'] = $upcontext['user']['started']; |
| 140 | 147 | $upcontext['updated'] = $upcontext['user']['updated']; |
@@ -199,8 +206,9 @@ discard block |
||
| 199 | 206 | 'db_error_skip' => true, |
| 200 | 207 | ) |
| 201 | 208 | ); |
| 202 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 203 | - $modSettings[$row['variable']] = $row['value']; |
|
| 209 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 210 | + $modSettings[$row['variable']] = $row['value']; |
|
| 211 | + } |
|
| 204 | 212 | $smcFunc['db_free_result']($request); |
| 205 | 213 | } |
| 206 | 214 | |
@@ -210,10 +218,12 @@ discard block |
||
| 210 | 218 | $modSettings['theme_url'] = 'Themes/default'; |
| 211 | 219 | $modSettings['images_url'] = 'Themes/default/images'; |
| 212 | 220 | } |
| 213 | -if (!isset($settings['default_theme_url'])) |
|
| 221 | +if (!isset($settings['default_theme_url'])) { |
|
| 214 | 222 | $settings['default_theme_url'] = $modSettings['theme_url']; |
| 215 | -if (!isset($settings['default_theme_dir'])) |
|
| 223 | +} |
|
| 224 | +if (!isset($settings['default_theme_dir'])) { |
|
| 216 | 225 | $settings['default_theme_dir'] = $modSettings['theme_dir']; |
| 226 | +} |
|
| 217 | 227 | |
| 218 | 228 | $upcontext['is_large_forum'] = (empty($modSettings['smfVersion']) || $modSettings['smfVersion'] <= '1.1 RC1') && !empty($modSettings['totalMessages']) && $modSettings['totalMessages'] > 75000; |
| 219 | 229 | // Default title... |
@@ -231,13 +241,15 @@ discard block |
||
| 231 | 241 | $support_js = $upcontext['upgrade_status']['js']; |
| 232 | 242 | |
| 233 | 243 | // Only set this if the upgrader status says so. |
| 234 | - if (empty($is_debug)) |
|
| 235 | - $is_debug = $upcontext['upgrade_status']['debug']; |
|
| 244 | + if (empty($is_debug)) { |
|
| 245 | + $is_debug = $upcontext['upgrade_status']['debug']; |
|
| 246 | + } |
|
| 236 | 247 | |
| 237 | 248 | // Load the language. |
| 238 | - if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 239 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 240 | -} |
|
| 249 | + if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 250 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 251 | + } |
|
| 252 | + } |
|
| 241 | 253 | // Set the defaults. |
| 242 | 254 | else |
| 243 | 255 | { |
@@ -255,15 +267,18 @@ discard block |
||
| 255 | 267 | } |
| 256 | 268 | |
| 257 | 269 | // If this isn't the first stage see whether they are logging in and resuming. |
| 258 | -if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) |
|
| 270 | +if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) { |
|
| 259 | 271 | checkLogin(); |
| 272 | +} |
|
| 260 | 273 | |
| 261 | -if ($command_line) |
|
| 274 | +if ($command_line) { |
|
| 262 | 275 | cmdStep0(); |
| 276 | +} |
|
| 263 | 277 | |
| 264 | 278 | // Don't error if we're using xml. |
| 265 | -if (isset($_GET['xml'])) |
|
| 279 | +if (isset($_GET['xml'])) { |
|
| 266 | 280 | $upcontext['return_error'] = true; |
| 281 | +} |
|
| 267 | 282 | |
| 268 | 283 | // Loop through all the steps doing each one as required. |
| 269 | 284 | $upcontext['overall_percent'] = 0; |
@@ -284,9 +299,9 @@ discard block |
||
| 284 | 299 | } |
| 285 | 300 | |
| 286 | 301 | // Call the step and if it returns false that means pause! |
| 287 | - if (function_exists($step[2]) && $step[2]() === false) |
|
| 288 | - break; |
|
| 289 | - elseif (function_exists($step[2])) { |
|
| 302 | + if (function_exists($step[2]) && $step[2]() === false) { |
|
| 303 | + break; |
|
| 304 | + } elseif (function_exists($step[2])) { |
|
| 290 | 305 | //Start each new step with this unset, so the 'normal' template is called first |
| 291 | 306 | unset($_GET['xml']); |
| 292 | 307 | //Clear out warnings at the start of each step |
@@ -332,17 +347,18 @@ discard block |
||
| 332 | 347 | // This should not happen my dear... HELP ME DEVELOPERS!! |
| 333 | 348 | if (!empty($command_line)) |
| 334 | 349 | { |
| 335 | - if (function_exists('debug_print_backtrace')) |
|
| 336 | - debug_print_backtrace(); |
|
| 350 | + if (function_exists('debug_print_backtrace')) { |
|
| 351 | + debug_print_backtrace(); |
|
| 352 | + } |
|
| 337 | 353 | |
| 338 | 354 | echo "\n" . 'Error: Unexpected call to use the ' . (isset($upcontext['sub_template']) ? $upcontext['sub_template'] : '') . ' template. Please copy and paste all the text above and visit the SMF support forum to tell the Developers that they\'ve made a boo boo; they\'ll get you up and running again.'; |
| 339 | 355 | flush(); |
| 340 | 356 | die(); |
| 341 | 357 | } |
| 342 | 358 | |
| 343 | - if (!isset($_GET['xml'])) |
|
| 344 | - template_upgrade_above(); |
|
| 345 | - else |
|
| 359 | + if (!isset($_GET['xml'])) { |
|
| 360 | + template_upgrade_above(); |
|
| 361 | + } else |
|
| 346 | 362 | { |
| 347 | 363 | header('Content-Type: text/xml; charset=UTF-8'); |
| 348 | 364 | // Sadly we need to retain the $_GET data thanks to the old upgrade scripts. |
@@ -364,25 +380,29 @@ discard block |
||
| 364 | 380 | $upcontext['form_url'] = $upgradeurl . '?step=' . $upcontext['current_step'] . '&substep=' . $_GET['substep'] . '&data=' . base64_encode(json_encode($upcontext['upgrade_status'])); |
| 365 | 381 | |
| 366 | 382 | // Custom stuff to pass back? |
| 367 | - if (!empty($upcontext['query_string'])) |
|
| 368 | - $upcontext['form_url'] .= $upcontext['query_string']; |
|
| 383 | + if (!empty($upcontext['query_string'])) { |
|
| 384 | + $upcontext['form_url'] .= $upcontext['query_string']; |
|
| 385 | + } |
|
| 369 | 386 | |
| 370 | 387 | // Call the appropriate subtemplate |
| 371 | - if (is_callable('template_' . $upcontext['sub_template'])) |
|
| 372 | - call_user_func('template_' . $upcontext['sub_template']); |
|
| 373 | - else |
|
| 374 | - die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
| 388 | + if (is_callable('template_' . $upcontext['sub_template'])) { |
|
| 389 | + call_user_func('template_' . $upcontext['sub_template']); |
|
| 390 | + } else { |
|
| 391 | + die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
| 392 | + } |
|
| 375 | 393 | } |
| 376 | 394 | |
| 377 | 395 | // Was there an error? |
| 378 | - if (!empty($upcontext['forced_error_message'])) |
|
| 379 | - echo $upcontext['forced_error_message']; |
|
| 396 | + if (!empty($upcontext['forced_error_message'])) { |
|
| 397 | + echo $upcontext['forced_error_message']; |
|
| 398 | + } |
|
| 380 | 399 | |
| 381 | 400 | // Show the footer. |
| 382 | - if (!isset($_GET['xml'])) |
|
| 383 | - template_upgrade_below(); |
|
| 384 | - else |
|
| 385 | - template_xml_below(); |
|
| 401 | + if (!isset($_GET['xml'])) { |
|
| 402 | + template_upgrade_below(); |
|
| 403 | + } else { |
|
| 404 | + template_xml_below(); |
|
| 405 | + } |
|
| 386 | 406 | } |
| 387 | 407 | |
| 388 | 408 | |
@@ -394,15 +414,19 @@ discard block |
||
| 394 | 414 | $seconds = intval($active % 60); |
| 395 | 415 | |
| 396 | 416 | $totalTime = ''; |
| 397 | - if ($hours > 0) |
|
| 398 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 399 | - if ($minutes > 0) |
|
| 400 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 401 | - if ($seconds > 0) |
|
| 402 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 417 | + if ($hours > 0) { |
|
| 418 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 419 | + } |
|
| 420 | + if ($minutes > 0) { |
|
| 421 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 422 | + } |
|
| 423 | + if ($seconds > 0) { |
|
| 424 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 425 | + } |
|
| 403 | 426 | |
| 404 | - if (!empty($totalTime)) |
|
| 405 | - echo "\n" . '', $txt['upgrade_completed_time'], ' ' . $totalTime . "\n"; |
|
| 427 | + if (!empty($totalTime)) { |
|
| 428 | + echo "\n" . '', $txt['upgrade_completed_time'], ' ' . $totalTime . "\n"; |
|
| 429 | + } |
|
| 406 | 430 | } |
| 407 | 431 | |
| 408 | 432 | // Bang - gone! |
@@ -422,8 +446,9 @@ discard block |
||
| 422 | 446 | $dir = dir(dirname(__FILE__) . '/Themes/default/languages'); |
| 423 | 447 | while ($entry = $dir->read()) |
| 424 | 448 | { |
| 425 | - if (substr($entry, 0, 8) == 'Install.' && substr($entry, -4) == '.php') |
|
| 426 | - $incontext['detected_languages'][$entry] = ucfirst(substr($entry, 8, strlen($entry) - 12)); |
|
| 449 | + if (substr($entry, 0, 8) == 'Install.' && substr($entry, -4) == '.php') { |
|
| 450 | + $incontext['detected_languages'][$entry] = ucfirst(substr($entry, 8, strlen($entry) - 12)); |
|
| 451 | + } |
|
| 427 | 452 | } |
| 428 | 453 | $dir->close(); |
| 429 | 454 | } |
@@ -463,8 +488,9 @@ discard block |
||
| 463 | 488 | global $upgradeurl, $upcontext, $command_line; |
| 464 | 489 | |
| 465 | 490 | // Command line users can't be redirected. |
| 466 | - if ($command_line) |
|
| 467 | - upgradeExit(true); |
|
| 491 | + if ($command_line) { |
|
| 492 | + upgradeExit(true); |
|
| 493 | + } |
|
| 468 | 494 | |
| 469 | 495 | // Are we providing the core info? |
| 470 | 496 | if ($addForm) |
@@ -490,12 +516,14 @@ discard block |
||
| 490 | 516 | define('SMF', 1); |
| 491 | 517 | |
| 492 | 518 | // Start the session. |
| 493 | - if (@ini_get('session.save_handler') == 'user') |
|
| 494 | - @ini_set('session.save_handler', 'files'); |
|
| 519 | + if (@ini_get('session.save_handler') == 'user') { |
|
| 520 | + @ini_set('session.save_handler', 'files'); |
|
| 521 | + } |
|
| 495 | 522 | @session_start(); |
| 496 | 523 | |
| 497 | - if (empty($smcFunc)) |
|
| 498 | - $smcFunc = array(); |
|
| 524 | + if (empty($smcFunc)) { |
|
| 525 | + $smcFunc = array(); |
|
| 526 | + } |
|
| 499 | 527 | |
| 500 | 528 | // We need this for authentication and some upgrade code |
| 501 | 529 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -522,24 +550,27 @@ discard block |
||
| 522 | 550 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
| 523 | 551 | |
| 524 | 552 | // Make the connection... |
| 525 | - if (empty($db_connection)) |
|
| 526 | - $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
| 527 | - else |
|
| 528 | - // If we've returned here, ping/reconnect to be safe |
|
| 553 | + if (empty($db_connection)) { |
|
| 554 | + $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
| 555 | + } else { |
|
| 556 | + // If we've returned here, ping/reconnect to be safe |
|
| 529 | 557 | $smcFunc['db_ping']($db_connection); |
| 558 | + } |
|
| 530 | 559 | |
| 531 | 560 | // Oh dear god!! |
| 532 | - if ($db_connection === null) |
|
| 533 | - die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
| 561 | + if ($db_connection === null) { |
|
| 562 | + die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
| 563 | + } |
|
| 534 | 564 | |
| 535 | - if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) |
|
| 536 | - $smcFunc['db_query']('', ' |
|
| 565 | + if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) { |
|
| 566 | + $smcFunc['db_query']('', ' |
|
| 537 | 567 | SET NAMES {string:db_character_set}', |
| 538 | 568 | array( |
| 539 | 569 | 'db_error_skip' => true, |
| 540 | 570 | 'db_character_set' => $db_character_set, |
| 541 | 571 | ) |
| 542 | 572 | ); |
| 573 | + } |
|
| 543 | 574 | |
| 544 | 575 | // Load the modSettings data... |
| 545 | 576 | $request = $smcFunc['db_query']('', ' |
@@ -550,11 +581,11 @@ discard block |
||
| 550 | 581 | ) |
| 551 | 582 | ); |
| 552 | 583 | $modSettings = array(); |
| 553 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 554 | - $modSettings[$row['variable']] = $row['value']; |
|
| 584 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 585 | + $modSettings[$row['variable']] = $row['value']; |
|
| 586 | + } |
|
| 555 | 587 | $smcFunc['db_free_result']($request); |
| 556 | - } |
|
| 557 | - else |
|
| 588 | + } else |
|
| 558 | 589 | { |
| 559 | 590 | return throw_error('Cannot find ' . $sourcedir . '/Subs-Db-' . $db_type . '.php' . '. Please check you have uploaded all source files and have the correct paths set.'); |
| 560 | 591 | } |
@@ -568,9 +599,10 @@ discard block |
||
| 568 | 599 | cleanRequest(); |
| 569 | 600 | } |
| 570 | 601 | |
| 571 | - if (!isset($_GET['substep'])) |
|
| 572 | - $_GET['substep'] = 0; |
|
| 573 | -} |
|
| 602 | + if (!isset($_GET['substep'])) { |
|
| 603 | + $_GET['substep'] = 0; |
|
| 604 | + } |
|
| 605 | + } |
|
| 574 | 606 | |
| 575 | 607 | function initialize_inputs() |
| 576 | 608 | { |
@@ -600,8 +632,9 @@ discard block |
||
| 600 | 632 | $dh = opendir(dirname(__FILE__)); |
| 601 | 633 | while ($file = readdir($dh)) |
| 602 | 634 | { |
| 603 | - if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) |
|
| 604 | - @unlink(dirname(__FILE__) . '/' . $file); |
|
| 635 | + if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) { |
|
| 636 | + @unlink(dirname(__FILE__) . '/' . $file); |
|
| 637 | + } |
|
| 605 | 638 | } |
| 606 | 639 | closedir($dh); |
| 607 | 640 | |
@@ -630,8 +663,9 @@ discard block |
||
| 630 | 663 | $temp = 'upgrade_php?step'; |
| 631 | 664 | while (strlen($temp) > 4) |
| 632 | 665 | { |
| 633 | - if (isset($_GET[$temp])) |
|
| 634 | - unset($_GET[$temp]); |
|
| 666 | + if (isset($_GET[$temp])) { |
|
| 667 | + unset($_GET[$temp]); |
|
| 668 | + } |
|
| 635 | 669 | $temp = substr($temp, 1); |
| 636 | 670 | } |
| 637 | 671 | |
@@ -658,32 +692,39 @@ discard block |
||
| 658 | 692 | && @file_exists(dirname(__FILE__) . '/upgrade_2-1_' . $db_type . '.sql'); |
| 659 | 693 | |
| 660 | 694 | // Need legacy scripts? |
| 661 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) |
|
| 662 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
| 663 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) |
|
| 664 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
| 665 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) |
|
| 666 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
| 695 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) { |
|
| 696 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
| 697 | + } |
|
| 698 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) { |
|
| 699 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
| 700 | + } |
|
| 701 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) { |
|
| 702 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
| 703 | + } |
|
| 667 | 704 | |
| 668 | 705 | // We don't need "-utf8" files anymore... |
| 669 | 706 | $upcontext['language'] = str_ireplace('-utf8', '', $upcontext['language']); |
| 670 | 707 | |
| 671 | 708 | // This needs to exist! |
| 672 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 673 | - return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
| 674 | - else |
|
| 675 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 709 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 710 | + return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
| 711 | + } else { |
|
| 712 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
| 713 | + } |
|
| 676 | 714 | |
| 677 | - if (!$check) |
|
| 678 | - // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
| 715 | + if (!$check) { |
|
| 716 | + // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
| 679 | 717 | return throw_error('The upgrader was unable to find some crucial files.<br><br>Please make sure you uploaded all of the files included in the package, including the Themes, Sources, and other directories.'); |
| 718 | + } |
|
| 680 | 719 | |
| 681 | 720 | // Do they meet the install requirements? |
| 682 | - if (!php_version_check()) |
|
| 683 | - return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
| 721 | + if (!php_version_check()) { |
|
| 722 | + return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
| 723 | + } |
|
| 684 | 724 | |
| 685 | - if (!db_version_check()) |
|
| 686 | - return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
| 725 | + if (!db_version_check()) { |
|
| 726 | + return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
| 727 | + } |
|
| 687 | 728 | |
| 688 | 729 | // Do some checks to make sure they have proper privileges |
| 689 | 730 | db_extend('packages'); |
@@ -698,14 +739,16 @@ discard block |
||
| 698 | 739 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
| 699 | 740 | |
| 700 | 741 | // Sorry... we need CREATE, ALTER and DROP |
| 701 | - if (!$create || !$alter || !$drop) |
|
| 702 | - return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
| 742 | + if (!$create || !$alter || !$drop) { |
|
| 743 | + return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
| 744 | + } |
|
| 703 | 745 | |
| 704 | 746 | // Do a quick version spot check. |
| 705 | 747 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
| 706 | 748 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
| 707 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
| 708 | - return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
| 749 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
| 750 | + return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
| 751 | + } |
|
| 709 | 752 | |
| 710 | 753 | // What absolutely needs to be writable? |
| 711 | 754 | $writable_files = array( |
@@ -727,12 +770,13 @@ discard block |
||
| 727 | 770 | quickFileWritable($custom_av_dir); |
| 728 | 771 | |
| 729 | 772 | // Are we good now? |
| 730 | - if (!is_writable($custom_av_dir)) |
|
| 731 | - return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
| 732 | - elseif ($need_settings_update) |
|
| 773 | + if (!is_writable($custom_av_dir)) { |
|
| 774 | + return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
| 775 | + } elseif ($need_settings_update) |
|
| 733 | 776 | { |
| 734 | - if (!function_exists('cache_put_data')) |
|
| 735 | - require_once($sourcedir . '/Load.php'); |
|
| 777 | + if (!function_exists('cache_put_data')) { |
|
| 778 | + require_once($sourcedir . '/Load.php'); |
|
| 779 | + } |
|
| 736 | 780 | updateSettings(array('custom_avatar_dir' => $custom_av_dir)); |
| 737 | 781 | updateSettings(array('custom_avatar_url' => $custom_av_url)); |
| 738 | 782 | } |
@@ -741,28 +785,33 @@ discard block |
||
| 741 | 785 | |
| 742 | 786 | // Check the cache directory. |
| 743 | 787 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
| 744 | - if (!file_exists($cachedir_temp)) |
|
| 745 | - @mkdir($cachedir_temp); |
|
| 746 | - if (!file_exists($cachedir_temp)) |
|
| 747 | - return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
| 748 | - |
|
| 749 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
| 750 | - return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
| 751 | - elseif (!isset($_GET['skiplang'])) |
|
| 788 | + if (!file_exists($cachedir_temp)) { |
|
| 789 | + @mkdir($cachedir_temp); |
|
| 790 | + } |
|
| 791 | + if (!file_exists($cachedir_temp)) { |
|
| 792 | + return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
| 793 | + } |
|
| 794 | + |
|
| 795 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
| 796 | + return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
| 797 | + } elseif (!isset($_GET['skiplang'])) |
|
| 752 | 798 | { |
| 753 | 799 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
| 754 | 800 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 755 | 801 | |
| 756 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 757 | - return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
| 802 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 803 | + return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
| 804 | + } |
|
| 758 | 805 | } |
| 759 | 806 | |
| 760 | - if (!makeFilesWritable($writable_files)) |
|
| 761 | - return false; |
|
| 807 | + if (!makeFilesWritable($writable_files)) { |
|
| 808 | + return false; |
|
| 809 | + } |
|
| 762 | 810 | |
| 763 | 811 | // Check agreement.txt. (it may not exist, in which case $boarddir must be writable.) |
| 764 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
| 765 | - return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
| 812 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
| 813 | + return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
| 814 | + } |
|
| 766 | 815 | |
| 767 | 816 | // Upgrade the agreement. |
| 768 | 817 | elseif (isset($modSettings['agreement'])) |
@@ -773,8 +822,8 @@ discard block |
||
| 773 | 822 | } |
| 774 | 823 | |
| 775 | 824 | // We're going to check that their board dir setting is right in case they've been moving stuff around. |
| 776 | - if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) |
|
| 777 | - $upcontext['warning'] = ' |
|
| 825 | + if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) { |
|
| 826 | + $upcontext['warning'] = ' |
|
| 778 | 827 | It looks as if your board directory settings <em>might</em> be incorrect. Your board directory is currently set to "' . $boarddir . '" but should probably be "' . dirname(__FILE__) . '". Settings.php currently lists your paths as:<br> |
| 779 | 828 | <ul> |
| 780 | 829 | <li>Board Directory: ' . $boarddir . '</li> |
@@ -782,19 +831,23 @@ discard block |
||
| 782 | 831 | <li>Cache Directory: ' . $cachedir_temp . '</li> |
| 783 | 832 | </ul> |
| 784 | 833 | If these seem incorrect please open Settings.php in a text editor before proceeding with this upgrade. If they are incorrect due to you moving your forum to a new location please download and execute the <a href="https://download.simplemachines.org/?tools">Repair Settings</a> tool from the Simple Machines website before continuing.'; |
| 834 | + } |
|
| 785 | 835 | |
| 786 | 836 | // Confirm mbstring is loaded... |
| 787 | - if (!extension_loaded('mbstring')) |
|
| 788 | - return throw_error($txt['install_no_mbstring']); |
|
| 837 | + if (!extension_loaded('mbstring')) { |
|
| 838 | + return throw_error($txt['install_no_mbstring']); |
|
| 839 | + } |
|
| 789 | 840 | |
| 790 | 841 | // Check for https stream support. |
| 791 | 842 | $supported_streams = stream_get_wrappers(); |
| 792 | - if (!in_array('https', $supported_streams)) |
|
| 793 | - $upcontext['custom_warning'] = $txt['install_no_https']; |
|
| 843 | + if (!in_array('https', $supported_streams)) { |
|
| 844 | + $upcontext['custom_warning'] = $txt['install_no_https']; |
|
| 845 | + } |
|
| 794 | 846 | |
| 795 | 847 | // Either we're logged in or we're going to present the login. |
| 796 | - if (checkLogin()) |
|
| 797 | - return true; |
|
| 848 | + if (checkLogin()) { |
|
| 849 | + return true; |
|
| 850 | + } |
|
| 798 | 851 | |
| 799 | 852 | $upcontext += createToken('login'); |
| 800 | 853 | |
@@ -808,15 +861,17 @@ discard block |
||
| 808 | 861 | global $smcFunc, $db_type, $support_js; |
| 809 | 862 | |
| 810 | 863 | // Don't bother if the security is disabled. |
| 811 | - if ($disable_security) |
|
| 812 | - return true; |
|
| 864 | + if ($disable_security) { |
|
| 865 | + return true; |
|
| 866 | + } |
|
| 813 | 867 | |
| 814 | 868 | // Are we trying to login? |
| 815 | 869 | if (isset($_POST['contbutt']) && (!empty($_POST['user']))) |
| 816 | 870 | { |
| 817 | 871 | // If we've disabled security pick a suitable name! |
| 818 | - if (empty($_POST['user'])) |
|
| 819 | - $_POST['user'] = 'Administrator'; |
|
| 872 | + if (empty($_POST['user'])) { |
|
| 873 | + $_POST['user'] = 'Administrator'; |
|
| 874 | + } |
|
| 820 | 875 | |
| 821 | 876 | // Before 2.0 these column names were different! |
| 822 | 877 | $oldDB = false; |
@@ -831,16 +886,17 @@ discard block |
||
| 831 | 886 | 'db_error_skip' => true, |
| 832 | 887 | ) |
| 833 | 888 | ); |
| 834 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
| 835 | - $oldDB = true; |
|
| 889 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
| 890 | + $oldDB = true; |
|
| 891 | + } |
|
| 836 | 892 | $smcFunc['db_free_result']($request); |
| 837 | 893 | } |
| 838 | 894 | |
| 839 | 895 | // Get what we believe to be their details. |
| 840 | 896 | if (!$disable_security) |
| 841 | 897 | { |
| 842 | - if ($oldDB) |
|
| 843 | - $request = $smcFunc['db_query']('', ' |
|
| 898 | + if ($oldDB) { |
|
| 899 | + $request = $smcFunc['db_query']('', ' |
|
| 844 | 900 | SELECT id_member, memberName AS member_name, passwd, id_group, |
| 845 | 901 | additionalGroups AS additional_groups, lngfile |
| 846 | 902 | FROM {db_prefix}members |
@@ -850,8 +906,8 @@ discard block |
||
| 850 | 906 | 'db_error_skip' => true, |
| 851 | 907 | ) |
| 852 | 908 | ); |
| 853 | - else |
|
| 854 | - $request = $smcFunc['db_query']('', ' |
|
| 909 | + } else { |
|
| 910 | + $request = $smcFunc['db_query']('', ' |
|
| 855 | 911 | SELECT id_member, member_name, passwd, id_group, additional_groups, lngfile |
| 856 | 912 | FROM {db_prefix}members |
| 857 | 913 | WHERE member_name = {string:member_name}', |
@@ -860,6 +916,7 @@ discard block |
||
| 860 | 916 | 'db_error_skip' => true, |
| 861 | 917 | ) |
| 862 | 918 | ); |
| 919 | + } |
|
| 863 | 920 | if ($smcFunc['db_num_rows']($request) != 0) |
| 864 | 921 | { |
| 865 | 922 | list ($id_member, $name, $password, $id_group, $addGroups, $user_language) = $smcFunc['db_fetch_row']($request); |
@@ -867,16 +924,17 @@ discard block |
||
| 867 | 924 | $groups = explode(',', $addGroups); |
| 868 | 925 | $groups[] = $id_group; |
| 869 | 926 | |
| 870 | - foreach ($groups as $k => $v) |
|
| 871 | - $groups[$k] = (int) $v; |
|
| 927 | + foreach ($groups as $k => $v) { |
|
| 928 | + $groups[$k] = (int) $v; |
|
| 929 | + } |
|
| 872 | 930 | |
| 873 | 931 | $sha_passwd = sha1(strtolower($name) . un_htmlspecialchars($_REQUEST['passwrd'])); |
| 874 | 932 | |
| 875 | 933 | // We don't use "-utf8" anymore... |
| 876 | 934 | $user_language = str_ireplace('-utf8', '', $user_language); |
| 935 | + } else { |
|
| 936 | + $upcontext['username_incorrect'] = true; |
|
| 877 | 937 | } |
| 878 | - else |
|
| 879 | - $upcontext['username_incorrect'] = true; |
|
| 880 | 938 | $smcFunc['db_free_result']($request); |
| 881 | 939 | } |
| 882 | 940 | $upcontext['username'] = $_POST['user']; |
@@ -886,13 +944,14 @@ discard block |
||
| 886 | 944 | { |
| 887 | 945 | $upcontext['upgrade_status']['js'] = 1; |
| 888 | 946 | $support_js = 1; |
| 947 | + } else { |
|
| 948 | + $support_js = 0; |
|
| 889 | 949 | } |
| 890 | - else |
|
| 891 | - $support_js = 0; |
|
| 892 | 950 | |
| 893 | 951 | // Note down the version we are coming from. |
| 894 | - if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) |
|
| 895 | - $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
| 952 | + if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) { |
|
| 953 | + $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
| 954 | + } |
|
| 896 | 955 | |
| 897 | 956 | // Didn't get anywhere? |
| 898 | 957 | if (!$disable_security && (empty($sha_passwd) || (!empty($password) ? $password : '') != $sha_passwd) && !hash_verify_password((!empty($name) ? $name : ''), $_REQUEST['passwrd'], (!empty($password) ? $password : '')) && empty($upcontext['username_incorrect'])) |
@@ -926,15 +985,15 @@ discard block |
||
| 926 | 985 | 'db_error_skip' => true, |
| 927 | 986 | ) |
| 928 | 987 | ); |
| 929 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 930 | - return throw_error('You need to be an admin to perform an upgrade!'); |
|
| 988 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 989 | + return throw_error('You need to be an admin to perform an upgrade!'); |
|
| 990 | + } |
|
| 931 | 991 | $smcFunc['db_free_result']($request); |
| 932 | 992 | } |
| 933 | 993 | |
| 934 | 994 | $upcontext['user']['id'] = $id_member; |
| 935 | 995 | $upcontext['user']['name'] = $name; |
| 936 | - } |
|
| 937 | - else |
|
| 996 | + } else |
|
| 938 | 997 | { |
| 939 | 998 | $upcontext['user']['id'] = 1; |
| 940 | 999 | $upcontext['user']['name'] = 'Administrator'; |
@@ -950,11 +1009,11 @@ discard block |
||
| 950 | 1009 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $user_language . '.php')), 0, 4096); |
| 951 | 1010 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 952 | 1011 | |
| 953 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 954 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
| 955 | - elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) |
|
| 956 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
| 957 | - else |
|
| 1012 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 1013 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
| 1014 | + } elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) { |
|
| 1015 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
| 1016 | + } else |
|
| 958 | 1017 | { |
| 959 | 1018 | // Set this as the new language. |
| 960 | 1019 | $upcontext['language'] = $user_language; |
@@ -998,8 +1057,9 @@ discard block |
||
| 998 | 1057 | unset($member_columns); |
| 999 | 1058 | |
| 1000 | 1059 | // If we've not submitted then we're done. |
| 1001 | - if (empty($_POST['upcont'])) |
|
| 1002 | - return false; |
|
| 1060 | + if (empty($_POST['upcont'])) { |
|
| 1061 | + return false; |
|
| 1062 | + } |
|
| 1003 | 1063 | |
| 1004 | 1064 | // Firstly, if they're enabling SM stat collection just do it. |
| 1005 | 1065 | if (!empty($_POST['stats']) && substr($boardurl, 0, 16) != 'http://localhost' && empty($modSettings['allow_sm_stats']) && empty($modSettings['enable_sm_stats'])) |
@@ -1019,16 +1079,17 @@ discard block |
||
| 1019 | 1079 | fwrite($fp, $out); |
| 1020 | 1080 | |
| 1021 | 1081 | $return_data = ''; |
| 1022 | - while (!feof($fp)) |
|
| 1023 | - $return_data .= fgets($fp, 128); |
|
| 1082 | + while (!feof($fp)) { |
|
| 1083 | + $return_data .= fgets($fp, 128); |
|
| 1084 | + } |
|
| 1024 | 1085 | |
| 1025 | 1086 | fclose($fp); |
| 1026 | 1087 | |
| 1027 | 1088 | // Get the unique site ID. |
| 1028 | 1089 | preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID); |
| 1029 | 1090 | |
| 1030 | - if (!empty($ID[1])) |
|
| 1031 | - $smcFunc['db_insert']('replace', |
|
| 1091 | + if (!empty($ID[1])) { |
|
| 1092 | + $smcFunc['db_insert']('replace', |
|
| 1032 | 1093 | $db_prefix . 'settings', |
| 1033 | 1094 | array('variable' => 'string', 'value' => 'string'), |
| 1034 | 1095 | array( |
@@ -1037,9 +1098,9 @@ discard block |
||
| 1037 | 1098 | ), |
| 1038 | 1099 | array('variable') |
| 1039 | 1100 | ); |
| 1101 | + } |
|
| 1040 | 1102 | } |
| 1041 | - } |
|
| 1042 | - else |
|
| 1103 | + } else |
|
| 1043 | 1104 | { |
| 1044 | 1105 | $smcFunc['db_insert']('replace', |
| 1045 | 1106 | $db_prefix . 'settings', |
@@ -1050,8 +1111,8 @@ discard block |
||
| 1050 | 1111 | } |
| 1051 | 1112 | } |
| 1052 | 1113 | // Don't remove stat collection unless we unchecked the box for real, not from the loop. |
| 1053 | - elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) |
|
| 1054 | - $smcFunc['db_query']('', ' |
|
| 1114 | + elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) { |
|
| 1115 | + $smcFunc['db_query']('', ' |
|
| 1055 | 1116 | DELETE FROM {db_prefix}settings |
| 1056 | 1117 | WHERE variable = {string:enable_sm_stats}', |
| 1057 | 1118 | array( |
@@ -1059,6 +1120,7 @@ discard block |
||
| 1059 | 1120 | 'db_error_skip' => true, |
| 1060 | 1121 | ) |
| 1061 | 1122 | ); |
| 1123 | + } |
|
| 1062 | 1124 | |
| 1063 | 1125 | // Deleting old karma stuff? |
| 1064 | 1126 | if (!empty($_POST['delete_karma'])) |
@@ -1073,20 +1135,22 @@ discard block |
||
| 1073 | 1135 | ); |
| 1074 | 1136 | |
| 1075 | 1137 | // Cleaning up old karma member settings. |
| 1076 | - if ($upcontext['karma_installed']['good']) |
|
| 1077 | - $smcFunc['db_query']('', ' |
|
| 1138 | + if ($upcontext['karma_installed']['good']) { |
|
| 1139 | + $smcFunc['db_query']('', ' |
|
| 1078 | 1140 | ALTER TABLE {db_prefix}members |
| 1079 | 1141 | DROP karma_good', |
| 1080 | 1142 | array() |
| 1081 | 1143 | ); |
| 1144 | + } |
|
| 1082 | 1145 | |
| 1083 | 1146 | // Does karma bad was enable? |
| 1084 | - if ($upcontext['karma_installed']['bad']) |
|
| 1085 | - $smcFunc['db_query']('', ' |
|
| 1147 | + if ($upcontext['karma_installed']['bad']) { |
|
| 1148 | + $smcFunc['db_query']('', ' |
|
| 1086 | 1149 | ALTER TABLE {db_prefix}members |
| 1087 | 1150 | DROP karma_bad', |
| 1088 | 1151 | array() |
| 1089 | 1152 | ); |
| 1153 | + } |
|
| 1090 | 1154 | |
| 1091 | 1155 | // Cleaning up old karma permissions. |
| 1092 | 1156 | $smcFunc['db_query']('', ' |
@@ -1104,32 +1168,37 @@ discard block |
||
| 1104 | 1168 | } |
| 1105 | 1169 | |
| 1106 | 1170 | // Emptying the error log? |
| 1107 | - if (!empty($_POST['empty_error'])) |
|
| 1108 | - $smcFunc['db_query']('truncate_table', ' |
|
| 1171 | + if (!empty($_POST['empty_error'])) { |
|
| 1172 | + $smcFunc['db_query']('truncate_table', ' |
|
| 1109 | 1173 | TRUNCATE {db_prefix}log_errors', |
| 1110 | 1174 | array( |
| 1111 | 1175 | ) |
| 1112 | 1176 | ); |
| 1177 | + } |
|
| 1113 | 1178 | |
| 1114 | 1179 | $changes = array(); |
| 1115 | 1180 | |
| 1116 | 1181 | // Add proxy settings. |
| 1117 | - if (!isset($GLOBALS['image_proxy_maxsize'])) |
|
| 1118 | - $changes += array( |
|
| 1182 | + if (!isset($GLOBALS['image_proxy_maxsize'])) { |
|
| 1183 | + $changes += array( |
|
| 1119 | 1184 | 'image_proxy_secret' => '\'' . substr(sha1(mt_rand()), 0, 20) . '\'', |
| 1120 | 1185 | 'image_proxy_maxsize' => 5190, |
| 1121 | 1186 | 'image_proxy_enabled' => 0, |
| 1122 | 1187 | ); |
| 1188 | + } |
|
| 1123 | 1189 | |
| 1124 | 1190 | // If $boardurl reflects https, set force_ssl |
| 1125 | - if (!function_exists('cache_put_data')) |
|
| 1126 | - require_once($sourcedir . '/Load.php'); |
|
| 1127 | - if (stripos($boardurl, 'https://') !== false) |
|
| 1128 | - updateSettings(array('force_ssl' => '2')); |
|
| 1191 | + if (!function_exists('cache_put_data')) { |
|
| 1192 | + require_once($sourcedir . '/Load.php'); |
|
| 1193 | + } |
|
| 1194 | + if (stripos($boardurl, 'https://') !== false) { |
|
| 1195 | + updateSettings(array('force_ssl' => '2')); |
|
| 1196 | + } |
|
| 1129 | 1197 | |
| 1130 | 1198 | // If we're overriding the language follow it through. |
| 1131 | - if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) |
|
| 1132 | - $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
| 1199 | + if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) { |
|
| 1200 | + $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
| 1201 | + } |
|
| 1133 | 1202 | |
| 1134 | 1203 | if (!empty($_POST['maint'])) |
| 1135 | 1204 | { |
@@ -1141,26 +1210,29 @@ discard block |
||
| 1141 | 1210 | { |
| 1142 | 1211 | $changes['mtitle'] = '\'' . addslashes($_POST['maintitle']) . '\''; |
| 1143 | 1212 | $changes['mmessage'] = '\'' . addslashes($_POST['mainmessage']) . '\''; |
| 1144 | - } |
|
| 1145 | - else |
|
| 1213 | + } else |
|
| 1146 | 1214 | { |
| 1147 | 1215 | $changes['mtitle'] = '\'Upgrading the forum...\''; |
| 1148 | 1216 | $changes['mmessage'] = '\'Don\\\'t worry, we will be back shortly with an updated forum. It will only be a minute ;).\''; |
| 1149 | 1217 | } |
| 1150 | 1218 | } |
| 1151 | 1219 | |
| 1152 | - if ($command_line) |
|
| 1153 | - echo ' * Updating Settings.php...'; |
|
| 1220 | + if ($command_line) { |
|
| 1221 | + echo ' * Updating Settings.php...'; |
|
| 1222 | + } |
|
| 1154 | 1223 | |
| 1155 | 1224 | // Fix some old paths. |
| 1156 | - if (substr($boarddir, 0, 1) == '.') |
|
| 1157 | - $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
| 1225 | + if (substr($boarddir, 0, 1) == '.') { |
|
| 1226 | + $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
| 1227 | + } |
|
| 1158 | 1228 | |
| 1159 | - if (substr($sourcedir, 0, 1) == '.') |
|
| 1160 | - $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
| 1229 | + if (substr($sourcedir, 0, 1) == '.') { |
|
| 1230 | + $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
| 1231 | + } |
|
| 1161 | 1232 | |
| 1162 | - if (empty($cachedir) || substr($cachedir, 0, 1) == '.') |
|
| 1163 | - $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
| 1233 | + if (empty($cachedir) || substr($cachedir, 0, 1) == '.') { |
|
| 1234 | + $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
| 1235 | + } |
|
| 1164 | 1236 | |
| 1165 | 1237 | // If they have a "host:port" setup for the host, split that into separate values |
| 1166 | 1238 | // You should never have a : in the hostname if you're not on MySQL, but better safe than sorry |
@@ -1171,32 +1243,36 @@ discard block |
||
| 1171 | 1243 | $changes['db_server'] = '\'' . $db_server . '\''; |
| 1172 | 1244 | |
| 1173 | 1245 | // Only set this if we're not using the default port |
| 1174 | - if ($db_port != ini_get('mysqli.default_port')) |
|
| 1175 | - $changes['db_port'] = (int) $db_port; |
|
| 1176 | - } |
|
| 1177 | - elseif (!empty($db_port)) |
|
| 1246 | + if ($db_port != ini_get('mysqli.default_port')) { |
|
| 1247 | + $changes['db_port'] = (int) $db_port; |
|
| 1248 | + } |
|
| 1249 | + } elseif (!empty($db_port)) |
|
| 1178 | 1250 | { |
| 1179 | 1251 | // If db_port is set and is the same as the default, set it to '' |
| 1180 | 1252 | if ($db_type == 'mysql') |
| 1181 | 1253 | { |
| 1182 | - if ($db_port == ini_get('mysqli.default_port')) |
|
| 1183 | - $changes['db_port'] = '\'\''; |
|
| 1184 | - elseif ($db_type == 'postgresql' && $db_port == 5432) |
|
| 1185 | - $changes['db_port'] = '\'\''; |
|
| 1254 | + if ($db_port == ini_get('mysqli.default_port')) { |
|
| 1255 | + $changes['db_port'] = '\'\''; |
|
| 1256 | + } elseif ($db_type == 'postgresql' && $db_port == 5432) { |
|
| 1257 | + $changes['db_port'] = '\'\''; |
|
| 1258 | + } |
|
| 1186 | 1259 | } |
| 1187 | 1260 | } |
| 1188 | 1261 | |
| 1189 | 1262 | // Maybe we haven't had this option yet? |
| 1190 | - if (empty($packagesdir)) |
|
| 1191 | - $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
| 1263 | + if (empty($packagesdir)) { |
|
| 1264 | + $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
| 1265 | + } |
|
| 1192 | 1266 | |
| 1193 | 1267 | // Add support for $tasksdir var. |
| 1194 | - if (empty($tasksdir)) |
|
| 1195 | - $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
| 1268 | + if (empty($tasksdir)) { |
|
| 1269 | + $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
| 1270 | + } |
|
| 1196 | 1271 | |
| 1197 | 1272 | // Make sure we fix the language as well. |
| 1198 | - if (stristr($language, '-utf8')) |
|
| 1199 | - $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
| 1273 | + if (stristr($language, '-utf8')) { |
|
| 1274 | + $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
| 1275 | + } |
|
| 1200 | 1276 | |
| 1201 | 1277 | // @todo Maybe change the cookie name if going to 1.1, too? |
| 1202 | 1278 | |
@@ -1204,8 +1280,9 @@ discard block |
||
| 1204 | 1280 | require_once($sourcedir . '/Subs-Admin.php'); |
| 1205 | 1281 | updateSettingsFile($changes); |
| 1206 | 1282 | |
| 1207 | - if ($command_line) |
|
| 1208 | - echo ' Successful.' . "\n"; |
|
| 1283 | + if ($command_line) { |
|
| 1284 | + echo ' Successful.' . "\n"; |
|
| 1285 | + } |
|
| 1209 | 1286 | |
| 1210 | 1287 | // Are we doing debug? |
| 1211 | 1288 | if (isset($_POST['debug'])) |
@@ -1215,8 +1292,9 @@ discard block |
||
| 1215 | 1292 | } |
| 1216 | 1293 | |
| 1217 | 1294 | // If we're not backing up then jump one. |
| 1218 | - if (empty($_POST['backup'])) |
|
| 1219 | - $upcontext['current_step']++; |
|
| 1295 | + if (empty($_POST['backup'])) { |
|
| 1296 | + $upcontext['current_step']++; |
|
| 1297 | + } |
|
| 1220 | 1298 | |
| 1221 | 1299 | // If we've got here then let's proceed to the next step! |
| 1222 | 1300 | return true; |
@@ -1231,8 +1309,9 @@ discard block |
||
| 1231 | 1309 | $upcontext['page_title'] = 'Backup Database'; |
| 1232 | 1310 | |
| 1233 | 1311 | // Done it already - js wise? |
| 1234 | - if (!empty($_POST['backup_done'])) |
|
| 1235 | - return true; |
|
| 1312 | + if (!empty($_POST['backup_done'])) { |
|
| 1313 | + return true; |
|
| 1314 | + } |
|
| 1236 | 1315 | |
| 1237 | 1316 | // Some useful stuff here. |
| 1238 | 1317 | db_extend(); |
@@ -1246,9 +1325,10 @@ discard block |
||
| 1246 | 1325 | $tables = $smcFunc['db_list_tables']($db, $filter); |
| 1247 | 1326 | |
| 1248 | 1327 | $table_names = array(); |
| 1249 | - foreach ($tables as $table) |
|
| 1250 | - if (substr($table, 0, 7) !== 'backup_') |
|
| 1328 | + foreach ($tables as $table) { |
|
| 1329 | + if (substr($table, 0, 7) !== 'backup_') |
|
| 1251 | 1330 | $table_names[] = $table; |
| 1331 | + } |
|
| 1252 | 1332 | |
| 1253 | 1333 | $upcontext['table_count'] = count($table_names); |
| 1254 | 1334 | $upcontext['cur_table_num'] = $_GET['substep']; |
@@ -1258,12 +1338,14 @@ discard block |
||
| 1258 | 1338 | $file_steps = $upcontext['table_count']; |
| 1259 | 1339 | |
| 1260 | 1340 | // What ones have we already done? |
| 1261 | - foreach ($table_names as $id => $table) |
|
| 1262 | - if ($id < $_GET['substep']) |
|
| 1341 | + foreach ($table_names as $id => $table) { |
|
| 1342 | + if ($id < $_GET['substep']) |
|
| 1263 | 1343 | $upcontext['previous_tables'][] = $table; |
| 1344 | + } |
|
| 1264 | 1345 | |
| 1265 | - if ($command_line) |
|
| 1266 | - echo 'Backing Up Tables.'; |
|
| 1346 | + if ($command_line) { |
|
| 1347 | + echo 'Backing Up Tables.'; |
|
| 1348 | + } |
|
| 1267 | 1349 | |
| 1268 | 1350 | // If we don't support javascript we backup here. |
| 1269 | 1351 | if (!$support_js || isset($_GET['xml'])) |
@@ -1282,8 +1364,9 @@ discard block |
||
| 1282 | 1364 | backupTable($table_names[$substep]); |
| 1283 | 1365 | |
| 1284 | 1366 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 1285 | - if (isset($_GET['xml'])) |
|
| 1286 | - return upgradeExit(); |
|
| 1367 | + if (isset($_GET['xml'])) { |
|
| 1368 | + return upgradeExit(); |
|
| 1369 | + } |
|
| 1287 | 1370 | } |
| 1288 | 1371 | |
| 1289 | 1372 | if ($command_line) |
@@ -1316,9 +1399,10 @@ discard block |
||
| 1316 | 1399 | |
| 1317 | 1400 | $smcFunc['db_backup_table']($table, 'backup_' . $table); |
| 1318 | 1401 | |
| 1319 | - if ($command_line) |
|
| 1320 | - echo ' done.'; |
|
| 1321 | -} |
|
| 1402 | + if ($command_line) { |
|
| 1403 | + echo ' done.'; |
|
| 1404 | + } |
|
| 1405 | + } |
|
| 1322 | 1406 | |
| 1323 | 1407 | // Step 2: Everything. |
| 1324 | 1408 | function DatabaseChanges() |
@@ -1327,8 +1411,9 @@ discard block |
||
| 1327 | 1411 | global $upcontext, $support_js, $db_type; |
| 1328 | 1412 | |
| 1329 | 1413 | // Have we just completed this? |
| 1330 | - if (!empty($_POST['database_done'])) |
|
| 1331 | - return true; |
|
| 1414 | + if (!empty($_POST['database_done'])) { |
|
| 1415 | + return true; |
|
| 1416 | + } |
|
| 1332 | 1417 | |
| 1333 | 1418 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'database_xml' : 'database_changes'; |
| 1334 | 1419 | $upcontext['page_title'] = 'Database Changes'; |
@@ -1343,15 +1428,16 @@ discard block |
||
| 1343 | 1428 | ); |
| 1344 | 1429 | |
| 1345 | 1430 | // How many files are there in total? |
| 1346 | - if (isset($_GET['filecount'])) |
|
| 1347 | - $upcontext['file_count'] = (int) $_GET['filecount']; |
|
| 1348 | - else |
|
| 1431 | + if (isset($_GET['filecount'])) { |
|
| 1432 | + $upcontext['file_count'] = (int) $_GET['filecount']; |
|
| 1433 | + } else |
|
| 1349 | 1434 | { |
| 1350 | 1435 | $upcontext['file_count'] = 0; |
| 1351 | 1436 | foreach ($files as $file) |
| 1352 | 1437 | { |
| 1353 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) |
|
| 1354 | - $upcontext['file_count']++; |
|
| 1438 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) { |
|
| 1439 | + $upcontext['file_count']++; |
|
| 1440 | + } |
|
| 1355 | 1441 | } |
| 1356 | 1442 | } |
| 1357 | 1443 | |
@@ -1361,9 +1447,9 @@ discard block |
||
| 1361 | 1447 | $upcontext['cur_file_num'] = 0; |
| 1362 | 1448 | foreach ($files as $file) |
| 1363 | 1449 | { |
| 1364 | - if ($did_not_do) |
|
| 1365 | - $did_not_do--; |
|
| 1366 | - else |
|
| 1450 | + if ($did_not_do) { |
|
| 1451 | + $did_not_do--; |
|
| 1452 | + } else |
|
| 1367 | 1453 | { |
| 1368 | 1454 | $upcontext['cur_file_num']++; |
| 1369 | 1455 | $upcontext['cur_file_name'] = $file[0]; |
@@ -1390,12 +1476,13 @@ discard block |
||
| 1390 | 1476 | // Flag to move on to the next. |
| 1391 | 1477 | $upcontext['completed_step'] = true; |
| 1392 | 1478 | // Did we complete the whole file? |
| 1393 | - if ($nextFile) |
|
| 1394 | - $upcontext['current_debug_item_num'] = -1; |
|
| 1479 | + if ($nextFile) { |
|
| 1480 | + $upcontext['current_debug_item_num'] = -1; |
|
| 1481 | + } |
|
| 1395 | 1482 | return upgradeExit(); |
| 1483 | + } elseif ($support_js) { |
|
| 1484 | + break; |
|
| 1396 | 1485 | } |
| 1397 | - elseif ($support_js) |
|
| 1398 | - break; |
|
| 1399 | 1486 | } |
| 1400 | 1487 | // Set the progress bar to be right as if we had - even if we hadn't... |
| 1401 | 1488 | $upcontext['step_progress'] = ($upcontext['cur_file_num'] / $upcontext['file_count']) * 100; |
@@ -1420,8 +1507,9 @@ discard block |
||
| 1420 | 1507 | global $command_line, $language, $upcontext, $sourcedir, $forum_version, $user_info, $maintenance, $smcFunc, $db_type; |
| 1421 | 1508 | |
| 1422 | 1509 | // Now it's nice to have some of the basic SMF source files. |
| 1423 | - if (!isset($_GET['ssi']) && !$command_line) |
|
| 1424 | - redirectLocation('&ssi=1'); |
|
| 1510 | + if (!isset($_GET['ssi']) && !$command_line) { |
|
| 1511 | + redirectLocation('&ssi=1'); |
|
| 1512 | + } |
|
| 1425 | 1513 | |
| 1426 | 1514 | $upcontext['sub_template'] = 'upgrade_complete'; |
| 1427 | 1515 | $upcontext['page_title'] = 'Upgrade Complete'; |
@@ -1437,14 +1525,16 @@ discard block |
||
| 1437 | 1525 | // Are we in maintenance mode? |
| 1438 | 1526 | if (isset($upcontext['user']['main'])) |
| 1439 | 1527 | { |
| 1440 | - if ($command_line) |
|
| 1441 | - echo ' * '; |
|
| 1528 | + if ($command_line) { |
|
| 1529 | + echo ' * '; |
|
| 1530 | + } |
|
| 1442 | 1531 | $upcontext['removed_maintenance'] = true; |
| 1443 | 1532 | $changes['maintenance'] = $upcontext['user']['main']; |
| 1444 | 1533 | } |
| 1445 | 1534 | // Otherwise if somehow we are in 2 let's go to 1. |
| 1446 | - elseif (!empty($maintenance) && $maintenance == 2) |
|
| 1447 | - $changes['maintenance'] = 1; |
|
| 1535 | + elseif (!empty($maintenance) && $maintenance == 2) { |
|
| 1536 | + $changes['maintenance'] = 1; |
|
| 1537 | + } |
|
| 1448 | 1538 | |
| 1449 | 1539 | // Wipe this out... |
| 1450 | 1540 | $upcontext['user'] = array(); |
@@ -1459,9 +1549,9 @@ discard block |
||
| 1459 | 1549 | $upcontext['can_delete_script'] = is_writable(dirname(__FILE__)) || is_writable(__FILE__); |
| 1460 | 1550 | |
| 1461 | 1551 | // Now is the perfect time to fetch the SM files. |
| 1462 | - if ($command_line) |
|
| 1463 | - cli_scheduled_fetchSMfiles(); |
|
| 1464 | - else |
|
| 1552 | + if ($command_line) { |
|
| 1553 | + cli_scheduled_fetchSMfiles(); |
|
| 1554 | + } else |
|
| 1465 | 1555 | { |
| 1466 | 1556 | require_once($sourcedir . '/ScheduledTasks.php'); |
| 1467 | 1557 | $forum_version = SMF_VERSION; // The variable is usually defined in index.php so lets just use the constant to do it for us. |
@@ -1469,8 +1559,9 @@ discard block |
||
| 1469 | 1559 | } |
| 1470 | 1560 | |
| 1471 | 1561 | // Log what we've done. |
| 1472 | - if (empty($user_info['id'])) |
|
| 1473 | - $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
| 1562 | + if (empty($user_info['id'])) { |
|
| 1563 | + $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
| 1564 | + } |
|
| 1474 | 1565 | |
| 1475 | 1566 | // Log the action manually, so CLI still works. |
| 1476 | 1567 | $smcFunc['db_insert']('', |
@@ -1489,8 +1580,9 @@ discard block |
||
| 1489 | 1580 | |
| 1490 | 1581 | // Save the current database version. |
| 1491 | 1582 | $server_version = $smcFunc['db_server_info'](); |
| 1492 | - if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) |
|
| 1493 | - updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
| 1583 | + if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) { |
|
| 1584 | + updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
| 1585 | + } |
|
| 1494 | 1586 | |
| 1495 | 1587 | if ($command_line) |
| 1496 | 1588 | { |
@@ -1502,8 +1594,9 @@ discard block |
||
| 1502 | 1594 | |
| 1503 | 1595 | // Make sure it says we're done. |
| 1504 | 1596 | $upcontext['overall_percent'] = 100; |
| 1505 | - if (isset($upcontext['step_progress'])) |
|
| 1506 | - unset($upcontext['step_progress']); |
|
| 1597 | + if (isset($upcontext['step_progress'])) { |
|
| 1598 | + unset($upcontext['step_progress']); |
|
| 1599 | + } |
|
| 1507 | 1600 | |
| 1508 | 1601 | $_GET['substep'] = 0; |
| 1509 | 1602 | return false; |
@@ -1514,8 +1607,9 @@ discard block |
||
| 1514 | 1607 | { |
| 1515 | 1608 | global $sourcedir, $language, $forum_version, $modSettings, $smcFunc; |
| 1516 | 1609 | |
| 1517 | - if (empty($modSettings['time_format'])) |
|
| 1518 | - $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
| 1610 | + if (empty($modSettings['time_format'])) { |
|
| 1611 | + $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
| 1612 | + } |
|
| 1519 | 1613 | |
| 1520 | 1614 | // What files do we want to get |
| 1521 | 1615 | $request = $smcFunc['db_query']('', ' |
@@ -1549,8 +1643,9 @@ discard block |
||
| 1549 | 1643 | $file_data = fetch_web_data($url); |
| 1550 | 1644 | |
| 1551 | 1645 | // If we got an error - give up - the site might be down. |
| 1552 | - if ($file_data === false) |
|
| 1553 | - return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
| 1646 | + if ($file_data === false) { |
|
| 1647 | + return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
| 1648 | + } |
|
| 1554 | 1649 | |
| 1555 | 1650 | // Save the file to the database. |
| 1556 | 1651 | $smcFunc['db_query']('substring', ' |
@@ -1592,8 +1687,9 @@ discard block |
||
| 1592 | 1687 | $themeData = array(); |
| 1593 | 1688 | foreach ($values as $variable => $value) |
| 1594 | 1689 | { |
| 1595 | - if (!isset($value) || $value === null) |
|
| 1596 | - $value = 0; |
|
| 1690 | + if (!isset($value) || $value === null) { |
|
| 1691 | + $value = 0; |
|
| 1692 | + } |
|
| 1597 | 1693 | |
| 1598 | 1694 | $themeData[] = array(0, 1, $variable, $value); |
| 1599 | 1695 | } |
@@ -1622,8 +1718,9 @@ discard block |
||
| 1622 | 1718 | |
| 1623 | 1719 | foreach ($values as $variable => $value) |
| 1624 | 1720 | { |
| 1625 | - if (empty($modSettings[$value[0]])) |
|
| 1626 | - continue; |
|
| 1721 | + if (empty($modSettings[$value[0]])) { |
|
| 1722 | + continue; |
|
| 1723 | + } |
|
| 1627 | 1724 | |
| 1628 | 1725 | $smcFunc['db_query']('', ' |
| 1629 | 1726 | INSERT IGNORE INTO {db_prefix}themes |
@@ -1709,19 +1806,21 @@ discard block |
||
| 1709 | 1806 | set_error_handler( |
| 1710 | 1807 | function ($errno, $errstr, $errfile, $errline) use ($support_js) |
| 1711 | 1808 | { |
| 1712 | - if ($support_js) |
|
| 1713 | - return true; |
|
| 1714 | - else |
|
| 1715 | - echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
| 1809 | + if ($support_js) { |
|
| 1810 | + return true; |
|
| 1811 | + } else { |
|
| 1812 | + echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
| 1813 | + } |
|
| 1716 | 1814 | } |
| 1717 | 1815 | ); |
| 1718 | 1816 | |
| 1719 | 1817 | // If we're on MySQL, set {db_collation}; this approach is used throughout upgrade_2-0_mysql.php to set new tables to utf8 |
| 1720 | 1818 | // Note it is expected to be in the format: ENGINE=MyISAM{$db_collation}; |
| 1721 | - if ($db_type == 'mysql') |
|
| 1722 | - $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
| 1723 | - else |
|
| 1724 | - $db_collation = ''; |
|
| 1819 | + if ($db_type == 'mysql') { |
|
| 1820 | + $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
| 1821 | + } else { |
|
| 1822 | + $db_collation = ''; |
|
| 1823 | + } |
|
| 1725 | 1824 | |
| 1726 | 1825 | $endl = $command_line ? "\n" : '<br>' . "\n"; |
| 1727 | 1826 | |
@@ -1733,8 +1832,9 @@ discard block |
||
| 1733 | 1832 | $last_step = ''; |
| 1734 | 1833 | |
| 1735 | 1834 | // Make sure all newly created tables will have the proper characters set; this approach is used throughout upgrade_2-1_mysql.php |
| 1736 | - if (isset($db_character_set) && $db_character_set === 'utf8') |
|
| 1737 | - $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
| 1835 | + if (isset($db_character_set) && $db_character_set === 'utf8') { |
|
| 1836 | + $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
| 1837 | + } |
|
| 1738 | 1838 | |
| 1739 | 1839 | // Count the total number of steps within this file - for progress. |
| 1740 | 1840 | $file_steps = substr_count(implode('', $lines), '---#'); |
@@ -1754,15 +1854,18 @@ discard block |
||
| 1754 | 1854 | $do_current = $substep >= $_GET['substep']; |
| 1755 | 1855 | |
| 1756 | 1856 | // Get rid of any comments in the beginning of the line... |
| 1757 | - if (substr(trim($line), 0, 2) === '/*') |
|
| 1758 | - $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
| 1857 | + if (substr(trim($line), 0, 2) === '/*') { |
|
| 1858 | + $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
| 1859 | + } |
|
| 1759 | 1860 | |
| 1760 | 1861 | // Always flush. Flush, flush, flush. Flush, flush, flush, flush! FLUSH! |
| 1761 | - if ($is_debug && !$support_js && $command_line) |
|
| 1762 | - flush(); |
|
| 1862 | + if ($is_debug && !$support_js && $command_line) { |
|
| 1863 | + flush(); |
|
| 1864 | + } |
|
| 1763 | 1865 | |
| 1764 | - if (trim($line) === '') |
|
| 1765 | - continue; |
|
| 1866 | + if (trim($line) === '') { |
|
| 1867 | + continue; |
|
| 1868 | + } |
|
| 1766 | 1869 | |
| 1767 | 1870 | if (trim(substr($line, 0, 3)) === '---') |
| 1768 | 1871 | { |
@@ -1772,8 +1875,9 @@ discard block |
||
| 1772 | 1875 | if (trim($current_data) != '' && $type !== '}') |
| 1773 | 1876 | { |
| 1774 | 1877 | $upcontext['error_message'] = 'Error in upgrade script - line ' . $line_number . '!' . $endl; |
| 1775 | - if ($command_line) |
|
| 1776 | - echo $upcontext['error_message']; |
|
| 1878 | + if ($command_line) { |
|
| 1879 | + echo $upcontext['error_message']; |
|
| 1880 | + } |
|
| 1777 | 1881 | } |
| 1778 | 1882 | |
| 1779 | 1883 | if ($type == ' ') |
@@ -1791,17 +1895,18 @@ discard block |
||
| 1791 | 1895 | if ($do_current) |
| 1792 | 1896 | { |
| 1793 | 1897 | $upcontext['actioned_items'][] = $last_step; |
| 1794 | - if ($command_line) |
|
| 1795 | - echo ' * '; |
|
| 1898 | + if ($command_line) { |
|
| 1899 | + echo ' * '; |
|
| 1900 | + } |
|
| 1796 | 1901 | } |
| 1797 | - } |
|
| 1798 | - elseif ($type == '#') |
|
| 1902 | + } elseif ($type == '#') |
|
| 1799 | 1903 | { |
| 1800 | 1904 | $upcontext['step_progress'] += (100 / $upcontext['file_count']) / $file_steps; |
| 1801 | 1905 | |
| 1802 | 1906 | $upcontext['current_debug_item_num']++; |
| 1803 | - if (trim($line) != '---#') |
|
| 1804 | - $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1907 | + if (trim($line) != '---#') { |
|
| 1908 | + $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1909 | + } |
|
| 1805 | 1910 | |
| 1806 | 1911 | // Have we already done something? |
| 1807 | 1912 | if (isset($_GET['xml']) && $done_something) |
@@ -1812,34 +1917,36 @@ discard block |
||
| 1812 | 1917 | |
| 1813 | 1918 | if ($do_current) |
| 1814 | 1919 | { |
| 1815 | - if (trim($line) == '---#' && $command_line) |
|
| 1816 | - echo ' done.', $endl; |
|
| 1817 | - elseif ($command_line) |
|
| 1818 | - echo ' +++ ', rtrim(substr($line, 4)); |
|
| 1819 | - elseif (trim($line) != '---#') |
|
| 1920 | + if (trim($line) == '---#' && $command_line) { |
|
| 1921 | + echo ' done.', $endl; |
|
| 1922 | + } elseif ($command_line) { |
|
| 1923 | + echo ' +++ ', rtrim(substr($line, 4)); |
|
| 1924 | + } elseif (trim($line) != '---#') |
|
| 1820 | 1925 | { |
| 1821 | - if ($is_debug) |
|
| 1822 | - $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1926 | + if ($is_debug) { |
|
| 1927 | + $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
| 1928 | + } |
|
| 1823 | 1929 | } |
| 1824 | 1930 | } |
| 1825 | 1931 | |
| 1826 | 1932 | if ($substep < $_GET['substep'] && $substep + 1 >= $_GET['substep']) |
| 1827 | 1933 | { |
| 1828 | - if ($command_line) |
|
| 1829 | - echo ' * '; |
|
| 1830 | - else |
|
| 1831 | - $upcontext['actioned_items'][] = $last_step; |
|
| 1934 | + if ($command_line) { |
|
| 1935 | + echo ' * '; |
|
| 1936 | + } else { |
|
| 1937 | + $upcontext['actioned_items'][] = $last_step; |
|
| 1938 | + } |
|
| 1832 | 1939 | } |
| 1833 | 1940 | |
| 1834 | 1941 | // Small step - only if we're actually doing stuff. |
| 1835 | - if ($do_current) |
|
| 1836 | - nextSubstep(++$substep); |
|
| 1837 | - else |
|
| 1838 | - $substep++; |
|
| 1839 | - } |
|
| 1840 | - elseif ($type == '{') |
|
| 1841 | - $current_type = 'code'; |
|
| 1842 | - elseif ($type == '}') |
|
| 1942 | + if ($do_current) { |
|
| 1943 | + nextSubstep(++$substep); |
|
| 1944 | + } else { |
|
| 1945 | + $substep++; |
|
| 1946 | + } |
|
| 1947 | + } elseif ($type == '{') { |
|
| 1948 | + $current_type = 'code'; |
|
| 1949 | + } elseif ($type == '}') |
|
| 1843 | 1950 | { |
| 1844 | 1951 | $current_type = 'sql'; |
| 1845 | 1952 | |
@@ -1852,8 +1959,9 @@ discard block |
||
| 1852 | 1959 | if (eval('global $db_prefix, $modSettings, $smcFunc; ' . $current_data) === false) |
| 1853 | 1960 | { |
| 1854 | 1961 | $upcontext['error_message'] = 'Error in upgrade script ' . basename($filename) . ' on line ' . $line_number . '!' . $endl; |
| 1855 | - if ($command_line) |
|
| 1856 | - echo $upcontext['error_message']; |
|
| 1962 | + if ($command_line) { |
|
| 1963 | + echo $upcontext['error_message']; |
|
| 1964 | + } |
|
| 1857 | 1965 | } |
| 1858 | 1966 | |
| 1859 | 1967 | // Done with code! |
@@ -1933,8 +2041,9 @@ discard block |
||
| 1933 | 2041 | $db_unbuffered = false; |
| 1934 | 2042 | |
| 1935 | 2043 | // Failure?! |
| 1936 | - if ($result !== false) |
|
| 1937 | - return $result; |
|
| 2044 | + if ($result !== false) { |
|
| 2045 | + return $result; |
|
| 2046 | + } |
|
| 1938 | 2047 | |
| 1939 | 2048 | $db_error_message = $smcFunc['db_error']($db_connection); |
| 1940 | 2049 | // If MySQL we do something more clever. |
@@ -1962,54 +2071,61 @@ discard block |
||
| 1962 | 2071 | { |
| 1963 | 2072 | mysqli_query($db_connection, 'REPAIR TABLE `' . $match[1] . '`'); |
| 1964 | 2073 | $result = mysqli_query($db_connection, $string); |
| 1965 | - if ($result !== false) |
|
| 1966 | - return $result; |
|
| 2074 | + if ($result !== false) { |
|
| 2075 | + return $result; |
|
| 2076 | + } |
|
| 1967 | 2077 | } |
| 1968 | - } |
|
| 1969 | - elseif ($mysqli_errno == 2013) |
|
| 2078 | + } elseif ($mysqli_errno == 2013) |
|
| 1970 | 2079 | { |
| 1971 | 2080 | $db_connection = mysqli_connect($db_server, $db_user, $db_passwd); |
| 1972 | 2081 | mysqli_select_db($db_connection, $db_name); |
| 1973 | 2082 | if ($db_connection) |
| 1974 | 2083 | { |
| 1975 | 2084 | $result = mysqli_query($db_connection, $string); |
| 1976 | - if ($result !== false) |
|
| 1977 | - return $result; |
|
| 2085 | + if ($result !== false) { |
|
| 2086 | + return $result; |
|
| 2087 | + } |
|
| 1978 | 2088 | } |
| 1979 | 2089 | } |
| 1980 | 2090 | // Duplicate column name... should be okay ;). |
| 1981 | - elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) |
|
| 1982 | - return false; |
|
| 2091 | + elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) { |
|
| 2092 | + return false; |
|
| 2093 | + } |
|
| 1983 | 2094 | // Duplicate insert... make sure it's the proper type of query ;). |
| 1984 | - elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) |
|
| 1985 | - return false; |
|
| 2095 | + elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) { |
|
| 2096 | + return false; |
|
| 2097 | + } |
|
| 1986 | 2098 | // Creating an index on a non-existent column. |
| 1987 | - elseif ($mysqli_errno == 1072) |
|
| 1988 | - return false; |
|
| 1989 | - elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') |
|
| 1990 | - return false; |
|
| 2099 | + elseif ($mysqli_errno == 1072) { |
|
| 2100 | + return false; |
|
| 2101 | + } elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') { |
|
| 2102 | + return false; |
|
| 2103 | + } |
|
| 1991 | 2104 | } |
| 1992 | 2105 | // If a table already exists don't go potty. |
| 1993 | 2106 | else |
| 1994 | 2107 | { |
| 1995 | 2108 | if (in_array(substr(trim($string), 0, 8), array('CREATE T', 'CREATE S', 'DROP TABL', 'ALTER TA', 'CREATE I', 'CREATE U'))) |
| 1996 | 2109 | { |
| 1997 | - if (strpos($db_error_message, 'exist') !== false) |
|
| 1998 | - return true; |
|
| 1999 | - } |
|
| 2000 | - elseif (strpos(trim($string), 'INSERT ') !== false) |
|
| 2110 | + if (strpos($db_error_message, 'exist') !== false) { |
|
| 2111 | + return true; |
|
| 2112 | + } |
|
| 2113 | + } elseif (strpos(trim($string), 'INSERT ') !== false) |
|
| 2001 | 2114 | { |
| 2002 | - if (strpos($db_error_message, 'duplicate') !== false) |
|
| 2003 | - return true; |
|
| 2115 | + if (strpos($db_error_message, 'duplicate') !== false) { |
|
| 2116 | + return true; |
|
| 2117 | + } |
|
| 2004 | 2118 | } |
| 2005 | 2119 | } |
| 2006 | 2120 | |
| 2007 | 2121 | // Get the query string so we pass everything. |
| 2008 | 2122 | $query_string = ''; |
| 2009 | - foreach ($_GET as $k => $v) |
|
| 2010 | - $query_string .= ';' . $k . '=' . $v; |
|
| 2011 | - if (strlen($query_string) != 0) |
|
| 2012 | - $query_string = '?' . substr($query_string, 1); |
|
| 2123 | + foreach ($_GET as $k => $v) { |
|
| 2124 | + $query_string .= ';' . $k . '=' . $v; |
|
| 2125 | + } |
|
| 2126 | + if (strlen($query_string) != 0) { |
|
| 2127 | + $query_string = '?' . substr($query_string, 1); |
|
| 2128 | + } |
|
| 2013 | 2129 | |
| 2014 | 2130 | if ($command_line) |
| 2015 | 2131 | { |
@@ -2064,16 +2180,18 @@ discard block |
||
| 2064 | 2180 | { |
| 2065 | 2181 | $found |= 1; |
| 2066 | 2182 | // Do some checks on the data if we have it set. |
| 2067 | - if (isset($change['col_type'])) |
|
| 2068 | - $found &= $change['col_type'] === $column['type']; |
|
| 2069 | - if (isset($change['null_allowed'])) |
|
| 2070 | - $found &= $column['null'] == $change['null_allowed']; |
|
| 2071 | - if (isset($change['default'])) |
|
| 2072 | - $found &= $change['default'] === $column['default']; |
|
| 2183 | + if (isset($change['col_type'])) { |
|
| 2184 | + $found &= $change['col_type'] === $column['type']; |
|
| 2185 | + } |
|
| 2186 | + if (isset($change['null_allowed'])) { |
|
| 2187 | + $found &= $column['null'] == $change['null_allowed']; |
|
| 2188 | + } |
|
| 2189 | + if (isset($change['default'])) { |
|
| 2190 | + $found &= $change['default'] === $column['default']; |
|
| 2191 | + } |
|
| 2073 | 2192 | } |
| 2074 | 2193 | } |
| 2075 | - } |
|
| 2076 | - elseif ($change['type'] === 'index') |
|
| 2194 | + } elseif ($change['type'] === 'index') |
|
| 2077 | 2195 | { |
| 2078 | 2196 | $request = upgrade_query(' |
| 2079 | 2197 | SHOW INDEX |
@@ -2082,9 +2200,10 @@ discard block |
||
| 2082 | 2200 | { |
| 2083 | 2201 | $cur_index = array(); |
| 2084 | 2202 | |
| 2085 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2086 | - if ($row['Key_name'] === $change['name']) |
|
| 2203 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2204 | + if ($row['Key_name'] === $change['name']) |
|
| 2087 | 2205 | $cur_index[(int) $row['Seq_in_index']] = $row['Column_name']; |
| 2206 | + } |
|
| 2088 | 2207 | |
| 2089 | 2208 | ksort($cur_index, SORT_NUMERIC); |
| 2090 | 2209 | $found = array_values($cur_index) === $change['target_columns']; |
@@ -2094,14 +2213,17 @@ discard block |
||
| 2094 | 2213 | } |
| 2095 | 2214 | |
| 2096 | 2215 | // If we're trying to add and it's added, we're done. |
| 2097 | - if ($found && in_array($change['method'], array('add', 'change'))) |
|
| 2098 | - return true; |
|
| 2216 | + if ($found && in_array($change['method'], array('add', 'change'))) { |
|
| 2217 | + return true; |
|
| 2218 | + } |
|
| 2099 | 2219 | // Otherwise if we're removing and it wasn't found we're also done. |
| 2100 | - elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) |
|
| 2101 | - return true; |
|
| 2220 | + elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) { |
|
| 2221 | + return true; |
|
| 2222 | + } |
|
| 2102 | 2223 | // Otherwise is it just a test? |
| 2103 | - elseif ($is_test) |
|
| 2104 | - return false; |
|
| 2224 | + elseif ($is_test) { |
|
| 2225 | + return false; |
|
| 2226 | + } |
|
| 2105 | 2227 | |
| 2106 | 2228 | // Not found it yet? Bummer! How about we see if we're currently doing it? |
| 2107 | 2229 | $running = false; |
@@ -2112,8 +2234,9 @@ discard block |
||
| 2112 | 2234 | SHOW FULL PROCESSLIST'); |
| 2113 | 2235 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 2114 | 2236 | { |
| 2115 | - if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) |
|
| 2116 | - $found = true; |
|
| 2237 | + if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) { |
|
| 2238 | + $found = true; |
|
| 2239 | + } |
|
| 2117 | 2240 | } |
| 2118 | 2241 | |
| 2119 | 2242 | // Can't find it? Then we need to run it fools! |
@@ -2125,8 +2248,9 @@ discard block |
||
| 2125 | 2248 | ALTER TABLE ' . $db_prefix . $change['table'] . ' |
| 2126 | 2249 | ' . $change['text'], true) !== false; |
| 2127 | 2250 | |
| 2128 | - if (!$success) |
|
| 2129 | - return false; |
|
| 2251 | + if (!$success) { |
|
| 2252 | + return false; |
|
| 2253 | + } |
|
| 2130 | 2254 | |
| 2131 | 2255 | // Return |
| 2132 | 2256 | $running = true; |
@@ -2168,8 +2292,9 @@ discard block |
||
| 2168 | 2292 | 'db_error_skip' => true, |
| 2169 | 2293 | ) |
| 2170 | 2294 | ); |
| 2171 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 2172 | - die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
| 2295 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 2296 | + die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
| 2297 | + } |
|
| 2173 | 2298 | $table_row = $smcFunc['db_fetch_assoc']($request); |
| 2174 | 2299 | $smcFunc['db_free_result']($request); |
| 2175 | 2300 | |
@@ -2191,18 +2316,19 @@ discard block |
||
| 2191 | 2316 | ) |
| 2192 | 2317 | ); |
| 2193 | 2318 | // No results? Just forget it all together. |
| 2194 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
| 2195 | - unset($table_row['Collation']); |
|
| 2196 | - else |
|
| 2197 | - $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
| 2319 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
| 2320 | + unset($table_row['Collation']); |
|
| 2321 | + } else { |
|
| 2322 | + $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
| 2323 | + } |
|
| 2198 | 2324 | $smcFunc['db_free_result']($request); |
| 2199 | 2325 | } |
| 2200 | 2326 | |
| 2201 | 2327 | if ($column_fix) |
| 2202 | 2328 | { |
| 2203 | 2329 | // Make sure there are no NULL's left. |
| 2204 | - if ($null_fix) |
|
| 2205 | - $smcFunc['db_query']('', ' |
|
| 2330 | + if ($null_fix) { |
|
| 2331 | + $smcFunc['db_query']('', ' |
|
| 2206 | 2332 | UPDATE {db_prefix}' . $change['table'] . ' |
| 2207 | 2333 | SET ' . $change['column'] . ' = {string:default} |
| 2208 | 2334 | WHERE ' . $change['column'] . ' IS NULL', |
@@ -2211,6 +2337,7 @@ discard block |
||
| 2211 | 2337 | 'db_error_skip' => true, |
| 2212 | 2338 | ) |
| 2213 | 2339 | ); |
| 2340 | + } |
|
| 2214 | 2341 | |
| 2215 | 2342 | // Do the actual alteration. |
| 2216 | 2343 | $smcFunc['db_query']('', ' |
@@ -2239,8 +2366,9 @@ discard block |
||
| 2239 | 2366 | } |
| 2240 | 2367 | |
| 2241 | 2368 | // Not a column we need to check on? |
| 2242 | - if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) |
|
| 2243 | - return; |
|
| 2369 | + if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) { |
|
| 2370 | + return; |
|
| 2371 | + } |
|
| 2244 | 2372 | |
| 2245 | 2373 | // Break it up you (six|seven). |
| 2246 | 2374 | $temp = explode(' ', str_replace('NOT NULL', 'NOT_NULL', $change['text'])); |
@@ -2259,13 +2387,13 @@ discard block |
||
| 2259 | 2387 | 'new_name' => $temp[2], |
| 2260 | 2388 | )); |
| 2261 | 2389 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
| 2262 | - if ($smcFunc['db_num_rows'] != 1) |
|
| 2263 | - return; |
|
| 2390 | + if ($smcFunc['db_num_rows'] != 1) { |
|
| 2391 | + return; |
|
| 2392 | + } |
|
| 2264 | 2393 | |
| 2265 | 2394 | list (, $current_type) = $smcFunc['db_fetch_assoc']($request); |
| 2266 | 2395 | $smcFunc['db_free_result']($request); |
| 2267 | - } |
|
| 2268 | - else |
|
| 2396 | + } else |
|
| 2269 | 2397 | { |
| 2270 | 2398 | // Do this the old fashion, sure method way. |
| 2271 | 2399 | $request = $smcFunc['db_query']('', ' |
@@ -2276,21 +2404,24 @@ discard block |
||
| 2276 | 2404 | )); |
| 2277 | 2405 | // Mayday! |
| 2278 | 2406 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
| 2279 | - if ($smcFunc['db_num_rows'] == 0) |
|
| 2280 | - return; |
|
| 2407 | + if ($smcFunc['db_num_rows'] == 0) { |
|
| 2408 | + return; |
|
| 2409 | + } |
|
| 2281 | 2410 | |
| 2282 | 2411 | // Oh where, oh where has my little field gone. Oh where can it be... |
| 2283 | - while ($row = $smcFunc['db_query']($request)) |
|
| 2284 | - if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
| 2412 | + while ($row = $smcFunc['db_query']($request)) { |
|
| 2413 | + if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
| 2285 | 2414 | { |
| 2286 | 2415 | $current_type = $row['Type']; |
| 2416 | + } |
|
| 2287 | 2417 | break; |
| 2288 | 2418 | } |
| 2289 | 2419 | } |
| 2290 | 2420 | |
| 2291 | 2421 | // If this doesn't match, the column may of been altered for a reason. |
| 2292 | - if (trim($current_type) != trim($temp[3])) |
|
| 2293 | - $temp[3] = $current_type; |
|
| 2422 | + if (trim($current_type) != trim($temp[3])) { |
|
| 2423 | + $temp[3] = $current_type; |
|
| 2424 | + } |
|
| 2294 | 2425 | |
| 2295 | 2426 | // Piece this back together. |
| 2296 | 2427 | $change['text'] = str_replace('NOT_NULL', 'NOT NULL', implode(' ', $temp)); |
@@ -2302,8 +2433,9 @@ discard block |
||
| 2302 | 2433 | global $start_time, $timeLimitThreshold, $command_line, $custom_warning; |
| 2303 | 2434 | global $step_progress, $is_debug, $upcontext; |
| 2304 | 2435 | |
| 2305 | - if ($_GET['substep'] < $substep) |
|
| 2306 | - $_GET['substep'] = $substep; |
|
| 2436 | + if ($_GET['substep'] < $substep) { |
|
| 2437 | + $_GET['substep'] = $substep; |
|
| 2438 | + } |
|
| 2307 | 2439 | |
| 2308 | 2440 | if ($command_line) |
| 2309 | 2441 | { |
@@ -2316,29 +2448,33 @@ discard block |
||
| 2316 | 2448 | } |
| 2317 | 2449 | |
| 2318 | 2450 | @set_time_limit(300); |
| 2319 | - if (function_exists('apache_reset_timeout')) |
|
| 2320 | - @apache_reset_timeout(); |
|
| 2451 | + if (function_exists('apache_reset_timeout')) { |
|
| 2452 | + @apache_reset_timeout(); |
|
| 2453 | + } |
|
| 2321 | 2454 | |
| 2322 | - if (time() - $start_time <= $timeLimitThreshold) |
|
| 2323 | - return; |
|
| 2455 | + if (time() - $start_time <= $timeLimitThreshold) { |
|
| 2456 | + return; |
|
| 2457 | + } |
|
| 2324 | 2458 | |
| 2325 | 2459 | // Do we have some custom step progress stuff? |
| 2326 | 2460 | if (!empty($step_progress)) |
| 2327 | 2461 | { |
| 2328 | 2462 | $upcontext['substep_progress'] = 0; |
| 2329 | 2463 | $upcontext['substep_progress_name'] = $step_progress['name']; |
| 2330 | - if ($step_progress['current'] > $step_progress['total']) |
|
| 2331 | - $upcontext['substep_progress'] = 99.9; |
|
| 2332 | - else |
|
| 2333 | - $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
| 2464 | + if ($step_progress['current'] > $step_progress['total']) { |
|
| 2465 | + $upcontext['substep_progress'] = 99.9; |
|
| 2466 | + } else { |
|
| 2467 | + $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
| 2468 | + } |
|
| 2334 | 2469 | |
| 2335 | 2470 | // Make it nicely rounded. |
| 2336 | 2471 | $upcontext['substep_progress'] = round($upcontext['substep_progress'], 1); |
| 2337 | 2472 | } |
| 2338 | 2473 | |
| 2339 | 2474 | // If this is XML we just exit right away! |
| 2340 | - if (isset($_GET['xml'])) |
|
| 2341 | - return upgradeExit(); |
|
| 2475 | + if (isset($_GET['xml'])) { |
|
| 2476 | + return upgradeExit(); |
|
| 2477 | + } |
|
| 2342 | 2478 | |
| 2343 | 2479 | // We're going to pause after this! |
| 2344 | 2480 | $upcontext['pause'] = true; |
@@ -2346,13 +2482,15 @@ discard block |
||
| 2346 | 2482 | $upcontext['query_string'] = ''; |
| 2347 | 2483 | foreach ($_GET as $k => $v) |
| 2348 | 2484 | { |
| 2349 | - if ($k != 'data' && $k != 'substep' && $k != 'step') |
|
| 2350 | - $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
| 2485 | + if ($k != 'data' && $k != 'substep' && $k != 'step') { |
|
| 2486 | + $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
| 2487 | + } |
|
| 2351 | 2488 | } |
| 2352 | 2489 | |
| 2353 | 2490 | // Custom warning? |
| 2354 | - if (!empty($custom_warning)) |
|
| 2355 | - $upcontext['custom_warning'] = $custom_warning; |
|
| 2491 | + if (!empty($custom_warning)) { |
|
| 2492 | + $upcontext['custom_warning'] = $custom_warning; |
|
| 2493 | + } |
|
| 2356 | 2494 | |
| 2357 | 2495 | upgradeExit(); |
| 2358 | 2496 | } |
@@ -2367,25 +2505,26 @@ discard block |
||
| 2367 | 2505 | ob_implicit_flush(true); |
| 2368 | 2506 | @set_time_limit(600); |
| 2369 | 2507 | |
| 2370 | - if (!isset($_SERVER['argv'])) |
|
| 2371 | - $_SERVER['argv'] = array(); |
|
| 2508 | + if (!isset($_SERVER['argv'])) { |
|
| 2509 | + $_SERVER['argv'] = array(); |
|
| 2510 | + } |
|
| 2372 | 2511 | $_GET['maint'] = 1; |
| 2373 | 2512 | |
| 2374 | 2513 | foreach ($_SERVER['argv'] as $i => $arg) |
| 2375 | 2514 | { |
| 2376 | - if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) |
|
| 2377 | - $_GET['lang'] = $match[1]; |
|
| 2378 | - elseif (preg_match('~^--path=(.+)$~', $arg) != 0) |
|
| 2379 | - continue; |
|
| 2380 | - elseif ($arg == '--no-maintenance') |
|
| 2381 | - $_GET['maint'] = 0; |
|
| 2382 | - elseif ($arg == '--debug') |
|
| 2383 | - $is_debug = true; |
|
| 2384 | - elseif ($arg == '--backup') |
|
| 2385 | - $_POST['backup'] = 1; |
|
| 2386 | - elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) |
|
| 2387 | - $_GET['conv'] = 1; |
|
| 2388 | - elseif ($i != 0) |
|
| 2515 | + if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) { |
|
| 2516 | + $_GET['lang'] = $match[1]; |
|
| 2517 | + } elseif (preg_match('~^--path=(.+)$~', $arg) != 0) { |
|
| 2518 | + continue; |
|
| 2519 | + } elseif ($arg == '--no-maintenance') { |
|
| 2520 | + $_GET['maint'] = 0; |
|
| 2521 | + } elseif ($arg == '--debug') { |
|
| 2522 | + $is_debug = true; |
|
| 2523 | + } elseif ($arg == '--backup') { |
|
| 2524 | + $_POST['backup'] = 1; |
|
| 2525 | + } elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) { |
|
| 2526 | + $_GET['conv'] = 1; |
|
| 2527 | + } elseif ($i != 0) |
|
| 2389 | 2528 | { |
| 2390 | 2529 | echo 'SMF Command-line Upgrader |
| 2391 | 2530 | Usage: /path/to/php -f ' . basename(__FILE__) . ' -- [OPTION]... |
@@ -2399,10 +2538,12 @@ discard block |
||
| 2399 | 2538 | } |
| 2400 | 2539 | } |
| 2401 | 2540 | |
| 2402 | - if (!php_version_check()) |
|
| 2403 | - print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
| 2404 | - if (!db_version_check()) |
|
| 2405 | - print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
| 2541 | + if (!php_version_check()) { |
|
| 2542 | + print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
| 2543 | + } |
|
| 2544 | + if (!db_version_check()) { |
|
| 2545 | + print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
| 2546 | + } |
|
| 2406 | 2547 | |
| 2407 | 2548 | // Do some checks to make sure they have proper privileges |
| 2408 | 2549 | db_extend('packages'); |
@@ -2417,39 +2558,45 @@ discard block |
||
| 2417 | 2558 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
| 2418 | 2559 | |
| 2419 | 2560 | // Sorry... we need CREATE, ALTER and DROP |
| 2420 | - if (!$create || !$alter || !$drop) |
|
| 2421 | - print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
| 2561 | + if (!$create || !$alter || !$drop) { |
|
| 2562 | + print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
| 2563 | + } |
|
| 2422 | 2564 | |
| 2423 | 2565 | $check = @file_exists($modSettings['theme_dir'] . '/index.template.php') |
| 2424 | 2566 | && @file_exists($sourcedir . '/QueryString.php') |
| 2425 | 2567 | && @file_exists($sourcedir . '/ManageBoards.php'); |
| 2426 | - if (!$check && !isset($modSettings['smfVersion'])) |
|
| 2427 | - print_error('Error: Some files are missing or out-of-date.', true); |
|
| 2568 | + if (!$check && !isset($modSettings['smfVersion'])) { |
|
| 2569 | + print_error('Error: Some files are missing or out-of-date.', true); |
|
| 2570 | + } |
|
| 2428 | 2571 | |
| 2429 | 2572 | // Do a quick version spot check. |
| 2430 | 2573 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
| 2431 | 2574 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
| 2432 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
| 2433 | - print_error('Error: Some files have not yet been updated properly.'); |
|
| 2575 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
| 2576 | + print_error('Error: Some files have not yet been updated properly.'); |
|
| 2577 | + } |
|
| 2434 | 2578 | |
| 2435 | 2579 | // Make sure Settings.php is writable. |
| 2436 | 2580 | quickFileWritable($boarddir . '/Settings.php'); |
| 2437 | - if (!is_writable($boarddir . '/Settings.php')) |
|
| 2438 | - print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
| 2581 | + if (!is_writable($boarddir . '/Settings.php')) { |
|
| 2582 | + print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
| 2583 | + } |
|
| 2439 | 2584 | |
| 2440 | 2585 | // Make sure Settings_bak.php is writable. |
| 2441 | 2586 | quickFileWritable($boarddir . '/Settings_bak.php'); |
| 2442 | - if (!is_writable($boarddir . '/Settings_bak.php')) |
|
| 2443 | - print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
| 2587 | + if (!is_writable($boarddir . '/Settings_bak.php')) { |
|
| 2588 | + print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
| 2589 | + } |
|
| 2444 | 2590 | |
| 2445 | 2591 | // Make sure db_last_error.php is writable. |
| 2446 | 2592 | quickFileWritable($boarddir . '/db_last_error.php'); |
| 2447 | - if (!is_writable($boarddir . '/db_last_error.php')) |
|
| 2448 | - print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
| 2593 | + if (!is_writable($boarddir . '/db_last_error.php')) { |
|
| 2594 | + print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
| 2595 | + } |
|
| 2449 | 2596 | |
| 2450 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
| 2451 | - print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
| 2452 | - elseif (isset($modSettings['agreement'])) |
|
| 2597 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
| 2598 | + print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
| 2599 | + } elseif (isset($modSettings['agreement'])) |
|
| 2453 | 2600 | { |
| 2454 | 2601 | $fp = fopen($boarddir . '/agreement.txt', 'w'); |
| 2455 | 2602 | fwrite($fp, $modSettings['agreement']); |
@@ -2459,31 +2606,36 @@ discard block |
||
| 2459 | 2606 | // Make sure Themes is writable. |
| 2460 | 2607 | quickFileWritable($modSettings['theme_dir']); |
| 2461 | 2608 | |
| 2462 | - if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) |
|
| 2463 | - print_error('Error: Unable to obtain write access to "Themes".'); |
|
| 2609 | + if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) { |
|
| 2610 | + print_error('Error: Unable to obtain write access to "Themes".'); |
|
| 2611 | + } |
|
| 2464 | 2612 | |
| 2465 | 2613 | // Make sure cache directory exists and is writable! |
| 2466 | 2614 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
| 2467 | - if (!file_exists($cachedir_temp)) |
|
| 2468 | - @mkdir($cachedir_temp); |
|
| 2615 | + if (!file_exists($cachedir_temp)) { |
|
| 2616 | + @mkdir($cachedir_temp); |
|
| 2617 | + } |
|
| 2469 | 2618 | |
| 2470 | 2619 | // Make sure the cache temp dir is writable. |
| 2471 | 2620 | quickFileWritable($cachedir_temp); |
| 2472 | 2621 | |
| 2473 | - if (!is_writable($cachedir_temp)) |
|
| 2474 | - print_error('Error: Unable to obtain write access to "cache".', true); |
|
| 2622 | + if (!is_writable($cachedir_temp)) { |
|
| 2623 | + print_error('Error: Unable to obtain write access to "cache".', true); |
|
| 2624 | + } |
|
| 2475 | 2625 | |
| 2476 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
| 2477 | - print_error('Error: Unable to find language files!', true); |
|
| 2478 | - else |
|
| 2626 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
| 2627 | + print_error('Error: Unable to find language files!', true); |
|
| 2628 | + } else |
|
| 2479 | 2629 | { |
| 2480 | 2630 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
| 2481 | 2631 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
| 2482 | 2632 | |
| 2483 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
| 2484 | - print_error('Error: Language files out of date.', true); |
|
| 2485 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
| 2486 | - print_error('Error: Install language is missing for selected language.', true); |
|
| 2633 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
| 2634 | + print_error('Error: Language files out of date.', true); |
|
| 2635 | + } |
|
| 2636 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
| 2637 | + print_error('Error: Install language is missing for selected language.', true); |
|
| 2638 | + } |
|
| 2487 | 2639 | |
| 2488 | 2640 | // Otherwise include it! |
| 2489 | 2641 | require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
@@ -2502,8 +2654,9 @@ discard block |
||
| 2502 | 2654 | global $upcontext, $db_character_set, $sourcedir, $smcFunc, $modSettings, $language, $db_prefix, $db_type, $command_line, $support_js; |
| 2503 | 2655 | |
| 2504 | 2656 | // Done it already? |
| 2505 | - if (!empty($_POST['utf8_done'])) |
|
| 2506 | - return true; |
|
| 2657 | + if (!empty($_POST['utf8_done'])) { |
|
| 2658 | + return true; |
|
| 2659 | + } |
|
| 2507 | 2660 | |
| 2508 | 2661 | // First make sure they aren't already on UTF-8 before we go anywhere... |
| 2509 | 2662 | if ($db_type == 'postgresql' || ($db_character_set === 'utf8' && !empty($modSettings['global_character_set']) && $modSettings['global_character_set'] === 'UTF-8')) |
@@ -2516,8 +2669,7 @@ discard block |
||
| 2516 | 2669 | ); |
| 2517 | 2670 | |
| 2518 | 2671 | return true; |
| 2519 | - } |
|
| 2520 | - else |
|
| 2672 | + } else |
|
| 2521 | 2673 | { |
| 2522 | 2674 | $upcontext['page_title'] = 'Converting to UTF8'; |
| 2523 | 2675 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'convert_xml' : 'convert_utf8'; |
@@ -2561,8 +2713,9 @@ discard block |
||
| 2561 | 2713 | ) |
| 2562 | 2714 | ); |
| 2563 | 2715 | $db_charsets = array(); |
| 2564 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2565 | - $db_charsets[] = $row['Charset']; |
|
| 2716 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2717 | + $db_charsets[] = $row['Charset']; |
|
| 2718 | + } |
|
| 2566 | 2719 | |
| 2567 | 2720 | $smcFunc['db_free_result']($request); |
| 2568 | 2721 | |
@@ -2598,13 +2751,15 @@ discard block |
||
| 2598 | 2751 | // If there's a fulltext index, we need to drop it first... |
| 2599 | 2752 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
| 2600 | 2753 | { |
| 2601 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 2602 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 2754 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 2755 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 2603 | 2756 | $upcontext['fulltext_index'][] = $row['Key_name']; |
| 2757 | + } |
|
| 2604 | 2758 | $smcFunc['db_free_result']($request); |
| 2605 | 2759 | |
| 2606 | - if (isset($upcontext['fulltext_index'])) |
|
| 2607 | - $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
| 2760 | + if (isset($upcontext['fulltext_index'])) { |
|
| 2761 | + $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
| 2762 | + } |
|
| 2608 | 2763 | } |
| 2609 | 2764 | |
| 2610 | 2765 | // Drop it and make a note... |
@@ -2794,8 +2949,9 @@ discard block |
||
| 2794 | 2949 | $replace = '%field%'; |
| 2795 | 2950 | |
| 2796 | 2951 | // Build a huge REPLACE statement... |
| 2797 | - foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) |
|
| 2798 | - $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
| 2952 | + foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) { |
|
| 2953 | + $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
| 2954 | + } |
|
| 2799 | 2955 | } |
| 2800 | 2956 | |
| 2801 | 2957 | // Get a list of table names ahead of time... This makes it easier to set our substep and such |
@@ -2805,9 +2961,10 @@ discard block |
||
| 2805 | 2961 | $upcontext['table_count'] = count($queryTables); |
| 2806 | 2962 | |
| 2807 | 2963 | // What ones have we already done? |
| 2808 | - foreach ($queryTables as $id => $table) |
|
| 2809 | - if ($id < $_GET['substep']) |
|
| 2964 | + foreach ($queryTables as $id => $table) { |
|
| 2965 | + if ($id < $_GET['substep']) |
|
| 2810 | 2966 | $upcontext['previous_tables'][] = $table; |
| 2967 | + } |
|
| 2811 | 2968 | |
| 2812 | 2969 | $upcontext['cur_table_num'] = $_GET['substep']; |
| 2813 | 2970 | $upcontext['cur_table_name'] = str_replace($db_prefix, '', $queryTables[$_GET['substep']]); |
@@ -2844,8 +3001,9 @@ discard block |
||
| 2844 | 3001 | nextSubstep($substep); |
| 2845 | 3002 | |
| 2846 | 3003 | // Just to make sure it doesn't time out. |
| 2847 | - if (function_exists('apache_reset_timeout')) |
|
| 2848 | - @apache_reset_timeout(); |
|
| 3004 | + if (function_exists('apache_reset_timeout')) { |
|
| 3005 | + @apache_reset_timeout(); |
|
| 3006 | + } |
|
| 2849 | 3007 | |
| 2850 | 3008 | $table_charsets = array(); |
| 2851 | 3009 | |
@@ -2868,8 +3026,9 @@ discard block |
||
| 2868 | 3026 | |
| 2869 | 3027 | // Build structure of columns to operate on organized by charset; only operate on columns not yet utf8 |
| 2870 | 3028 | if ($charset != 'utf8') { |
| 2871 | - if (!isset($table_charsets[$charset])) |
|
| 2872 | - $table_charsets[$charset] = array(); |
|
| 3029 | + if (!isset($table_charsets[$charset])) { |
|
| 3030 | + $table_charsets[$charset] = array(); |
|
| 3031 | + } |
|
| 2873 | 3032 | |
| 2874 | 3033 | $table_charsets[$charset][] = $column_info; |
| 2875 | 3034 | } |
@@ -2910,10 +3069,11 @@ discard block |
||
| 2910 | 3069 | if (isset($translation_tables[$upcontext['charset_detected']])) |
| 2911 | 3070 | { |
| 2912 | 3071 | $update = ''; |
| 2913 | - foreach ($table_charsets as $charset => $columns) |
|
| 2914 | - foreach ($columns as $column) |
|
| 3072 | + foreach ($table_charsets as $charset => $columns) { |
|
| 3073 | + foreach ($columns as $column) |
|
| 2915 | 3074 | $update .= ' |
| 2916 | 3075 | ' . $column['Field'] . ' = ' . strtr($replace, array('%field%' => $column['Field'])) . ','; |
| 3076 | + } |
|
| 2917 | 3077 | |
| 2918 | 3078 | $smcFunc['db_query']('', ' |
| 2919 | 3079 | UPDATE {raw:table_name} |
@@ -2938,8 +3098,9 @@ discard block |
||
| 2938 | 3098 | // Now do the actual conversion (if still needed). |
| 2939 | 3099 | if ($charsets[$upcontext['charset_detected']] !== 'utf8') |
| 2940 | 3100 | { |
| 2941 | - if ($command_line) |
|
| 2942 | - echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
| 3101 | + if ($command_line) { |
|
| 3102 | + echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
| 3103 | + } |
|
| 2943 | 3104 | |
| 2944 | 3105 | $smcFunc['db_query']('', ' |
| 2945 | 3106 | ALTER TABLE {raw:table_name} |
@@ -2949,12 +3110,14 @@ discard block |
||
| 2949 | 3110 | ) |
| 2950 | 3111 | ); |
| 2951 | 3112 | |
| 2952 | - if ($command_line) |
|
| 2953 | - echo " done.\n"; |
|
| 3113 | + if ($command_line) { |
|
| 3114 | + echo " done.\n"; |
|
| 3115 | + } |
|
| 2954 | 3116 | } |
| 2955 | 3117 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 2956 | - if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) |
|
| 2957 | - return upgradeExit(); |
|
| 3118 | + if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) { |
|
| 3119 | + return upgradeExit(); |
|
| 3120 | + } |
|
| 2958 | 3121 | } |
| 2959 | 3122 | |
| 2960 | 3123 | $prev_charset = empty($translation_tables[$upcontext['charset_detected']]) ? $charsets[$upcontext['charset_detected']] : $translation_tables[$upcontext['charset_detected']]; |
@@ -2983,8 +3146,8 @@ discard block |
||
| 2983 | 3146 | ); |
| 2984 | 3147 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 2985 | 3148 | { |
| 2986 | - if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) |
|
| 2987 | - $smcFunc['db_query']('', ' |
|
| 3149 | + if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) { |
|
| 3150 | + $smcFunc['db_query']('', ' |
|
| 2988 | 3151 | UPDATE {db_prefix}log_actions |
| 2989 | 3152 | SET extra = {string:extra} |
| 2990 | 3153 | WHERE id_action = {int:current_action}', |
@@ -2993,6 +3156,7 @@ discard block |
||
| 2993 | 3156 | 'extra' => $matches[1] . strlen($matches[3]) . ':"' . $matches[3] . '"' . $matches[4], |
| 2994 | 3157 | ) |
| 2995 | 3158 | ); |
| 3159 | + } |
|
| 2996 | 3160 | } |
| 2997 | 3161 | $smcFunc['db_free_result']($request); |
| 2998 | 3162 | |
@@ -3014,15 +3178,17 @@ discard block |
||
| 3014 | 3178 | // First thing's first - did we already do this? |
| 3015 | 3179 | if (!empty($modSettings['json_done'])) |
| 3016 | 3180 | { |
| 3017 | - if ($command_line) |
|
| 3018 | - return DeleteUpgrade(); |
|
| 3019 | - else |
|
| 3020 | - return true; |
|
| 3181 | + if ($command_line) { |
|
| 3182 | + return DeleteUpgrade(); |
|
| 3183 | + } else { |
|
| 3184 | + return true; |
|
| 3185 | + } |
|
| 3021 | 3186 | } |
| 3022 | 3187 | |
| 3023 | 3188 | // Done it already - js wise? |
| 3024 | - if (!empty($_POST['json_done'])) |
|
| 3025 | - return true; |
|
| 3189 | + if (!empty($_POST['json_done'])) { |
|
| 3190 | + return true; |
|
| 3191 | + } |
|
| 3026 | 3192 | |
| 3027 | 3193 | // List of tables affected by this function |
| 3028 | 3194 | // name => array('key', col1[,col2|true[,col3]]) |
@@ -3054,12 +3220,14 @@ discard block |
||
| 3054 | 3220 | $upcontext['cur_table_name'] = isset($keys[$_GET['substep']]) ? $keys[$_GET['substep']] : $keys[0]; |
| 3055 | 3221 | $upcontext['step_progress'] = (int) (($upcontext['cur_table_num'] / $upcontext['table_count']) * 100); |
| 3056 | 3222 | |
| 3057 | - foreach ($keys as $id => $table) |
|
| 3058 | - if ($id < $_GET['substep']) |
|
| 3223 | + foreach ($keys as $id => $table) { |
|
| 3224 | + if ($id < $_GET['substep']) |
|
| 3059 | 3225 | $upcontext['previous_tables'][] = $table; |
| 3226 | + } |
|
| 3060 | 3227 | |
| 3061 | - if ($command_line) |
|
| 3062 | - echo 'Converting data from serialize() to json_encode().'; |
|
| 3228 | + if ($command_line) { |
|
| 3229 | + echo 'Converting data from serialize() to json_encode().'; |
|
| 3230 | + } |
|
| 3063 | 3231 | |
| 3064 | 3232 | if (!$support_js || isset($_GET['xml'])) |
| 3065 | 3233 | { |
@@ -3099,8 +3267,9 @@ discard block |
||
| 3099 | 3267 | |
| 3100 | 3268 | // Loop through and fix these... |
| 3101 | 3269 | $new_settings = array(); |
| 3102 | - if ($command_line) |
|
| 3103 | - echo "\n" . 'Fixing some settings...'; |
|
| 3270 | + if ($command_line) { |
|
| 3271 | + echo "\n" . 'Fixing some settings...'; |
|
| 3272 | + } |
|
| 3104 | 3273 | |
| 3105 | 3274 | foreach ($serialized_settings as $var) |
| 3106 | 3275 | { |
@@ -3108,22 +3277,24 @@ discard block |
||
| 3108 | 3277 | { |
| 3109 | 3278 | // Attempt to unserialize the setting |
| 3110 | 3279 | $temp = @safe_unserialize($modSettings[$var]); |
| 3111 | - if (!$temp && $command_line) |
|
| 3112 | - echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
| 3113 | - elseif ($temp !== false) |
|
| 3114 | - $new_settings[$var] = json_encode($temp); |
|
| 3280 | + if (!$temp && $command_line) { |
|
| 3281 | + echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
| 3282 | + } elseif ($temp !== false) { |
|
| 3283 | + $new_settings[$var] = json_encode($temp); |
|
| 3284 | + } |
|
| 3115 | 3285 | } |
| 3116 | 3286 | } |
| 3117 | 3287 | |
| 3118 | 3288 | // Update everything at once |
| 3119 | - if (!function_exists('cache_put_data')) |
|
| 3120 | - require_once($sourcedir . '/Load.php'); |
|
| 3289 | + if (!function_exists('cache_put_data')) { |
|
| 3290 | + require_once($sourcedir . '/Load.php'); |
|
| 3291 | + } |
|
| 3121 | 3292 | updateSettings($new_settings, true); |
| 3122 | 3293 | |
| 3123 | - if ($command_line) |
|
| 3124 | - echo ' done.'; |
|
| 3125 | - } |
|
| 3126 | - elseif ($table == 'themes') |
|
| 3294 | + if ($command_line) { |
|
| 3295 | + echo ' done.'; |
|
| 3296 | + } |
|
| 3297 | + } elseif ($table == 'themes') |
|
| 3127 | 3298 | { |
| 3128 | 3299 | // Finally, fix the admin prefs. Unfortunately this is stored per theme, but hopefully they only have one theme installed at this point... |
| 3129 | 3300 | $query = $smcFunc['db_query']('', ' |
@@ -3142,10 +3313,11 @@ discard block |
||
| 3142 | 3313 | |
| 3143 | 3314 | if ($command_line) |
| 3144 | 3315 | { |
| 3145 | - if ($temp === false) |
|
| 3146 | - echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
| 3147 | - else |
|
| 3148 | - echo "\n" . 'Fixing admin preferences...'; |
|
| 3316 | + if ($temp === false) { |
|
| 3317 | + echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
| 3318 | + } else { |
|
| 3319 | + echo "\n" . 'Fixing admin preferences...'; |
|
| 3320 | + } |
|
| 3149 | 3321 | } |
| 3150 | 3322 | |
| 3151 | 3323 | if ($temp !== false) |
@@ -3167,15 +3339,15 @@ discard block |
||
| 3167 | 3339 | ) |
| 3168 | 3340 | ); |
| 3169 | 3341 | |
| 3170 | - if ($command_line) |
|
| 3171 | - echo ' done.'; |
|
| 3342 | + if ($command_line) { |
|
| 3343 | + echo ' done.'; |
|
| 3344 | + } |
|
| 3172 | 3345 | } |
| 3173 | 3346 | } |
| 3174 | 3347 | |
| 3175 | 3348 | $smcFunc['db_free_result']($query); |
| 3176 | 3349 | } |
| 3177 | - } |
|
| 3178 | - else |
|
| 3350 | + } else |
|
| 3179 | 3351 | { |
| 3180 | 3352 | // First item is always the key... |
| 3181 | 3353 | $key = $info[0]; |
@@ -3186,8 +3358,7 @@ discard block |
||
| 3186 | 3358 | { |
| 3187 | 3359 | $col_select = $info[1]; |
| 3188 | 3360 | $where = ' WHERE ' . $info[1] . ' != {empty}'; |
| 3189 | - } |
|
| 3190 | - else |
|
| 3361 | + } else |
|
| 3191 | 3362 | { |
| 3192 | 3363 | $col_select = implode(', ', $info); |
| 3193 | 3364 | } |
@@ -3220,8 +3391,7 @@ discard block |
||
| 3220 | 3391 | if ($temp === false && $command_line) |
| 3221 | 3392 | { |
| 3222 | 3393 | echo "\nFailed to unserialize " . $row[$col] . "... Skipping\n"; |
| 3223 | - } |
|
| 3224 | - else |
|
| 3394 | + } else |
|
| 3225 | 3395 | { |
| 3226 | 3396 | $row[$col] = json_encode($temp); |
| 3227 | 3397 | |
@@ -3246,16 +3416,18 @@ discard block |
||
| 3246 | 3416 | } |
| 3247 | 3417 | } |
| 3248 | 3418 | |
| 3249 | - if ($command_line) |
|
| 3250 | - echo ' done.'; |
|
| 3419 | + if ($command_line) { |
|
| 3420 | + echo ' done.'; |
|
| 3421 | + } |
|
| 3251 | 3422 | |
| 3252 | 3423 | // Free up some memory... |
| 3253 | 3424 | $smcFunc['db_free_result']($query); |
| 3254 | 3425 | } |
| 3255 | 3426 | } |
| 3256 | 3427 | // If this is XML to keep it nice for the user do one table at a time anyway! |
| 3257 | - if (isset($_GET['xml'])) |
|
| 3258 | - return upgradeExit(); |
|
| 3428 | + if (isset($_GET['xml'])) { |
|
| 3429 | + return upgradeExit(); |
|
| 3430 | + } |
|
| 3259 | 3431 | } |
| 3260 | 3432 | |
| 3261 | 3433 | if ($command_line) |
@@ -3270,8 +3442,9 @@ discard block |
||
| 3270 | 3442 | |
| 3271 | 3443 | $_GET['substep'] = 0; |
| 3272 | 3444 | // Make sure we move on! |
| 3273 | - if ($command_line) |
|
| 3274 | - return DeleteUpgrade(); |
|
| 3445 | + if ($command_line) { |
|
| 3446 | + return DeleteUpgrade(); |
|
| 3447 | + } |
|
| 3275 | 3448 | |
| 3276 | 3449 | return true; |
| 3277 | 3450 | } |
@@ -3291,14 +3464,16 @@ discard block |
||
| 3291 | 3464 | global $upcontext, $txt, $settings; |
| 3292 | 3465 | |
| 3293 | 3466 | // Don't call me twice! |
| 3294 | - if (!empty($upcontext['chmod_called'])) |
|
| 3295 | - return; |
|
| 3467 | + if (!empty($upcontext['chmod_called'])) { |
|
| 3468 | + return; |
|
| 3469 | + } |
|
| 3296 | 3470 | |
| 3297 | 3471 | $upcontext['chmod_called'] = true; |
| 3298 | 3472 | |
| 3299 | 3473 | // Nothing? |
| 3300 | - if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) |
|
| 3301 | - return; |
|
| 3474 | + if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) { |
|
| 3475 | + return; |
|
| 3476 | + } |
|
| 3302 | 3477 | |
| 3303 | 3478 | // Was it a problem with Windows? |
| 3304 | 3479 | if (!empty($upcontext['chmod']['ftp_error']) && $upcontext['chmod']['ftp_error'] == 'total_mess') |
@@ -3330,11 +3505,12 @@ discard block |
||
| 3330 | 3505 | content.write(\'<div class="windowbg description">\n\t\t\t<h4>', $txt['upgrade_ftp_files'], '</h4>\n\t\t\t\'); |
| 3331 | 3506 | content.write(\'<p>', implode('<br>\n\t\t\t', $upcontext['chmod']['files']), '</p>\n\t\t\t\');'; |
| 3332 | 3507 | |
| 3333 | - if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') |
|
| 3334 | - echo ' |
|
| 3508 | + if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') { |
|
| 3509 | + echo ' |
|
| 3335 | 3510 | content.write(\'<hr>\n\t\t\t\'); |
| 3336 | 3511 | content.write(\'<p>', $txt['upgrade_ftp_shell'], '</p>\n\t\t\t\'); |
| 3337 | 3512 | content.write(\'<tt># chmod a+w ', implode(' ', $upcontext['chmod']['files']), '</tt>\n\t\t\t\');'; |
| 3513 | + } |
|
| 3338 | 3514 | |
| 3339 | 3515 | echo ' |
| 3340 | 3516 | content.write(\'<a href="javascript:self.close();">close</a>\n\t\t</div>\n\t</body>\n</html>\'); |
@@ -3342,17 +3518,19 @@ discard block |
||
| 3342 | 3518 | } |
| 3343 | 3519 | </script>'; |
| 3344 | 3520 | |
| 3345 | - if (!empty($upcontext['chmod']['ftp_error'])) |
|
| 3346 | - echo ' |
|
| 3521 | + if (!empty($upcontext['chmod']['ftp_error'])) { |
|
| 3522 | + echo ' |
|
| 3347 | 3523 | <div class="error_message red"> |
| 3348 | 3524 | ', $txt['upgrade_ftp_error'], '<br><br> |
| 3349 | 3525 | <code>', $upcontext['chmod']['ftp_error'], '</code> |
| 3350 | 3526 | </div> |
| 3351 | 3527 | <br>'; |
| 3528 | + } |
|
| 3352 | 3529 | |
| 3353 | - if (empty($upcontext['chmod_in_form'])) |
|
| 3354 | - echo ' |
|
| 3530 | + if (empty($upcontext['chmod_in_form'])) { |
|
| 3531 | + echo ' |
|
| 3355 | 3532 | <form action="', $upcontext['form_url'], '" method="post">'; |
| 3533 | + } |
|
| 3356 | 3534 | |
| 3357 | 3535 | echo ' |
| 3358 | 3536 | <table width="520" border="0" align="center" style="margin-bottom: 1ex;"> |
@@ -3387,10 +3565,11 @@ discard block |
||
| 3387 | 3565 | <div class="righttext" style="margin: 1ex;"><input type="submit" value="', $txt['ftp_connect'], '" class="button"></div> |
| 3388 | 3566 | </div>'; |
| 3389 | 3567 | |
| 3390 | - if (empty($upcontext['chmod_in_form'])) |
|
| 3391 | - echo ' |
|
| 3568 | + if (empty($upcontext['chmod_in_form'])) { |
|
| 3569 | + echo ' |
|
| 3392 | 3570 | </form>'; |
| 3393 | -} |
|
| 3571 | + } |
|
| 3572 | + } |
|
| 3394 | 3573 | |
| 3395 | 3574 | function template_upgrade_above() |
| 3396 | 3575 | { |
@@ -3450,9 +3629,10 @@ discard block |
||
| 3450 | 3629 | <h2>', $txt['upgrade_progress'], '</h2> |
| 3451 | 3630 | <ul>'; |
| 3452 | 3631 | |
| 3453 | - foreach ($upcontext['steps'] as $num => $step) |
|
| 3454 | - echo ' |
|
| 3632 | + foreach ($upcontext['steps'] as $num => $step) { |
|
| 3633 | + echo ' |
|
| 3455 | 3634 | <li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>'; |
| 3635 | + } |
|
| 3456 | 3636 | |
| 3457 | 3637 | echo ' |
| 3458 | 3638 | </ul> |
@@ -3465,8 +3645,8 @@ discard block |
||
| 3465 | 3645 | </div> |
| 3466 | 3646 | </div>'; |
| 3467 | 3647 | |
| 3468 | - if (isset($upcontext['step_progress'])) |
|
| 3469 | - echo ' |
|
| 3648 | + if (isset($upcontext['step_progress'])) { |
|
| 3649 | + echo ' |
|
| 3470 | 3650 | <br> |
| 3471 | 3651 | <br> |
| 3472 | 3652 | <div id="progress_bar_step"> |
@@ -3475,6 +3655,7 @@ discard block |
||
| 3475 | 3655 | <span>', $txt['upgrade_step_progress'], '</span> |
| 3476 | 3656 | </div> |
| 3477 | 3657 | </div>'; |
| 3658 | + } |
|
| 3478 | 3659 | |
| 3479 | 3660 | echo ' |
| 3480 | 3661 | <div id="substep_bar_div" class="smalltext" style="float: left;width: 50%;margin-top: 0.6em;display: ', isset($upcontext['substep_progress']) ? '' : 'none', ';">', isset($upcontext['substep_progress_name']) ? trim(strtr($upcontext['substep_progress_name'], array('.' => ''))) : '', ':</div> |
@@ -3505,32 +3686,36 @@ discard block |
||
| 3505 | 3686 | { |
| 3506 | 3687 | global $upcontext, $txt; |
| 3507 | 3688 | |
| 3508 | - if (!empty($upcontext['pause'])) |
|
| 3509 | - echo ' |
|
| 3689 | + if (!empty($upcontext['pause'])) { |
|
| 3690 | + echo ' |
|
| 3510 | 3691 | <em>', $txt['upgrade_incomplete'], '.</em><br> |
| 3511 | 3692 | |
| 3512 | 3693 | <h2 style="margin-top: 2ex;">', $txt['upgrade_not_quite_done'], '</h2> |
| 3513 | 3694 | <h3> |
| 3514 | 3695 | ', $txt['upgrade_paused_overload'], ' |
| 3515 | 3696 | </h3>'; |
| 3697 | + } |
|
| 3516 | 3698 | |
| 3517 | - if (!empty($upcontext['custom_warning'])) |
|
| 3518 | - echo ' |
|
| 3699 | + if (!empty($upcontext['custom_warning'])) { |
|
| 3700 | + echo ' |
|
| 3519 | 3701 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3520 | 3702 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3521 | 3703 | <strong style="text-decoration: underline;">', $txt['upgrade_note'], '</strong><br> |
| 3522 | 3704 | <div style="padding-left: 6ex;">', $upcontext['custom_warning'], '</div> |
| 3523 | 3705 | </div>'; |
| 3706 | + } |
|
| 3524 | 3707 | |
| 3525 | 3708 | echo ' |
| 3526 | 3709 | <div class="righttext" style="margin: 1ex;">'; |
| 3527 | 3710 | |
| 3528 | - if (!empty($upcontext['continue'])) |
|
| 3529 | - echo ' |
|
| 3711 | + if (!empty($upcontext['continue'])) { |
|
| 3712 | + echo ' |
|
| 3530 | 3713 | <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '"', $upcontext['continue'] == 2 ? ' disabled' : '', ' class="button">'; |
| 3531 | - if (!empty($upcontext['skip'])) |
|
| 3532 | - echo ' |
|
| 3714 | + } |
|
| 3715 | + if (!empty($upcontext['skip'])) { |
|
| 3716 | + echo ' |
|
| 3533 | 3717 | <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="dontSubmit = true; document.getElementById(\'contbutt\').disabled = \'disabled\'; return true;" class="button">'; |
| 3718 | + } |
|
| 3534 | 3719 | |
| 3535 | 3720 | echo ' |
| 3536 | 3721 | </div> |
@@ -3580,11 +3765,12 @@ discard block |
||
| 3580 | 3765 | echo '<', '?xml version="1.0" encoding="UTF-8"?', '> |
| 3581 | 3766 | <smf>'; |
| 3582 | 3767 | |
| 3583 | - if (!empty($upcontext['get_data'])) |
|
| 3584 | - foreach ($upcontext['get_data'] as $k => $v) |
|
| 3768 | + if (!empty($upcontext['get_data'])) { |
|
| 3769 | + foreach ($upcontext['get_data'] as $k => $v) |
|
| 3585 | 3770 | echo ' |
| 3586 | 3771 | <get key="', $k, '">', $v, '</get>'; |
| 3587 | -} |
|
| 3772 | + } |
|
| 3773 | + } |
|
| 3588 | 3774 | |
| 3589 | 3775 | function template_xml_below() |
| 3590 | 3776 | { |
@@ -3625,8 +3811,8 @@ discard block |
||
| 3625 | 3811 | template_chmod(); |
| 3626 | 3812 | |
| 3627 | 3813 | // For large, pre 1.1 RC2 forums give them a warning about the possible impact of this upgrade! |
| 3628 | - if ($upcontext['is_large_forum']) |
|
| 3629 | - echo ' |
|
| 3814 | + if ($upcontext['is_large_forum']) { |
|
| 3815 | + echo ' |
|
| 3630 | 3816 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3631 | 3817 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3632 | 3818 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3634,10 +3820,11 @@ discard block |
||
| 3634 | 3820 | ', $txt['upgrade_warning_lots_data'], ' |
| 3635 | 3821 | </div> |
| 3636 | 3822 | </div>'; |
| 3823 | + } |
|
| 3637 | 3824 | |
| 3638 | 3825 | // A warning message? |
| 3639 | - if (!empty($upcontext['warning'])) |
|
| 3640 | - echo ' |
|
| 3826 | + if (!empty($upcontext['warning'])) { |
|
| 3827 | + echo ' |
|
| 3641 | 3828 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3642 | 3829 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3643 | 3830 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3645,6 +3832,7 @@ discard block |
||
| 3645 | 3832 | ', $upcontext['warning'], ' |
| 3646 | 3833 | </div> |
| 3647 | 3834 | </div>'; |
| 3835 | + } |
|
| 3648 | 3836 | |
| 3649 | 3837 | // Paths are incorrect? |
| 3650 | 3838 | echo ' |
@@ -3660,20 +3848,22 @@ discard block |
||
| 3660 | 3848 | if (!empty($upcontext['user']['id']) && (time() - $upcontext['started'] < 72600 || time() - $upcontext['updated'] < 3600)) |
| 3661 | 3849 | { |
| 3662 | 3850 | $ago = time() - $upcontext['started']; |
| 3663 | - if ($ago < 60) |
|
| 3664 | - $ago = $ago . ' seconds'; |
|
| 3665 | - elseif ($ago < 3600) |
|
| 3666 | - $ago = (int) ($ago / 60) . ' minutes'; |
|
| 3667 | - else |
|
| 3668 | - $ago = (int) ($ago / 3600) . ' hours'; |
|
| 3851 | + if ($ago < 60) { |
|
| 3852 | + $ago = $ago . ' seconds'; |
|
| 3853 | + } elseif ($ago < 3600) { |
|
| 3854 | + $ago = (int) ($ago / 60) . ' minutes'; |
|
| 3855 | + } else { |
|
| 3856 | + $ago = (int) ($ago / 3600) . ' hours'; |
|
| 3857 | + } |
|
| 3669 | 3858 | |
| 3670 | 3859 | $active = time() - $upcontext['updated']; |
| 3671 | - if ($active < 60) |
|
| 3672 | - $updated = $active . ' seconds'; |
|
| 3673 | - elseif ($active < 3600) |
|
| 3674 | - $updated = (int) ($active / 60) . ' minutes'; |
|
| 3675 | - else |
|
| 3676 | - $updated = (int) ($active / 3600) . ' hours'; |
|
| 3860 | + if ($active < 60) { |
|
| 3861 | + $updated = $active . ' seconds'; |
|
| 3862 | + } elseif ($active < 3600) { |
|
| 3863 | + $updated = (int) ($active / 60) . ' minutes'; |
|
| 3864 | + } else { |
|
| 3865 | + $updated = (int) ($active / 3600) . ' hours'; |
|
| 3866 | + } |
|
| 3677 | 3867 | |
| 3678 | 3868 | echo ' |
| 3679 | 3869 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
@@ -3682,16 +3872,18 @@ discard block |
||
| 3682 | 3872 | <div style="padding-left: 6ex;"> |
| 3683 | 3873 | "', $upcontext['user']['name'], '" has been running the upgrade script for the last ', $ago, ' - and was last active ', $updated, ' ago.'; |
| 3684 | 3874 | |
| 3685 | - if ($active < 600) |
|
| 3686 | - echo ' |
|
| 3875 | + if ($active < 600) { |
|
| 3876 | + echo ' |
|
| 3687 | 3877 | ', $txt['upgrade_run_script'], ' ', $upcontext['user']['name'],' ', $txt['upgrade_run_script2'], ''; |
| 3878 | + } |
|
| 3688 | 3879 | |
| 3689 | - if ($active > $upcontext['inactive_timeout']) |
|
| 3690 | - echo ' |
|
| 3880 | + if ($active > $upcontext['inactive_timeout']) { |
|
| 3881 | + echo ' |
|
| 3691 | 3882 | <br><br>',$txt['upgrade_run'], ''; |
| 3692 | - else |
|
| 3693 | - echo ' |
|
| 3883 | + } else { |
|
| 3884 | + echo ' |
|
| 3694 | 3885 | <br><br>', $txt['upgrade_script_timeout'], ' ', $upcontext['user']['name'], ' ', $txt['upgrade_script_timeout2'], ' ', ($upcontext['inactive_timeout'] > 120 ? round($upcontext['inactive_timeout'] / 60, 1) . ' minutes!' : $upcontext['inactive_timeout'] . ' seconds!'); |
| 3886 | + } |
|
| 3695 | 3887 | |
| 3696 | 3888 | echo ' |
| 3697 | 3889 | </div> |
@@ -3707,9 +3899,10 @@ discard block |
||
| 3707 | 3899 | <td> |
| 3708 | 3900 | <input type="text" name="user" value="', !empty($upcontext['username']) ? $upcontext['username'] : '', '"', $disable_security ? ' disabled' : '', '>'; |
| 3709 | 3901 | |
| 3710 | - if (!empty($upcontext['username_incorrect'])) |
|
| 3711 | - echo ' |
|
| 3902 | + if (!empty($upcontext['username_incorrect'])) { |
|
| 3903 | + echo ' |
|
| 3712 | 3904 | <div class="smalltext" style="color: red;">', $txt['upgrade_wrong_username'], '</div>'; |
| 3905 | + } |
|
| 3713 | 3906 | |
| 3714 | 3907 | echo ' |
| 3715 | 3908 | </td> |
@@ -3720,9 +3913,10 @@ discard block |
||
| 3720 | 3913 | <input type="password" name="passwrd" value=""', $disable_security ? ' disabled' : '', '> |
| 3721 | 3914 | <input type="hidden" name="hash_passwrd" value="">'; |
| 3722 | 3915 | |
| 3723 | - if (!empty($upcontext['password_failed'])) |
|
| 3724 | - echo ' |
|
| 3916 | + if (!empty($upcontext['password_failed'])) { |
|
| 3917 | + echo ' |
|
| 3725 | 3918 | <div class="smalltext" style="color: red;">', $txt['upgrade_wrong_password'], '</div>'; |
| 3919 | + } |
|
| 3726 | 3920 | |
| 3727 | 3921 | echo ' |
| 3728 | 3922 | </td> |
@@ -3793,8 +3987,8 @@ discard block |
||
| 3793 | 3987 | <form action="', $upcontext['form_url'], '" method="post" name="upform" id="upform">'; |
| 3794 | 3988 | |
| 3795 | 3989 | // Warning message? |
| 3796 | - if (!empty($upcontext['upgrade_options_warning'])) |
|
| 3797 | - echo ' |
|
| 3990 | + if (!empty($upcontext['upgrade_options_warning'])) { |
|
| 3991 | + echo ' |
|
| 3798 | 3992 | <div style="margin: 1ex; padding: 1ex; border: 1px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
| 3799 | 3993 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
| 3800 | 3994 | <strong style="text-decoration: underline;">Warning!</strong><br> |
@@ -3802,6 +3996,7 @@ discard block |
||
| 3802 | 3996 | ', $upcontext['upgrade_options_warning'], ' |
| 3803 | 3997 | </div> |
| 3804 | 3998 | </div>'; |
| 3999 | + } |
|
| 3805 | 4000 | |
| 3806 | 4001 | echo ' |
| 3807 | 4002 | <table> |
@@ -3844,8 +4039,8 @@ discard block |
||
| 3844 | 4039 | </td> |
| 3845 | 4040 | </tr>'; |
| 3846 | 4041 | |
| 3847 | - if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) |
|
| 3848 | - echo ' |
|
| 4042 | + if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) { |
|
| 4043 | + echo ' |
|
| 3849 | 4044 | <tr valign="top"> |
| 3850 | 4045 | <td width="2%"> |
| 3851 | 4046 | <input type="checkbox" name="delete_karma" id="delete_karma" value="1"> |
@@ -3854,6 +4049,7 @@ discard block |
||
| 3854 | 4049 | <label for="delete_karma">', $txt['upgrade_delete_karma'], '</label> |
| 3855 | 4050 | </td> |
| 3856 | 4051 | </tr>'; |
| 4052 | + } |
|
| 3857 | 4053 | |
| 3858 | 4054 | echo ' |
| 3859 | 4055 | <tr valign="top"> |
@@ -3891,10 +4087,11 @@ discard block |
||
| 3891 | 4087 | </div>'; |
| 3892 | 4088 | |
| 3893 | 4089 | // Dont any tables so far? |
| 3894 | - if (!empty($upcontext['previous_tables'])) |
|
| 3895 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4090 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4091 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 3896 | 4092 | echo ' |
| 3897 | 4093 | <br>', $txt['upgrade_completed_table'], ' "', $table, '".'; |
| 4094 | + } |
|
| 3898 | 4095 | |
| 3899 | 4096 | echo ' |
| 3900 | 4097 | <h3 id="current_tab_div">', $txt['upgrade_current_table'], ' "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
@@ -3931,12 +4128,13 @@ discard block |
||
| 3931 | 4128 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 3932 | 4129 | |
| 3933 | 4130 | // If debug flood the screen. |
| 3934 | - if ($is_debug) |
|
| 3935 | - echo ' |
|
| 4131 | + if ($is_debug) { |
|
| 4132 | + echo ' |
|
| 3936 | 4133 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 3937 | 4134 | |
| 3938 | 4135 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 3939 | 4136 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4137 | + } |
|
| 3940 | 4138 | |
| 3941 | 4139 | echo ' |
| 3942 | 4140 | // Get the next update... |
@@ -3969,8 +4167,9 @@ discard block |
||
| 3969 | 4167 | { |
| 3970 | 4168 | global $upcontext, $support_js, $is_debug, $timeLimitThreshold, $txt; |
| 3971 | 4169 | |
| 3972 | - if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) |
|
| 3973 | - $is_debug = true; |
|
| 4170 | + if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) { |
|
| 4171 | + $is_debug = true; |
|
| 4172 | + } |
|
| 3974 | 4173 | |
| 3975 | 4174 | echo ' |
| 3976 | 4175 | <h3>', $txt['upgrade_db_changes'], '</h3> |
@@ -3985,8 +4184,9 @@ discard block |
||
| 3985 | 4184 | { |
| 3986 | 4185 | foreach ($upcontext['actioned_items'] as $num => $item) |
| 3987 | 4186 | { |
| 3988 | - if ($num != 0) |
|
| 3989 | - echo ' Successful!'; |
|
| 4187 | + if ($num != 0) { |
|
| 4188 | + echo ' Successful!'; |
|
| 4189 | + } |
|
| 3990 | 4190 | echo '<br>' . $item; |
| 3991 | 4191 | } |
| 3992 | 4192 | if (!empty($upcontext['changes_complete'])) |
@@ -3999,28 +4199,32 @@ discard block |
||
| 3999 | 4199 | $seconds = intval($active % 60); |
| 4000 | 4200 | |
| 4001 | 4201 | $totalTime = ''; |
| 4002 | - if ($hours > 0) |
|
| 4003 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4004 | - if ($minutes > 0) |
|
| 4005 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4006 | - if ($seconds > 0) |
|
| 4007 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4202 | + if ($hours > 0) { |
|
| 4203 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4204 | + } |
|
| 4205 | + if ($minutes > 0) { |
|
| 4206 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4207 | + } |
|
| 4208 | + if ($seconds > 0) { |
|
| 4209 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4210 | + } |
|
| 4008 | 4211 | } |
| 4009 | 4212 | |
| 4010 | - if ($is_debug && !empty($totalTime)) |
|
| 4011 | - echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
| 4012 | - else |
|
| 4013 | - echo ' Successful!<br><br>'; |
|
| 4213 | + if ($is_debug && !empty($totalTime)) { |
|
| 4214 | + echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
| 4215 | + } else { |
|
| 4216 | + echo ' Successful!<br><br>'; |
|
| 4217 | + } |
|
| 4014 | 4218 | |
| 4015 | 4219 | echo '<span id="commess" style="font-weight: bold;">', $txt['upgrade_db_complete'], '</span><br>'; |
| 4016 | 4220 | } |
| 4017 | - } |
|
| 4018 | - else |
|
| 4221 | + } else |
|
| 4019 | 4222 | { |
| 4020 | 4223 | // Tell them how many files we have in total. |
| 4021 | - if ($upcontext['file_count'] > 1) |
|
| 4022 | - echo ' |
|
| 4224 | + if ($upcontext['file_count'] > 1) { |
|
| 4225 | + echo ' |
|
| 4023 | 4226 | <strong id="info1">', $txt['upgrade_script'], ' <span id="file_done">', $upcontext['cur_file_num'], '</span> of ', $upcontext['file_count'], '.</strong>'; |
| 4227 | + } |
|
| 4024 | 4228 | |
| 4025 | 4229 | echo ' |
| 4026 | 4230 | <h3 id="info2"><strong>', $txt['upgrade_executing'], '</strong> "<span id="cur_item_name">', $upcontext['current_item_name'], '</span>" (<span id="item_num">', $upcontext['current_item_num'], '</span> ', $txt['upgrade_of'], ' <span id="total_items"><span id="item_count">', $upcontext['total_items'], '</span>', $upcontext['file_count'] > 1 ? ' - of this script' : '', ')</span></h3> |
@@ -4036,19 +4240,23 @@ discard block |
||
| 4036 | 4240 | $seconds = intval($active % 60); |
| 4037 | 4241 | |
| 4038 | 4242 | $totalTime = ''; |
| 4039 | - if ($hours > 0) |
|
| 4040 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4041 | - if ($minutes > 0) |
|
| 4042 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4043 | - if ($seconds > 0) |
|
| 4044 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4243 | + if ($hours > 0) { |
|
| 4244 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4245 | + } |
|
| 4246 | + if ($minutes > 0) { |
|
| 4247 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4248 | + } |
|
| 4249 | + if ($seconds > 0) { |
|
| 4250 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4251 | + } |
|
| 4045 | 4252 | } |
| 4046 | 4253 | |
| 4047 | 4254 | echo ' |
| 4048 | 4255 | <br><span id="upgradeCompleted">'; |
| 4049 | 4256 | |
| 4050 | - if (!empty($totalTime)) |
|
| 4051 | - echo 'Completed in ', $totalTime, '<br>'; |
|
| 4257 | + if (!empty($totalTime)) { |
|
| 4258 | + echo 'Completed in ', $totalTime, '<br>'; |
|
| 4259 | + } |
|
| 4052 | 4260 | |
| 4053 | 4261 | echo '</span> |
| 4054 | 4262 | <div id="debug_section" style="height: 59px; overflow: auto;"> |
@@ -4085,9 +4293,10 @@ discard block |
||
| 4085 | 4293 | var getData = ""; |
| 4086 | 4294 | var debugItems = ', $upcontext['debug_items'], ';'; |
| 4087 | 4295 | |
| 4088 | - if ($is_debug) |
|
| 4089 | - echo ' |
|
| 4296 | + if ($is_debug) { |
|
| 4297 | + echo ' |
|
| 4090 | 4298 | var upgradeStartTime = ' . $upcontext['started'] . ';'; |
| 4299 | + } |
|
| 4091 | 4300 | |
| 4092 | 4301 | echo ' |
| 4093 | 4302 | function getNextItem() |
@@ -4127,9 +4336,10 @@ discard block |
||
| 4127 | 4336 | document.getElementById("error_block").style.display = ""; |
| 4128 | 4337 | setInnerHTML(document.getElementById("error_message"), "Error retrieving information on step: " + (sDebugName == "" ? sLastString : sDebugName));'; |
| 4129 | 4338 | |
| 4130 | - if ($is_debug) |
|
| 4131 | - echo ' |
|
| 4339 | + if ($is_debug) { |
|
| 4340 | + echo ' |
|
| 4132 | 4341 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
| 4342 | + } |
|
| 4133 | 4343 | |
| 4134 | 4344 | echo ' |
| 4135 | 4345 | } |
@@ -4150,9 +4360,10 @@ discard block |
||
| 4150 | 4360 | document.getElementById("error_block").style.display = ""; |
| 4151 | 4361 | setInnerHTML(document.getElementById("error_message"), "Upgrade script appears to be going into a loop - step: " + sDebugName);'; |
| 4152 | 4362 | |
| 4153 | - if ($is_debug) |
|
| 4154 | - echo ' |
|
| 4363 | + if ($is_debug) { |
|
| 4364 | + echo ' |
|
| 4155 | 4365 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
| 4366 | + } |
|
| 4156 | 4367 | |
| 4157 | 4368 | echo ' |
| 4158 | 4369 | } |
@@ -4211,8 +4422,8 @@ discard block |
||
| 4211 | 4422 | if (bIsComplete && iDebugNum == -1 && curFile >= ', $upcontext['file_count'], ') |
| 4212 | 4423 | {'; |
| 4213 | 4424 | |
| 4214 | - if ($is_debug) |
|
| 4215 | - echo ' |
|
| 4425 | + if ($is_debug) { |
|
| 4426 | + echo ' |
|
| 4216 | 4427 | document.getElementById(\'debug_section\').style.display = "none"; |
| 4217 | 4428 | |
| 4218 | 4429 | var upgradeFinishedTime = parseInt(oXMLDoc.getElementsByTagName("curtime")[0].childNodes[0].nodeValue); |
@@ -4230,6 +4441,7 @@ discard block |
||
| 4230 | 4441 | totalTime = totalTime + diffSeconds + " second" + (diffSeconds > 1 ? "s" : ""); |
| 4231 | 4442 | |
| 4232 | 4443 | setInnerHTML(document.getElementById("upgradeCompleted"), "Completed in " + totalTime);'; |
| 4444 | + } |
|
| 4233 | 4445 | |
| 4234 | 4446 | echo ' |
| 4235 | 4447 | |
@@ -4237,9 +4449,10 @@ discard block |
||
| 4237 | 4449 | document.getElementById(\'contbutt\').disabled = 0; |
| 4238 | 4450 | document.getElementById(\'database_done\').value = 1;'; |
| 4239 | 4451 | |
| 4240 | - if ($upcontext['file_count'] > 1) |
|
| 4241 | - echo ' |
|
| 4452 | + if ($upcontext['file_count'] > 1) { |
|
| 4453 | + echo ' |
|
| 4242 | 4454 | document.getElementById(\'info1\').style.display = "none";'; |
| 4455 | + } |
|
| 4243 | 4456 | |
| 4244 | 4457 | echo ' |
| 4245 | 4458 | document.getElementById(\'info2\').style.display = "none"; |
@@ -4252,9 +4465,10 @@ discard block |
||
| 4252 | 4465 | lastItem = 0; |
| 4253 | 4466 | prevFile = curFile;'; |
| 4254 | 4467 | |
| 4255 | - if ($is_debug) |
|
| 4256 | - echo ' |
|
| 4468 | + if ($is_debug) { |
|
| 4469 | + echo ' |
|
| 4257 | 4470 | setOuterHTML(document.getElementById(\'debuginfo\'), \'Moving to next script file...done<br><span id="debuginfo"><\' + \'/span>\');'; |
| 4471 | + } |
|
| 4258 | 4472 | |
| 4259 | 4473 | echo ' |
| 4260 | 4474 | getNextItem(); |
@@ -4262,8 +4476,8 @@ discard block |
||
| 4262 | 4476 | }'; |
| 4263 | 4477 | |
| 4264 | 4478 | // If debug scroll the screen. |
| 4265 | - if ($is_debug) |
|
| 4266 | - echo ' |
|
| 4479 | + if ($is_debug) { |
|
| 4480 | + echo ' |
|
| 4267 | 4481 | if (iLastSubStepProgress == -1) |
| 4268 | 4482 | { |
| 4269 | 4483 | // Give it consistent dots. |
@@ -4282,6 +4496,7 @@ discard block |
||
| 4282 | 4496 | |
| 4283 | 4497 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4284 | 4498 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4499 | + } |
|
| 4285 | 4500 | |
| 4286 | 4501 | echo ' |
| 4287 | 4502 | // Update the page. |
@@ -4342,9 +4557,10 @@ discard block |
||
| 4342 | 4557 | }'; |
| 4343 | 4558 | |
| 4344 | 4559 | // Start things off assuming we've not errored. |
| 4345 | - if (empty($upcontext['error_message'])) |
|
| 4346 | - echo ' |
|
| 4560 | + if (empty($upcontext['error_message'])) { |
|
| 4561 | + echo ' |
|
| 4347 | 4562 | getNextItem();'; |
| 4563 | + } |
|
| 4348 | 4564 | |
| 4349 | 4565 | echo ' |
| 4350 | 4566 | //# sourceURL=dynamicScript-dbch.js |
@@ -4362,18 +4578,21 @@ discard block |
||
| 4362 | 4578 | <item num="', $upcontext['current_item_num'], '">', $upcontext['current_item_name'], '</item> |
| 4363 | 4579 | <debug num="', $upcontext['current_debug_item_num'], '" percent="', isset($upcontext['substep_progress']) ? $upcontext['substep_progress'] : '-1', '" complete="', empty($upcontext['completed_step']) ? 0 : 1, '">', $upcontext['current_debug_item_name'], '</debug>'; |
| 4364 | 4580 | |
| 4365 | - if (!empty($upcontext['error_message'])) |
|
| 4366 | - echo ' |
|
| 4581 | + if (!empty($upcontext['error_message'])) { |
|
| 4582 | + echo ' |
|
| 4367 | 4583 | <error>', $upcontext['error_message'], '</error>'; |
| 4584 | + } |
|
| 4368 | 4585 | |
| 4369 | - if (!empty($upcontext['error_string'])) |
|
| 4370 | - echo ' |
|
| 4586 | + if (!empty($upcontext['error_string'])) { |
|
| 4587 | + echo ' |
|
| 4371 | 4588 | <sql>', $upcontext['error_string'], '</sql>'; |
| 4589 | + } |
|
| 4372 | 4590 | |
| 4373 | - if ($is_debug) |
|
| 4374 | - echo ' |
|
| 4591 | + if ($is_debug) { |
|
| 4592 | + echo ' |
|
| 4375 | 4593 | <curtime>', time(), '</curtime>'; |
| 4376 | -} |
|
| 4594 | + } |
|
| 4595 | + } |
|
| 4377 | 4596 | |
| 4378 | 4597 | // Template for the UTF-8 conversion step. Basically a copy of the backup stuff with slight modifications.... |
| 4379 | 4598 | function template_convert_utf8() |
@@ -4392,18 +4611,20 @@ discard block |
||
| 4392 | 4611 | </div>'; |
| 4393 | 4612 | |
| 4394 | 4613 | // Done any tables so far? |
| 4395 | - if (!empty($upcontext['previous_tables'])) |
|
| 4396 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4614 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4615 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 4397 | 4616 | echo ' |
| 4398 | 4617 | <br>', $txt['upgrade_completed_table'], ' "', $table, '".'; |
| 4618 | + } |
|
| 4399 | 4619 | |
| 4400 | 4620 | echo ' |
| 4401 | 4621 | <h3 id="current_tab_div">', $txt['upgrade_current_table'], ' "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3>'; |
| 4402 | 4622 | |
| 4403 | 4623 | // If we dropped their index, let's let them know |
| 4404 | - if ($upcontext['dropping_index']) |
|
| 4405 | - echo ' |
|
| 4624 | + if ($upcontext['dropping_index']) { |
|
| 4625 | + echo ' |
|
| 4406 | 4626 | <br><span id="indexmsg" style="font-weight: bold; font-style: italic; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">', $txt['upgrade_fulltext'], '</span>'; |
| 4627 | + } |
|
| 4407 | 4628 | |
| 4408 | 4629 | // Completion notification |
| 4409 | 4630 | echo ' |
@@ -4440,12 +4661,13 @@ discard block |
||
| 4440 | 4661 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4441 | 4662 | |
| 4442 | 4663 | // If debug flood the screen. |
| 4443 | - if ($is_debug) |
|
| 4444 | - echo ' |
|
| 4664 | + if ($is_debug) { |
|
| 4665 | + echo ' |
|
| 4445 | 4666 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4446 | 4667 | |
| 4447 | 4668 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4448 | 4669 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4670 | + } |
|
| 4449 | 4671 | |
| 4450 | 4672 | echo ' |
| 4451 | 4673 | // Get the next update... |
@@ -4493,19 +4715,21 @@ discard block |
||
| 4493 | 4715 | </div>'; |
| 4494 | 4716 | |
| 4495 | 4717 | // Dont any tables so far? |
| 4496 | - if (!empty($upcontext['previous_tables'])) |
|
| 4497 | - foreach ($upcontext['previous_tables'] as $table) |
|
| 4718 | + if (!empty($upcontext['previous_tables'])) { |
|
| 4719 | + foreach ($upcontext['previous_tables'] as $table) |
|
| 4498 | 4720 | echo ' |
| 4499 | 4721 | <br>', $txt['upgrade_completed_table'], ' "', $table, '".'; |
| 4722 | + } |
|
| 4500 | 4723 | |
| 4501 | 4724 | echo ' |
| 4502 | 4725 | <h3 id="current_tab_div">', $txt['upgrade_current_table'], ' "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
| 4503 | 4726 | <br><span id="commess" style="font-weight: bold; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">', $txt['upgrade_json_completed'], '</span>'; |
| 4504 | 4727 | |
| 4505 | 4728 | // Try to make sure substep was reset. |
| 4506 | - if ($upcontext['cur_table_num'] == $upcontext['table_count']) |
|
| 4507 | - echo ' |
|
| 4729 | + if ($upcontext['cur_table_num'] == $upcontext['table_count']) { |
|
| 4730 | + echo ' |
|
| 4508 | 4731 | <input type="hidden" name="substep" id="substep" value="0">'; |
| 4732 | + } |
|
| 4509 | 4733 | |
| 4510 | 4734 | // Continue please! |
| 4511 | 4735 | $upcontext['continue'] = $support_js ? 2 : 1; |
@@ -4538,12 +4762,13 @@ discard block |
||
| 4538 | 4762 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
| 4539 | 4763 | |
| 4540 | 4764 | // If debug flood the screen. |
| 4541 | - if ($is_debug) |
|
| 4542 | - echo ' |
|
| 4765 | + if ($is_debug) { |
|
| 4766 | + echo ' |
|
| 4543 | 4767 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>', $txt['upgrade_completed_table'], ' "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
| 4544 | 4768 | |
| 4545 | 4769 | if (document.getElementById(\'debug_section\').scrollHeight) |
| 4546 | 4770 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
| 4771 | + } |
|
| 4547 | 4772 | |
| 4548 | 4773 | echo ' |
| 4549 | 4774 | // Get the next update... |
@@ -4579,8 +4804,8 @@ discard block |
||
| 4579 | 4804 | <h3>', $txt['upgrade_done'], ' <a href="', $boardurl, '/index.php">', $txt['upgrade_done2'], '</a>. ', $txt['upgrade_done3'], '</h3> |
| 4580 | 4805 | <form action="', $boardurl, '/index.php">'; |
| 4581 | 4806 | |
| 4582 | - if (!empty($upcontext['can_delete_script'])) |
|
| 4583 | - echo ' |
|
| 4807 | + if (!empty($upcontext['can_delete_script'])) { |
|
| 4808 | + echo ' |
|
| 4584 | 4809 | <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete(this);"> ', $txt['upgrade_delete_now'], '</label> ', $txt['upgrade_delete_server'], ' |
| 4585 | 4810 | <script> |
| 4586 | 4811 | function doTheDelete(theCheck) |
@@ -4592,6 +4817,7 @@ discard block |
||
| 4592 | 4817 | } |
| 4593 | 4818 | </script> |
| 4594 | 4819 | <img src="', $settings['default_theme_url'], '/images/blank.png" alt="" id="delete_upgrader"><br>'; |
| 4820 | + } |
|
| 4595 | 4821 | |
| 4596 | 4822 | $active = time() - $upcontext['started']; |
| 4597 | 4823 | $hours = floor($active / 3600); |
@@ -4601,16 +4827,20 @@ discard block |
||
| 4601 | 4827 | if ($is_debug) |
| 4602 | 4828 | { |
| 4603 | 4829 | $totalTime = ''; |
| 4604 | - if ($hours > 0) |
|
| 4605 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4606 | - if ($minutes > 0) |
|
| 4607 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4608 | - if ($seconds > 0) |
|
| 4609 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4830 | + if ($hours > 0) { |
|
| 4831 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
| 4832 | + } |
|
| 4833 | + if ($minutes > 0) { |
|
| 4834 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
| 4835 | + } |
|
| 4836 | + if ($seconds > 0) { |
|
| 4837 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
| 4838 | + } |
|
| 4610 | 4839 | } |
| 4611 | 4840 | |
| 4612 | - if ($is_debug && !empty($totalTime)) |
|
| 4613 | - echo '<br> ', $txt['upgrade_completed_time'], ' ', $totalTime, '<br><br>'; |
|
| 4841 | + if ($is_debug && !empty($totalTime)) { |
|
| 4842 | + echo '<br> ', $txt['upgrade_completed_time'], ' ', $totalTime, '<br><br>'; |
|
| 4843 | + } |
|
| 4614 | 4844 | |
| 4615 | 4845 | echo '<br> |
| 4616 | 4846 | ', $txt['upgrade_problems'], '<br> |
@@ -4637,8 +4867,9 @@ discard block |
||
| 4637 | 4867 | |
| 4638 | 4868 | $current_substep = $_GET['substep']; |
| 4639 | 4869 | |
| 4640 | - if (empty($_GET['a'])) |
|
| 4641 | - $_GET['a'] = 0; |
|
| 4870 | + if (empty($_GET['a'])) { |
|
| 4871 | + $_GET['a'] = 0; |
|
| 4872 | + } |
|
| 4642 | 4873 | $step_progress['name'] = 'Converting ips'; |
| 4643 | 4874 | $step_progress['current'] = $_GET['a']; |
| 4644 | 4875 | |
@@ -4681,16 +4912,19 @@ discard block |
||
| 4681 | 4912 | 'empty' => '', |
| 4682 | 4913 | 'limit' => $limit, |
| 4683 | 4914 | )); |
| 4684 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 4685 | - $arIp[] = $row[$oldCol]; |
|
| 4915 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 4916 | + $arIp[] = $row[$oldCol]; |
|
| 4917 | + } |
|
| 4686 | 4918 | $smcFunc['db_free_result']($request); |
| 4687 | 4919 | |
| 4688 | 4920 | // Special case, null ip could keep us in a loop. |
| 4689 | - if (is_null($arIp[0])) |
|
| 4690 | - unset($arIp[0]); |
|
| 4921 | + if (is_null($arIp[0])) { |
|
| 4922 | + unset($arIp[0]); |
|
| 4923 | + } |
|
| 4691 | 4924 | |
| 4692 | - if (empty($arIp)) |
|
| 4693 | - $is_done = true; |
|
| 4925 | + if (empty($arIp)) { |
|
| 4926 | + $is_done = true; |
|
| 4927 | + } |
|
| 4694 | 4928 | |
| 4695 | 4929 | $updates = array(); |
| 4696 | 4930 | $cases = array(); |
@@ -4699,16 +4933,18 @@ discard block |
||
| 4699 | 4933 | { |
| 4700 | 4934 | $arIp[$i] = trim($arIp[$i]); |
| 4701 | 4935 | |
| 4702 | - if (empty($arIp[$i])) |
|
| 4703 | - continue; |
|
| 4936 | + if (empty($arIp[$i])) { |
|
| 4937 | + continue; |
|
| 4938 | + } |
|
| 4704 | 4939 | |
| 4705 | 4940 | $updates['ip' . $i] = $arIp[$i]; |
| 4706 | 4941 | $cases[$arIp[$i]] = 'WHEN ' . $oldCol . ' = {string:ip' . $i . '} THEN {inet:ip' . $i . '}'; |
| 4707 | 4942 | |
| 4708 | 4943 | if ($setSize > 0 && $i % $setSize === 0) |
| 4709 | 4944 | { |
| 4710 | - if (count($updates) == 1) |
|
| 4711 | - continue; |
|
| 4945 | + if (count($updates) == 1) { |
|
| 4946 | + continue; |
|
| 4947 | + } |
|
| 4712 | 4948 | |
| 4713 | 4949 | $updates['whereSet'] = array_values($updates); |
| 4714 | 4950 | $smcFunc['db_query']('', ' |
@@ -4742,8 +4978,7 @@ discard block |
||
| 4742 | 4978 | 'ip' => $ip |
| 4743 | 4979 | )); |
| 4744 | 4980 | } |
| 4745 | - } |
|
| 4746 | - else |
|
| 4981 | + } else |
|
| 4747 | 4982 | { |
| 4748 | 4983 | $updates['whereSet'] = array_values($updates); |
| 4749 | 4984 | $smcFunc['db_query']('', ' |
@@ -4757,9 +4992,9 @@ discard block |
||
| 4757 | 4992 | $updates |
| 4758 | 4993 | ); |
| 4759 | 4994 | } |
| 4995 | + } else { |
|
| 4996 | + $is_done = true; |
|
| 4760 | 4997 | } |
| 4761 | - else |
|
| 4762 | - $is_done = true; |
|
| 4763 | 4998 | |
| 4764 | 4999 | $_GET['a'] += $limit; |
| 4765 | 5000 | $step_progress['current'] = $_GET['a']; |
@@ -4785,10 +5020,11 @@ discard block |
||
| 4785 | 5020 | |
| 4786 | 5021 | $columns = $smcFunc['db_list_columns']($targetTable, true); |
| 4787 | 5022 | |
| 4788 | - if (isset($columns[$column])) |
|
| 4789 | - return $columns[$column]; |
|
| 4790 | - else |
|
| 4791 | - return null; |
|
| 4792 | -} |
|
| 5023 | + if (isset($columns[$column])) { |
|
| 5024 | + return $columns[$column]; |
|
| 5025 | + } else { |
|
| 5026 | + return null; |
|
| 5027 | + } |
|
| 5028 | + } |
|
| 4793 | 5029 | |
| 4794 | 5030 | ?> |
| 4795 | 5031 | \ No newline at end of file |
@@ -94,12 +94,12 @@ discard block |
||
| 94 | 94 | public $headers; |
| 95 | 95 | |
| 96 | 96 | /** |
| 97 | - * Start the curl object |
|
| 98 | - * - allow for user override values |
|
| 99 | - * |
|
| 100 | - * @param array $options An array of cURL options |
|
| 101 | - * @param int $max_redirect Maximum number of redirects |
|
| 102 | - */ |
|
| 97 | + * Start the curl object |
|
| 98 | + * - allow for user override values |
|
| 99 | + * |
|
| 100 | + * @param array $options An array of cURL options |
|
| 101 | + * @param int $max_redirect Maximum number of redirects |
|
| 102 | + */ |
|
| 103 | 103 | public function __construct($options = array(), $max_redirect = 3) |
| 104 | 104 | { |
| 105 | 105 | // Initialize class variables |
@@ -108,16 +108,16 @@ discard block |
||
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
| 111 | - * Main calling function, |
|
| 112 | - * - will request the page data from a given $url |
|
| 113 | - * - optionally will post data to the page form if post data is supplied |
|
| 114 | - * - passed arrays will be converted to a post string joined with &'s |
|
| 115 | - * - calls set_options to set the curl opts array values based on the defaults and user input |
|
| 116 | - * |
|
| 117 | - * @param string $url the site we are going to fetch |
|
| 118 | - * @param array $post_data any post data as form name => value |
|
| 119 | - * @return object An instance of the curl_fetch_web_data class |
|
| 120 | - */ |
|
| 111 | + * Main calling function, |
|
| 112 | + * - will request the page data from a given $url |
|
| 113 | + * - optionally will post data to the page form if post data is supplied |
|
| 114 | + * - passed arrays will be converted to a post string joined with &'s |
|
| 115 | + * - calls set_options to set the curl opts array values based on the defaults and user input |
|
| 116 | + * |
|
| 117 | + * @param string $url the site we are going to fetch |
|
| 118 | + * @param array $post_data any post data as form name => value |
|
| 119 | + * @return object An instance of the curl_fetch_web_data class |
|
| 120 | + */ |
|
| 121 | 121 | public function get_url_data($url, $post_data = array()) |
| 122 | 122 | { |
| 123 | 123 | // POSTing some data perhaps? |
@@ -134,14 +134,14 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | /** |
| 137 | - * Makes the actual cURL call |
|
| 138 | - * - stores responses (url, code, error, headers, body) in the response array |
|
| 139 | - * - detects 301, 302, 307 codes and will redirect to the given response header location |
|
| 140 | - * |
|
| 141 | - * @param string $url The site to fetch |
|
| 142 | - * @param bool $redirect Whether or not this was a redirect request |
|
| 143 | - * @return void|bool Sets various properties of the class or returns false if the URL isn't specified |
|
| 144 | - */ |
|
| 137 | + * Makes the actual cURL call |
|
| 138 | + * - stores responses (url, code, error, headers, body) in the response array |
|
| 139 | + * - detects 301, 302, 307 codes and will redirect to the given response header location |
|
| 140 | + * |
|
| 141 | + * @param string $url The site to fetch |
|
| 142 | + * @param bool $redirect Whether or not this was a redirect request |
|
| 143 | + * @return void|bool Sets various properties of the class or returns false if the URL isn't specified |
|
| 144 | + */ |
|
| 145 | 145 | private function curl_request($url, $redirect = false) |
| 146 | 146 | { |
| 147 | 147 | // we do have a url I hope |
@@ -193,12 +193,12 @@ discard block |
||
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
| 196 | - * Used if being redirected to ensure we have a fully qualified address |
|
| 197 | - * |
|
| 198 | - * @param string $last_url The URL we went to |
|
| 199 | - * @param string $new_url The URL we were redirected to |
|
| 200 | - * @return string The new URL that was in the HTTP header |
|
| 201 | - */ |
|
| 196 | + * Used if being redirected to ensure we have a fully qualified address |
|
| 197 | + * |
|
| 198 | + * @param string $last_url The URL we went to |
|
| 199 | + * @param string $new_url The URL we were redirected to |
|
| 200 | + * @return string The new URL that was in the HTTP header |
|
| 201 | + */ |
|
| 202 | 202 | private function get_redirect_url($last_url = '', $new_url = '') |
| 203 | 203 | { |
| 204 | 204 | // Get the elements for these urls |
@@ -216,13 +216,13 @@ discard block |
||
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
| 219 | - * Used to return the results to the calling program |
|
| 220 | - * - called as ->result() will return the full final array |
|
| 221 | - * - called as ->result('body') to just return the page source of the result |
|
| 222 | - * |
|
| 223 | - * @param string $area Used to return an area such as body, header, error |
|
| 224 | - * @return string The response |
|
| 225 | - */ |
|
| 219 | + * Used to return the results to the calling program |
|
| 220 | + * - called as ->result() will return the full final array |
|
| 221 | + * - called as ->result('body') to just return the page source of the result |
|
| 222 | + * |
|
| 223 | + * @param string $area Used to return an area such as body, header, error |
|
| 224 | + * @return string The response |
|
| 225 | + */ |
|
| 226 | 226 | public function result($area = '') |
| 227 | 227 | { |
| 228 | 228 | $max_result = count($this->response) - 1; |
@@ -235,13 +235,13 @@ discard block |
||
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | - * Will return all results from all loops (redirects) |
|
| 239 | - * - Can be called as ->result_raw(x) where x is a specific loop results. |
|
| 240 | - * - Call as ->result_raw() for everything. |
|
| 241 | - * |
|
| 242 | - * @param string $response_number Which response we want to get |
|
| 243 | - * @return array|string The entire response array or just the specified response |
|
| 244 | - */ |
|
| 238 | + * Will return all results from all loops (redirects) |
|
| 239 | + * - Can be called as ->result_raw(x) where x is a specific loop results. |
|
| 240 | + * - Call as ->result_raw() for everything. |
|
| 241 | + * |
|
| 242 | + * @param string $response_number Which response we want to get |
|
| 243 | + * @return array|string The entire response array or just the specified response |
|
| 244 | + */ |
|
| 245 | 245 | public function result_raw($response_number = '') |
| 246 | 246 | { |
| 247 | 247 | if (!is_numeric($response_number)) |
@@ -254,13 +254,13 @@ discard block |
||
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | /** |
| 257 | - * Takes supplied POST data and url encodes it |
|
| 258 | - * - forms the date (for post) in to a string var=xyz&var2=abc&var3=123 |
|
| 259 | - * - drops vars with @ since we don't support sending files (uploading) |
|
| 260 | - * |
|
| 261 | - * @param array|string $post_data The raw POST data |
|
| 262 | - * @return string A string of post data |
|
| 263 | - */ |
|
| 257 | + * Takes supplied POST data and url encodes it |
|
| 258 | + * - forms the date (for post) in to a string var=xyz&var2=abc&var3=123 |
|
| 259 | + * - drops vars with @ since we don't support sending files (uploading) |
|
| 260 | + * |
|
| 261 | + * @param array|string $post_data The raw POST data |
|
| 262 | + * @return string A string of post data |
|
| 263 | + */ |
|
| 264 | 264 | private function build_post_data($post_data) |
| 265 | 265 | { |
| 266 | 266 | if (is_array($post_data)) |
@@ -279,11 +279,11 @@ discard block |
||
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | /** |
| 282 | - * Sets the final cURL options for the current call |
|
| 283 | - * - overwrites our default values with user supplied ones or appends new user ones to what we have |
|
| 284 | - * - sets the callback function now that $this is existing |
|
| 285 | - * @return void |
|
| 286 | - */ |
|
| 282 | + * Sets the final cURL options for the current call |
|
| 283 | + * - overwrites our default values with user supplied ones or appends new user ones to what we have |
|
| 284 | + * - sets the callback function now that $this is existing |
|
| 285 | + * @return void |
|
| 286 | + */ |
|
| 287 | 287 | private function set_options() |
| 288 | 288 | { |
| 289 | 289 | // Callback to parse the returned headers, if any |
@@ -308,12 +308,12 @@ discard block |
||
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | /** |
| 311 | - * Called to initiate a redirect from a 301, 302 or 307 header |
|
| 312 | - * - resets the cURL options for the loop, sets the referrer flag |
|
| 313 | - * |
|
| 314 | - * @param string $target_url The URL we want to redirect to |
|
| 315 | - * @param string $referer_url The URL that we're redirecting from |
|
| 316 | - */ |
|
| 311 | + * Called to initiate a redirect from a 301, 302 or 307 header |
|
| 312 | + * - resets the cURL options for the loop, sets the referrer flag |
|
| 313 | + * |
|
| 314 | + * @param string $target_url The URL we want to redirect to |
|
| 315 | + * @param string $referer_url The URL that we're redirecting from |
|
| 316 | + */ |
|
| 317 | 317 | private function redirect($target_url, $referer_url) |
| 318 | 318 | { |
| 319 | 319 | // no no I last saw that over there ... really, 301, 302, 307 |
@@ -323,13 +323,13 @@ discard block |
||
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | /** |
| 326 | - * Callback function to parse returned headers |
|
| 327 | - * - lowercases everything to make it consistent |
|
| 328 | - * |
|
| 329 | - * @param type $cr Not sure what this is used for? |
|
| 330 | - * @param string $header The header |
|
| 331 | - * @return int The length of the header |
|
| 332 | - */ |
|
| 326 | + * Callback function to parse returned headers |
|
| 327 | + * - lowercases everything to make it consistent |
|
| 328 | + * |
|
| 329 | + * @param type $cr Not sure what this is used for? |
|
| 330 | + * @param string $header The header |
|
| 331 | + * @return int The length of the header |
|
| 332 | + */ |
|
| 333 | 333 | private function header_callback($cr, $header) |
| 334 | 334 | { |
| 335 | 335 | $_header = trim($header); |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * Start the curl object |
| 98 | 98 | * - allow for user override values |
| 99 | 99 | * |
| 100 | - * @param array $options An array of cURL options |
|
| 100 | + * @param integer[] $options An array of cURL options |
|
| 101 | 101 | * @param int $max_redirect Maximum number of redirects |
| 102 | 102 | */ |
| 103 | 103 | public function __construct($options = array(), $max_redirect = 3) |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | * - calls set_options to set the curl opts array values based on the defaults and user input |
| 116 | 116 | * |
| 117 | 117 | * @param string $url the site we are going to fetch |
| 118 | - * @param array $post_data any post data as form name => value |
|
| 119 | - * @return object An instance of the curl_fetch_web_data class |
|
| 118 | + * @param string $post_data any post data as form name => value |
|
| 119 | + * @return curl_fetch_web_data An instance of the curl_fetch_web_data class |
|
| 120 | 120 | */ |
| 121 | 121 | public function get_url_data($url, $post_data = array()) |
| 122 | 122 | { |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * |
| 141 | 141 | * @param string $url The site to fetch |
| 142 | 142 | * @param bool $redirect Whether or not this was a redirect request |
| 143 | - * @return void|bool Sets various properties of the class or returns false if the URL isn't specified |
|
| 143 | + * @return false|null Sets various properties of the class or returns false if the URL isn't specified |
|
| 144 | 144 | */ |
| 145 | 145 | private function curl_request($url, $redirect = false) |
| 146 | 146 | { |
@@ -10,8 +10,9 @@ discard block |
||
| 10 | 10 | * @version 2.1 Beta 4 |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -if (!defined('SMF')) |
|
| 13 | +if (!defined('SMF')) { |
|
| 14 | 14 | die('No direct access...'); |
| 15 | +} |
|
| 15 | 16 | |
| 16 | 17 | /** |
| 17 | 18 | * Class curl_fetch_web_data |
@@ -121,10 +122,11 @@ discard block |
||
| 121 | 122 | public function get_url_data($url, $post_data = array()) |
| 122 | 123 | { |
| 123 | 124 | // POSTing some data perhaps? |
| 124 | - if (!empty($post_data) && is_array($post_data)) |
|
| 125 | - $this->post_data = $this->build_post_data($post_data); |
|
| 126 | - elseif (!empty($post_data)) |
|
| 127 | - $this->post_data = trim($post_data); |
|
| 125 | + if (!empty($post_data) && is_array($post_data)) { |
|
| 126 | + $this->post_data = $this->build_post_data($post_data); |
|
| 127 | + } elseif (!empty($post_data)) { |
|
| 128 | + $this->post_data = trim($post_data); |
|
| 129 | + } |
|
| 128 | 130 | |
| 129 | 131 | // set the options and get it |
| 130 | 132 | $this->set_options(); |
@@ -145,10 +147,11 @@ discard block |
||
| 145 | 147 | private function curl_request($url, $redirect = false) |
| 146 | 148 | { |
| 147 | 149 | // we do have a url I hope |
| 148 | - if ($url == '') |
|
| 149 | - return false; |
|
| 150 | - else |
|
| 151 | - $this->options[CURLOPT_URL] = $url; |
|
| 150 | + if ($url == '') { |
|
| 151 | + return false; |
|
| 152 | + } else { |
|
| 153 | + $this->options[CURLOPT_URL] = $url; |
|
| 154 | + } |
|
| 152 | 155 | |
| 153 | 156 | // if we have not already been redirected, set it up so we can if needed |
| 154 | 157 | if (!$redirect) |
@@ -228,10 +231,11 @@ discard block |
||
| 228 | 231 | $max_result = count($this->response) - 1; |
| 229 | 232 | |
| 230 | 233 | // just return a specifed area or the entire result? |
| 231 | - if ($area == '') |
|
| 232 | - return $this->response[$max_result]; |
|
| 233 | - else |
|
| 234 | - return isset($this->response[$max_result][$area]) ? $this->response[$max_result][$area] : $this->response[$max_result]; |
|
| 234 | + if ($area == '') { |
|
| 235 | + return $this->response[$max_result]; |
|
| 236 | + } else { |
|
| 237 | + return isset($this->response[$max_result][$area]) ? $this->response[$max_result][$area] : $this->response[$max_result]; |
|
| 238 | + } |
|
| 235 | 239 | } |
| 236 | 240 | |
| 237 | 241 | /** |
@@ -244,9 +248,9 @@ discard block |
||
| 244 | 248 | */ |
| 245 | 249 | public function result_raw($response_number = '') |
| 246 | 250 | { |
| 247 | - if (!is_numeric($response_number)) |
|
| 248 | - return $this->response; |
|
| 249 | - else |
|
| 251 | + if (!is_numeric($response_number)) { |
|
| 252 | + return $this->response; |
|
| 253 | + } else |
|
| 250 | 254 | { |
| 251 | 255 | $response_number = min($response_number, count($this->response) - 1); |
| 252 | 256 | return $this->response[$response_number]; |
@@ -268,13 +272,14 @@ discard block |
||
| 268 | 272 | $postvars = array(); |
| 269 | 273 | |
| 270 | 274 | // build the post data, drop ones with leading @'s since those can be used to send files, we don't support that. |
| 271 | - foreach ($post_data as $name => $value) |
|
| 272 | - $postvars[] = $name . '=' . urlencode($value[0] == '@' ? '' : $value); |
|
| 275 | + foreach ($post_data as $name => $value) { |
|
| 276 | + $postvars[] = $name . '=' . urlencode($value[0] == '@' ? '' : $value); |
|
| 277 | + } |
|
| 273 | 278 | |
| 274 | 279 | return implode('&', $postvars); |
| 280 | + } else { |
|
| 281 | + return $post_data; |
|
| 275 | 282 | } |
| 276 | - else |
|
| 277 | - return $post_data; |
|
| 278 | 283 | |
| 279 | 284 | } |
| 280 | 285 | |
@@ -295,9 +300,9 @@ discard block |
||
| 295 | 300 | $keys = array_merge(array_keys($this->default_options), array_keys($this->user_options)); |
| 296 | 301 | $vals = array_merge($this->default_options, $this->user_options); |
| 297 | 302 | $this->options = array_combine($keys, $vals); |
| 303 | + } else { |
|
| 304 | + $this->options = $this->default_options; |
|
| 298 | 305 | } |
| 299 | - else |
|
| 300 | - $this->options = $this->default_options; |
|
| 301 | 306 | |
| 302 | 307 | // POST data options, here we don't allow any overide |
| 303 | 308 | if (isset($this->post_data)) |
@@ -336,8 +341,9 @@ discard block |
||
| 336 | 341 | $temp = explode(': ', $_header, 2); |
| 337 | 342 | |
| 338 | 343 | // set proper headers only |
| 339 | - if (isset($temp[0]) && isset($temp[1])) |
|
| 340 | - $this->headers[strtolower($temp[0])] = strtolower(trim($temp[1])); |
|
| 344 | + if (isset($temp[0]) && isset($temp[1])) { |
|
| 345 | + $this->headers[strtolower($temp[0])] = strtolower(trim($temp[1])); |
|
| 346 | + } |
|
| 341 | 347 | |
| 342 | 348 | // return the length of what was passed unless you want a Failed writing header error ;) |
| 343 | 349 | return strlen($header); |