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 | |
parent | 32a7ba9823b6afdfeb96dcfe5ab890aa1e39b7fd (diff) | |
download | nextcloud-server-a1e7614d73c1a640521dfb2410349703c9afdc15.tar.gz nextcloud-server-a1e7614d73c1a640521dfb2410349703c9afdc15.zip |
Clean up oc_avatars
Diffstat (limited to 'core')
-rw-r--r-- | core/routes.php | 4 | ||||
-rw-r--r-- | core/templates/layout.user.php | 1 |
2 files changed, 2 insertions, 3 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'); diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index e95d1b1d97d..cd303104e0c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -45,7 +45,6 @@ <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> - <ul id="settings" class="svg"> <span id="expand" tabindex="0" role="link"> <span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span> |