aboutsummaryrefslogtreecommitdiff
path: root/browse.php
diff options
context:
space:
mode:
authorBrett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-26 21:07:39 +0000
committerBrett Profitt <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-26 21:07:39 +0000
commita8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a (patch)
treebb3e25e40d98a445182632273495357bb28177e4 /browse.php
parented69694b30a9ab913349a5d17ca0bde94056bac1 (diff)
downloadelgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.gz
elgg-a8aa4bceed8e7ad0c5af2646a83d6a2da2e0b23a.tar.bz2
Changed line endings to unix-style for videolist plugin.
Diffstat (limited to 'browse.php')
-rw-r--r--browse.php88
1 files changed, 44 insertions, 44 deletions
diff --git a/browse.php b/browse.php
index 064ce9574..b5ef13987 100644
--- a/browse.php
+++ b/browse.php
@@ -1,44 +1,44 @@
-<?php
-
- /**
- * Elgg Video Plugin
- * This plugin allows users to create a library of youtube/vimeo/metacafe videos
- *
- * @package Elgg
- * @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
- */
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
- //get videolist GUID
- $container_guid = get_input('container');
- $parent_container = "";
- if(isset($container_guid) && !empty($container_guid)){
- $container_guid = explode(":", $container_guid);
- if($container_guid[0] == "group"){
- $container = get_entity($container_guid[1]);
- set_page_owner($container->getGUID());
- $page_owner = page_owner_entity();
- set_context("groupsvideos");
- }
- else{
- $page_owner = page_owner_entity();
- if ($page_owner === false || is_null($page_owner)) {
- $page_owner = $_SESSION['user'];
- set_page_owner($_SESSION['guid']);
- }
- }
- }
- // Get the current page's owner
-
-
- $title = sprintf(elgg_echo("videolist:browse"), $page_owner->name);
-
- $area2 = elgg_view_title($title);
- $area2 .= elgg_view("forms/browsetube");
-
- $body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2);
-
- page_draw($title, $body);
-?>
+<?php
+
+ /**
+ * Elgg Video Plugin
+ * This plugin allows users to create a library of youtube/vimeo/metacafe videos
+ *
+ * @package Elgg
+ * @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
+ */
+require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ //get videolist GUID
+ $container_guid = get_input('container');
+ $parent_container = "";
+ if(isset($container_guid) && !empty($container_guid)){
+ $container_guid = explode(":", $container_guid);
+ if($container_guid[0] == "group"){
+ $container = get_entity($container_guid[1]);
+ set_page_owner($container->getGUID());
+ $page_owner = page_owner_entity();
+ set_context("groupsvideos");
+ }
+ else{
+ $page_owner = page_owner_entity();
+ if ($page_owner === false || is_null($page_owner)) {
+ $page_owner = $_SESSION['user'];
+ set_page_owner($_SESSION['guid']);
+ }
+ }
+ }
+ // Get the current page's owner
+
+
+ $title = sprintf(elgg_echo("videolist:browse"), $page_owner->name);
+
+ $area2 = elgg_view_title($title);
+ $area2 .= elgg_view("forms/browsetube");
+
+ $body = elgg_view_layout('one_column_with_sidebar', $area1 . $area2);
+
+ page_draw($title, $body);
+?>