diff --git a/Access_Core.php b/Access_Core.php index 2b6fced..c6c629f 100644 --- a/Access_Core.php +++ b/Access_Core.php @@ -43,15 +43,14 @@ class Access_Core $this->action = 'migration'; $this->title = _t('数据迁移'); break; - case 'logs': - $this->action = 'logs'; - $this->title = _t('访问日志'); - break; case 'overview': - default: $this->action = 'overview'; $this->title = _t('访问概览'); break; + default: + $this->action = 'logs'; + $this->title = _t('访问日志'); + break; } $this->hasMigration = (new Access_Migration($this->request))->exists(); }