From 1a911d4b5c5b8b337806209611f5eae07dfe9abd Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 17 Jun 2009 14:51:18 +0800 Subject: Fix a bug that was overwriting the quick-pane HTML causing the quick panes not to appear. Oops. Bug was introduced in the rss refactor: 1b656be7135efe51ba0eb34d6ac76c2632ec193a Signed-off-by: --- modules/gallery/helpers/gallery_theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/gallery/helpers') diff --git a/modules/gallery/helpers/gallery_theme.php b/modules/gallery/helpers/gallery_theme.php index 44c1d3f1..a96c8f5b 100644 --- a/modules/gallery/helpers/gallery_theme.php +++ b/modules/gallery/helpers/gallery_theme.php @@ -34,9 +34,9 @@ class gallery_theme_Core { if (module::is_active("rss")) { if ($item = $theme->item()) { - $buf = rss::feed_link("gallery/album/{$item->id}"); + $buf .= rss::feed_link("gallery/album/{$item->id}"); } else if ($tag = $theme->tag()) { - $buf = rss::feed_link("tag/tag/{$tag->id}"); + $buf .= rss::feed_link("tag/tag/{$tag->id}"); } } -- cgit v1.2.3