summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorGeorg Ehrke <georg@ownCloud.com>2013-05-29 12:33:24 +0200
committerGeorg Ehrke <georg@ownCloud.com>2013-05-29 12:46:54 +0200
commitfa6b96090abc341da4f9320af02ee75b29a204e6 (patch)
treed38c9ecc5c34204c6e7266ef71947ad5305c8b7b /core/routes.php
parenteebc15dce0da88dff91dc5249938341cd50b8a85 (diff)
downloadnextcloud-server-fa6b96090abc341da4f9320af02ee75b29a204e6.tar.gz
nextcloud-server-fa6b96090abc341da4f9320af02ee75b29a204e6.zip
move to OC namespace
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/routes.php b/core/routes.php
index c45ffee26fd..4b3ad53da01 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -43,9 +43,9 @@ $this->create('js_config', '/core/js/config.js')
$this->create('core_ajax_routes', '/core/routes.json')
->action('OC_Router', 'JSRoutes');
$this->create('core_ajax_preview', '/core/preview.png')
- ->action('OC_Preview', 'previewRouter');
+ ->action('OC\Preview', 'previewRouter');
$this->create('core_ajax_public_preview', '/core/publicpreview.png')
- ->action('OC_Preview', 'publicPreviewRouter');
+ ->action('OC\Preview', 'publicPreviewRouter');
OC::$CLASSPATH['OC_Core_LostPassword_Controller'] = 'core/lostpassword/controller.php';
$this->create('core_lostpassword_index', '/lostpassword/')
->get()