aboutsummaryrefslogtreecommitdiff
path: root/views/rss
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2010-07-25 02:01:36 +0000
committerCash Costello <cash.costello@gmail.com>2010-07-25 02:01:36 +0000
commit73403645808a81425381f43c25e0ea2c92705312 (patch)
tree83fb73e9a122054f6f4c2e1c44e399572ee13e28 /views/rss
parent791ec4925346cb38ecca9a2f2574b012ab64a88a (diff)
downloadelgg-73403645808a81425381f43c25e0ea2c92705312.tar.gz
elgg-73403645808a81425381f43c25e0ea2c92705312.tar.bz2
first go at brining tidypics up to code standards
Diffstat (limited to 'views/rss')
-rw-r--r--views/rss/object/album.php1
-rw-r--r--views/rss/object/file.php18
-rw-r--r--views/rss/tidypics/gallery.php8
3 files changed, 12 insertions, 15 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php
index 8542b95f4..34cf58395 100644
--- a/views/rss/object/album.php
+++ b/views/rss/object/album.php
@@ -51,4 +51,3 @@ if (get_context() == "search" && get_input('search_viewtype') == "gallery") {
}
}
-?> \ No newline at end of file
diff --git a/views/rss/object/file.php b/views/rss/object/file.php
index 36740f003..1ede661ad 100644
--- a/views/rss/object/file.php
+++ b/views/rss/object/file.php
@@ -1,16 +1,16 @@
<?php
- /**
- * Tidypics RSS file object view - need to look into removing download link based on settings
- */
+/**
+ * Tidypics RSS file object view - need to look into removing download link based on settings
+ */
- $title = $vars['entity']->title;
- if (empty($title)) {
- $title = substr($vars['entity']->description,0,32);
- if (strlen($vars['entity']->description) > 32)
- $title .= " ...";
+$title = $vars['entity']->title;
+if (empty($title)) {
+ $title = substr($vars['entity']->description,0,32);
+ if (strlen($vars['entity']->description) > 32) {
+ $title .= " ...";
}
-
+}
?>
<item>
diff --git a/views/rss/tidypics/gallery.php b/views/rss/tidypics/gallery.php
index 2c285fca5..0e90a8c44 100644
--- a/views/rss/tidypics/gallery.php
+++ b/views/rss/tidypics/gallery.php
@@ -1,7 +1,7 @@
<?php
- /**
- * Tidypics Listing RSS View
- */
+/**
+ * Tidypics Listing RSS View
+ */
$context = $vars['context'];
$entities = $vars['entities'];
@@ -14,5 +14,3 @@ if (is_array($entities) && sizeof($entities) > 0) {
echo elgg_view_entity($entity);
}
}
-
-?> \ No newline at end of file