diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-09-02 18:18:12 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-09-02 18:18:12 +0200 |
commit | cafc8cb22347f0c861bbc333354e2766779e065d (patch) | |
tree | ce88fadaa35023a582d1bd42146f72d2b2a869d1 /console.php | |
parent | 0aba549e7f11e1035fa7a2e880803b47cbadd919 (diff) | |
download | nextcloud-server-cafc8cb22347f0c861bbc333354e2766779e065d.tar.gz nextcloud-server-cafc8cb22347f0c861bbc333354e2766779e065d.zip |
Change Files Scan command to use OC\User\Manager
Diffstat (limited to 'console.php')
-rw-r--r-- | console.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console.php b/console.php index 9639f60b7ac..11df7eb0dc9 100644 --- a/console.php +++ b/console.php @@ -27,5 +27,5 @@ if (!OC::$CLI) { $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); $application->add(new OC\Core\Command\Status); -$application->add(new OCA\Files\Command\Scan); +$application->add(new OCA\Files\Command\Scan(OC_User::getManager())); $application->run(); |