diff options
author | Thomas Lange <code@nerdmind.de> | 2017-08-02 18:59:41 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-08-02 18:59:41 +0200 |
commit | 5e8032c74cfc65e1028ee00a5a9fc343f8f63bf1 (patch) | |
tree | 39510da7da5ba8bb2e5c45cb08c4286943253f98 /template/standard/html/feed | |
parent | dc53b8aa2edcc60977609d8ed1184a50df0c128b (diff) | |
download | blog-5e8032c74cfc65e1028ee00a5a9fc343f8f63bf1.tar.gz blog-5e8032c74cfc65e1028ee00a5a9fc343f8f63bf1.tar.xz blog-5e8032c74cfc65e1028ee00a5a9fc343f8f63bf1.zip |
The <title> and <link> elements within <image> should have the same value as the <title> and <link> elements within <channel>. This is described in the RSS 2.0 specification.
Diffstat (limited to 'template/standard/html/feed')
-rw-r--r-- | template/standard/html/feed/main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/standard/html/feed/main.php b/template/standard/html/feed/main.php index 0dbdfb1..84e7888 100644 --- a/template/standard/html/feed/main.php +++ b/template/standard/html/feed/main.php @@ -34,7 +34,7 @@ switch($FEED['TYPE']) { <atom:link href="<?=$self?>" rel="self" type="application/rss+xml" /> <image> - <title><?=$BLOGMETA_NAME?></title> + <title><?=$title?></title> <url><?=Application::getTemplateURL('rsrc/logo.png')?></url> <link><?=Application::getURL()?></link> </image> |