diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/application.php | 2 | ||||
-rw-r--r-- | core/controller/usercontroller.php (renamed from core/user/usercontroller.php) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/application.php b/core/application.php index 996a612105d..6536f63c1d8 100644 --- a/core/application.php +++ b/core/application.php @@ -30,7 +30,7 @@ use OC\AppFramework\Utility\SimpleContainer; use OC\AppFramework\Utility\TimeFactory; use \OCP\AppFramework\App; use OC\Core\LostPassword\Controller\LostController; -use OC\Core\User\UserController; +use OC\Core\Controller\UserController; use OC\Core\Controller\AvatarController; use \OCP\Util; diff --git a/core/user/usercontroller.php b/core/controller/usercontroller.php index 38ecd86b459..72193761022 100644 --- a/core/user/usercontroller.php +++ b/core/controller/usercontroller.php @@ -20,7 +20,7 @@ * */ -namespace OC\Core\User; +namespace OC\Core\Controller; use \OCP\AppFramework\Controller; use \OCP\AppFramework\Http\JSONResponse; |