summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index 83dd0c98f45..f3dacdc0f76 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -265,7 +265,7 @@ class OC{
public static function init(){
// register autoloader
spl_autoload_register(array('OC','autoload'));
-
+ setlocale(LC_ALL, 'en_US.UTF-8');
// set some stuff
//ob_start();
@@ -346,7 +346,7 @@ class OC{
OC_User::useBackend( OC_Config::getValue( "userbackend", "database" ));
- OC_Group::setBackend( OC_Config::getValue( "groupbackend", "database" ));
+ OC_Group::useBackend(new OC_Group_Database());
// Set up file system unless forbidden
global $RUNTIME_NOSETUPFS;