mirror of
https://github.com/SWG-Source/auth-site.git
synced 2026-07-13 22:01:16 -04:00
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* MyBB 1.8
|
|
* Copyright 2014 MyBB Group, All Rights Reserved
|
|
*
|
|
* Website: http://www.mybb.com
|
|
* License: http://www.mybb.com/about/license
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Upgrade Script: 1.6.0
|
|
*/
|
|
|
|
$upgrade_detail = array(
|
|
"revert_all_templates" => 0,
|
|
"revert_all_themes" => 0,
|
|
"revert_all_settings" => 0
|
|
);
|
|
|
|
@set_time_limit(0);
|
|
|
|
function upgrade18_dbchanges()
|
|
{
|
|
global $db, $output, $mybb;
|
|
|
|
$output->print_header("Performing Queries");
|
|
|
|
echo "<p>Performing necessary upgrade queries...</p>";
|
|
|
|
// Update the usergroup sequence for pgSQL - #1094
|
|
if($mybb->config['database']['type'] == "pgsql")
|
|
{
|
|
$query = $db->simple_select("usergroups", "COUNT(gid) AS group_count");
|
|
$group_count = $db->fetch_field($query, "group_count");
|
|
|
|
++$group_count;
|
|
$db->query("ALTER SEQUENCE ".$mybb->config['database']['table_prefix']."usergroups_gid_seq RESTART WITH ".$group_count."");
|
|
}
|
|
|
|
$output->print_contents("<p>Click next to continue with the upgrade process.</p>");
|
|
$output->print_footer("18_updatecache");
|
|
}
|
|
|
|
function upgrade18_updatecache()
|
|
{
|
|
global $cache, $output;
|
|
|
|
$output->print_header("Updating Cache");
|
|
|
|
echo "<p>Updating cache...</p>";
|
|
|
|
// Update the Moderator cache - #1200
|
|
$cache->update_moderators();
|
|
|
|
$output->print_contents("<p>Click next to continue with the upgrade process.</p>");
|
|
$output->print_footer("18_done");
|
|
}
|