diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-11 16:38:07 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-11 16:38:07 +0200 |
commit | aacca494c504d97be4ba0eb93289604b392d946f (patch) | |
tree | ee06a764dcfaaf057087654fa39e77d5e547995f /core/templates/layout.guest.php | |
parent | c5f2ea9a9511e78d724bb1c90748f894bb8b57af (diff) | |
download | nextcloud-server-aacca494c504d97be4ba0eb93289604b392d946f.tar.gz nextcloud-server-aacca494c504d97be4ba0eb93289604b392d946f.zip |
introduce shortname themable string and split from title, use for image alt text
Diffstat (limited to 'core/templates/layout.guest.php')
-rw-r--r-- | core/templates/layout.guest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 329744e3824..e20d28970a5 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -10,7 +10,7 @@ <head data-requesttoken="<?php p($_['requesttoken']); ?>"> <title> - <?php p($defaults->getName()); ?> + <?php p($defaults->getTitle()); ?> </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="apple-itunes-app" content="app-id=543672169"> @@ -22,7 +22,7 @@ <?php foreach($_['jsfiles'] as $jsfile): ?> <script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script> <?php endforeach; ?> - + <?php foreach($_['headers'] as $header): ?> <?php print_unescaped('<'.$header['tag'].' '); @@ -37,7 +37,7 @@ <body id="body-login"> <div id="login"> <header><div id="header"> - <img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" /> + <img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="<?php p($defaults->getName()); ?>" /> <div id="logo-claim" style="display:none;"><?php p($defaults->getLogoClaim()); ?></div> </div></header> <?php print_unescaped($_['content']); ?> |