aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-07-26 18:58:38 +0200
committerThomas Lange <code@nerdmind.de>2017-07-26 18:58:38 +0200
commit55d1b2a04c098e106e588d58944302f06c39f687 (patch)
tree9c591dede17d65d3b10f0f9936734b6f72e0a8a7
parentf9fe43c2d3c16517324c3154a3289351c5dcd90a (diff)
downloadblog-55d1b2a04c098e106e588d58944302f06c39f687.tar.gz
blog-55d1b2a04c098e106e588d58944302f06c39f687.tar.xz
blog-55d1b2a04c098e106e588d58944302f06c39f687.zip
The "title" attribute has been added to the link tag of the stylesheet so that browsers like Firefox can display the name of the stylesheet under "View -> Page Style".
-rw-r--r--template/standard/html/main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/standard/html/main.php b/template/standard/html/main.php
index ac9bf31..4572422 100644
--- a/template/standard/html/main.php
+++ b/template/standard/html/main.php
@@ -41,7 +41,7 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']);
<?php endif; ?>
<link rel="icon" href="<?=Application::getTemplateURL('rsrc/favicon.ico')?>" />
- <link rel="stylesheet" href="<?=Application::getTemplateURL('rsrc/main.css')?>" />
+ <link rel="stylesheet" href="<?=Application::getTemplateURL('rsrc/main.css')?>" title="<?=$BLOGMETA_NAME?>" />
<link rel="alternate" type="application/rss+xml" title="<?=$Language->text('feed_name_items', $BLOGMETA_NAME)?>" href="<?=Application::getURL('feed/')?>" />
<link rel="alternate" type="application/rss+xml" title="<?=$Language->text('feed_name_posts', $BLOGMETA_NAME)?>" href="<?=Application::getURL('feed/post/')?>" />