103.php

来自「CMS系统」· PHP 代码 · 共 18 行

PHP
18
字号
<?php

// delete sdplugin column, there is no need for this column
// it was added in the install of 1.0.2 but not the upgrade for 1.0.2...so:
// (it was not supposed to be added)
@MYSQL_QUERY("ALTER TABLE plugins DROP sdplugin");

// no need to enter the authorlinks over and over, we just need the userid
// at the time of this upgrade there are only 3 users with skins, and 1 with plugins
$DB->query("UPDATE " . TABLE_PREFIX . "skins SET authorlink = 1  WHERE authorname = 'subduck'");
$DB->query("UPDATE " . TABLE_PREFIX . "skins SET authorlink = 5  WHERE authorname = 'Samurai'");
$DB->query("UPDATE " . TABLE_PREFIX . "skins SET authorlink = 48 WHERE authorname = 'Shallowfaith'");
$DB->query("ALTER TABLE skins CHANGE authorlink authorlink SMALLINT( 5 ) NOT NULL");

$DB->query("UPDATE " . TABLE_PREFIX . "plugins SET authorlink = 1 WHERE authorname = 'subduck'");
$DB->query("ALTER TABLE plugins CHANGE authorlink authorlink SMALLINT( 5 ) NOT NULL");

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?