diff options
author | Brett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-26 21:07:39 +0000 |
---|---|---|
committer | Brett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-26 21:07:39 +0000 |
commit | a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a (patch) | |
tree | bb3e25e40d98a445182632273495357bb28177e4 /views/rss | |
parent | ed69694b30a9ab913349a5d17ca0bde94056bac1 (diff) | |
download | elgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.gz elgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.bz2 |
Changed line endings to unix-style for videolist plugin.
Diffstat (limited to 'views/rss')
-rw-r--r-- | views/rss/videolist/contentwrapper.php | 24 | ||||
-rw-r--r-- | views/rss/videolist/videolist.php | 30 |
2 files changed, 27 insertions, 27 deletions
diff --git a/views/rss/videolist/contentwrapper.php b/views/rss/videolist/contentwrapper.php index b967ab371..c8e2438d5 100644 --- a/views/rss/videolist/contentwrapper.php +++ b/views/rss/videolist/contentwrapper.php @@ -1,15 +1,15 @@ -<?php
- /**
- * Elgg Videolist Plugin
- * This plugin allows users to create a library of youtube videos
- *
- * @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
+<?php + /** + * Elgg Videolist Plugin + * This plugin allows users to create a library of youtube videos + * + * @package ElggProfile + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Prateek Choudhary <synapticfield@gmail.com> + * @copyright Prateek Choudhary */ -
- echo $vars['body'];
-
+ + echo $vars['body']; + ?> diff --git a/views/rss/videolist/videolist.php b/views/rss/videolist/videolist.php index f88300d98..86ea686ba 100644 --- a/views/rss/videolist/videolist.php +++ b/views/rss/videolist/videolist.php @@ -1,17 +1,17 @@ -<?php
- /**
- * Elgg Videolist Plugin
- * This plugin allows users to create a library of youtube videos
- *
- * @package ElggProfile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Prateek Choudhary <synapticfield@gmail.com>
- * @copyright Prateek Choudhary
+<?php + /** + * Elgg Videolist Plugin + * This plugin allows users to create a library of youtube videos + * + * @package ElggProfile + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Prateek Choudhary <synapticfield@gmail.com> + * @copyright Prateek Choudhary */ -
- if ($foreach = get_entities('object','',$vars['entity']->guid)) {
- foreach($foreach as $videos)
- echo elgg_view_entity($videos);
- }
-
+ + if ($foreach = get_entities('object','',$vars['entity']->guid)) { + foreach($foreach as $videos) + echo elgg_view_entity($videos); + } + ?> |