aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-11-18 23:28:51 +0000
committerplegall <plg@piwigo.org>2005-11-18 23:28:51 +0000
commit89fec49fdaa69734f218b50fa1ffaa4841481c24 (patch)
tree3ec4adf00741e7e82ab328573d8c67dcfe7b6dd5
parentd3524368d2bf7079c44d62cbed43151c0ecfb4df (diff)
- bug 199 fixed: hard coded URL in RSS feed instead of using
$conf['gallery_url'] git-svn-id: http://piwigo.org/svn/branches/branch-1_5@944 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/feed.php b/feed.php
index 9f26000f7..0fbb8ff83 100644
--- a/feed.php
+++ b/feed.php
@@ -331,7 +331,7 @@ if (count($news) > 0)
{
$item = new FeedItem();
$item->title = sprintf(l10n('New on %s'), $dbnow);
- $item->link = 'http://phpwebgallery.net';
+ $item->link = $conf['gallery_url'];
// content creation
$item->description = '<ul>';