diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-28 14:16:33 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-28 14:16:33 +0000 |
commit | 1224dc309fd8451d56e8959e1e6a3cc59ba8803e (patch) | |
tree | f9b31b3776de2925c6648c648ef7feb536ac17e3 /views | |
parent | 5f7b66163ae40ebb8829dca4bb1c273b5a52b0e1 (diff) | |
download | elgg-1224dc309fd8451d56e8959e1e6a3cc59ba8803e.tar.gz elgg-1224dc309fd8451d56e8959e1e6a3cc59ba8803e.tar.bz2 |
ignore index for rss - this is the view of all of an owner's albums
Diffstat (limited to 'views')
-rw-r--r-- | views/rss/object/album.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php index e429ee94d..ecd4c51ab 100644 --- a/views/rss/object/album.php +++ b/views/rss/object/album.php @@ -3,6 +3,10 @@ * Tidypics Album RSS View
*/
+ // for now catch the albums view and ignore it
+ if (get_context() == "search" && get_input('search_viewtype') == "gallery") {
+ } else {
+
$album = $vars['entity'];
$base_url = $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=';
@@ -54,4 +58,6 @@ <?php
}
+
+ }
?>
\ No newline at end of file |