diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-22 00:21:06 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-22 00:21:06 +0100 |
commit | 59582e0f3fb395378b88aec2a6d0689bb2ac039e (patch) | |
tree | 13e385a69cf32692cfaefc395a778983281cf3fd /core | |
parent | 19c5213b53fbddc2a2b61e0ad35cda6ce5002bb5 (diff) | |
download | nextcloud-server-59582e0f3fb395378b88aec2a6d0689bb2ac039e.tar.gz nextcloud-server-59582e0f3fb395378b88aec2a6d0689bb2ac039e.zip |
Fix review issues
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 17664c4ef03..d0869cb8404 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -1,8 +1,8 @@ <!DOCTYPE html> <html> <head> - <title><?php echo !empty($_['application'])?$_['application'].' | ':'' - ?>ownCloud <?php echo !empty($_['user_displayname'])?' ('.$_['user_displayname'].') ':'' ?></title> + <title><?php echo !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud + <?php echo !empty($_['user_displayname'])?' ('.$_['user_displayname'].') ':'' ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="apple-itunes-app" content="app-id=543672169"> <link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /> @@ -49,8 +49,8 @@ <?php endforeach; ?> <li> <a id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"> - <img class="svg" alt="" src="<?php echo image_path('', 'actions/logout.svg'); ?>" - /> <?php echo $l->t('Log out');?> + <img class="svg" alt="" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /> + <?php echo $l->t('Log out');?> </a> </li> </div> |