Merge remote-tracking branch 'origin/master'

This commit is contained in:
zhaoxiang 2020-03-29 20:47:53 +08:00
commit b82ac00bf4
2 changed files with 9 additions and 6 deletions

View File

@ -138,7 +138,7 @@ class App extends Base {
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
}
$appInfo = AdminApp::get($id);
cache('AccessToken:' . $appInfo['app_secret'], null);
cache('AccessToken:Easy:' . $appInfo['app_secret'], null);
if($oldWiki = cache('WikiLogin:' . $id)) {
cache('WikiLogin:' . $oldWiki, null);
}
@ -174,7 +174,7 @@ class App extends Base {
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
}
$appInfo = AdminApp::get($postData['id']);
cache('AccessToken:' . $appInfo['app_secret'], null);
cache('AccessToken:Easy:' . $appInfo['app_secret'], null);
if($oldWiki = cache('WikiLogin:' . $postData['id'])) {
cache('WikiLogin:' . $oldWiki, null);
}
@ -194,7 +194,7 @@ class App extends Base {
return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数');
}
$appInfo = AdminApp::get($id);
cache('AccessToken:' . $appInfo['app_secret'], null);
cache('AccessToken:Easy:' . $appInfo['app_secret'], null);
AdminApp::destroy($id);
if($oldWiki = cache('WikiLogin:' . $id)) {

View File

@ -25,8 +25,11 @@ class UpdateAdminMenuData extends Migrator {
* with the Table class.
*/
public function up() {
$this->execute('UPDATE admin_menu SET show = 2 WHERE show = 0;');
$this->execute('UPDATE admin_menu SET show = 0 WHERE show = 1;');
$this->execute('UPDATE admin_menu SET show = 1 WHERE show = 2;');
$this->execute('UPDATE `admin_menu` SET `show` = 2 WHERE `show` = 0;');
$this->execute('UPDATE `admin_menu` SET `show` = 0 WHERE `show` = 1;');
$this->execute('UPDATE `admin_menu` SET `show` = 1 WHERE `show` = 2;');
$this->execute('UPDATE `admin_menu` SET `level` = 1 WHERE `fid` = 0;');
$this->execute('UPDATE `admin_menu` SET `level` = 3 WHERE `url` != "";');
$this->execute('UPDATE `admin_menu` SET `level` = 2 WHERE `level` = 0;');
}
}