diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-22 14:38:44 -0800 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-22 14:38:44 -0800 |
commit | 9eecb913380fa2f55a8e24b9a15def241519a0de (patch) | |
tree | 7b6fc516e34c256c43d0733040f283b6601dce1e /lib/setup.php | |
parent | ec8609fa2186f03f5dde215bc7ed06f47cbe47ba (diff) | |
parent | 5136f6d818d1cb567cdedc468657fb0d0ed82f85 (diff) | |
download | nextcloud-server-9eecb913380fa2f55a8e24b9a15def241519a0de.tar.gz nextcloud-server-9eecb913380fa2f55a8e24b9a15def241519a0de.zip |
Merge pull request #1113 from owncloud/fix-issue-1085
Fix rendering of database connection error page
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php index 28882b6bede..4dd190b99fb 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -165,7 +165,9 @@ class OC_Setup { if(count($error) == 0) { OC_Appconfig::setValue('core', 'installedat', microtime(true)); OC_Appconfig::setValue('core', 'lastupdatedat', microtime(true)); - + OC_AppConfig::setValue('core', 'remote_core.css', '/core/minimizer.php'); + OC_AppConfig::setValue('core', 'remote_core.js', '/core/minimizer.php'); + OC_Group::createGroup('admin'); OC_Group::addToGroup($username, 'admin'); OC_User::login($username, $password); |