summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-16 23:51:18 -0700
committerBharat Mediratta <bharat@menalto.com>2009-06-16 23:51:18 -0700
commit5eeb6296a12127cda3c43e749c2bd854a251f94a (patch)
treed622cc9c2f67071cc2a1a7ea7883028719a348b4
parentbaea5e3a1b5a258269accb7ee53f5167607833c2 (diff)
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
-rw-r--r--modules/gallery/helpers/gallery_theme.php4
1 files changed, 2 insertions, 2 deletions
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}");
}
}