Fix ownCloud for php5.3.x

remotes/origin/ldap_group_count
Thomas Müller 11 years ago
parent 0bc0a60a93
commit e35bca1c26
  1. 3
      lib/private/server.php

@ -128,7 +128,8 @@ class Server extends SimpleContainer implements IServerContainer {
return new \OC\L10N\Factory();
});
$this->registerService('URLGenerator', function($c) {
$config = $this->getConfig();
/** @var $c SimpleContainer */
$config = $c->query('AllConfig');
return new \OC\URLGenerator($config);
});
$this->registerService('AppHelper', function($c) {

Loading…
Cancel
Save