diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-02-09 16:01:52 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-02-09 16:01:52 +0100 |
commit | 4172ba48d4c2ffc34c2020b256aca333de692c23 (patch) | |
tree | a4e0fa80ddea573debbbc4fd55653ebb93fa431b /core/templates/layout.base.php | |
parent | b432ea29c9d99a386077c738d6e29d4bc093c15f (diff) | |
download | nextcloud-server-4172ba48d4c2ffc34c2020b256aca333de692c23.tar.gz nextcloud-server-4172ba48d4c2ffc34c2020b256aca333de692c23.zip |
Deduplicate template code and do not translate the links
Diffstat (limited to 'core/templates/layout.base.php')
-rw-r--r-- | core/templates/layout.base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 768a965599b..7069c0c2634 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -24,7 +24,7 @@ <?php print_unescaped($_['headers']); ?> </head> <body id="body-public"> - <noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript for correct operation. Please <a href="http://enable-javascript.com/" target="_blank" rel="noreferrer">enable JavaScript</a> and reload the page.')); ?></div></div></noscript> + <?php include('layout.noscript.warning.php'); ?> <?php print_unescaped($_['content']); ?> </body> </html> |