mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 09:19:57 +09:00
설치시 rewrite mod 사용유무 및 timezone설정. 관리자 페이지에 timezone변경 및 언어변경 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1892 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2f328baecf
commit
03fbd6d257
17 changed files with 121 additions and 69 deletions
|
|
@ -27,5 +27,20 @@
|
|||
$this->setMessage('success_installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief time zone변경
|
||||
**/
|
||||
function procInstallAdminSaveTimeZone() {
|
||||
$time_zone = Context::get('time_zone');
|
||||
|
||||
$db_info = Context::getDBInfo();
|
||||
$db_info->time_zone = $time_zone;
|
||||
Context::setDBInfo($db_info);
|
||||
|
||||
$oInstallController = &getController('install');
|
||||
$oInstallController->makeConfigFile();
|
||||
|
||||
$this->setMessage('success_updated');
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue