diff options
author | kondou <kondou@ts.unde.re> | 2013-09-04 12:56:14 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-09-04 12:56:14 +0200 |
commit | a1e7614d73c1a640521dfb2410349703c9afdc15 (patch) | |
tree | 720de01baf316451ee57d9e5e50c4bb7cfe3699c /core/routes.php | |
parent | 32a7ba9823b6afdfeb96dcfe5ab890aa1e39b7fd (diff) | |
download | nextcloud-server-a1e7614d73c1a640521dfb2410349703c9afdc15.tar.gz nextcloud-server-a1e7614d73c1a640521dfb2410349703c9afdc15.zip |
Clean up oc_avatars
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/routes.php b/core/routes.php index a0d06bf807e..9cedcb0956c 100644 --- a/core/routes.php +++ b/core/routes.php @@ -60,8 +60,8 @@ $this->create('core_lostpassword_reset_password', '/lostpassword/reset/{token}/{ // Avatar routes $this->create('core_avatar_get_tmp', '/avatar/tmp') - ->get() - ->action('OC_Core_Avatar_Controller', 'getTmpAvatar'); + ->get() + ->action('OC_Core_Avatar_Controller', 'getTmpAvatar'); $this->create('core_avatar_get', '/avatar/{user}/{size}') ->get() ->action('OC_Core_Avatar_Controller', 'getAvatar'); |