summaryrefslogtreecommitdiff
path: root/feed.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-01-29 20:03:50 +0000
committerAnika Henke <anika@selfthinker.org>2012-01-29 20:03:50 +0000
commit27833958afc4d9d54460bd5273a6a56d94c1923f (patch)
tree53f201cbdbed3ed3d32db499cfde38287cd19c3e /feed.php
parent91e9045718073c3a4ad4ce581e9192f0a87baaf7 (diff)
downloadrpg-27833958afc4d9d54460bd5273a6a56d94c1923f.tar.gz
rpg-27833958afc4d9d54460bd5273a6a56d94c1923f.tar.bz2
added tpl_getMediaFile() to replace tpl_getFavicon()
The function tpl_getFavicon() was doing more than its name was implying. Therefore the new tpl_getMediaFile() was introduced (which is doing nearly exactly the same) and tpl_getFavicon() was deprecated. tpl_favicon() can still be used, though.
Diffstat (limited to 'feed.php')
-rw-r--r--feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/feed.php b/feed.php
index 298777eb9..a7fa95620 100644
--- a/feed.php
+++ b/feed.php
@@ -50,7 +50,7 @@ $rss->cssStyleSheet = DOKU_URL.'lib/exe/css.php?s=feed';
$image = new FeedImage();
$image->title = $conf['title'];
-$image->url = tpl_getFavicon(true);
+$image->url = tpl_getMediaFile('favicon.ico', true);
$image->link = DOKU_URL;
$rss->image = $image;