aboutsummaryrefslogtreecommitdiff
path: root/mod/friends/start.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-22 23:15:43 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-22 23:15:43 +0000
commit60c1387a16ea4944674b0c9da2273158d1fbf0b4 (patch)
tree6f94aaf77a7d794f489212ff50f08f5211a18126 /mod/friends/start.php
parentca08eb6d170d375ef4fca53604956f3474c7db19 (diff)
downloadelgg-60c1387a16ea4944674b0c9da2273158d1fbf0b4.tar.gz
elgg-60c1387a16ea4944674b0c9da2273158d1fbf0b4.tar.bz2
Merged r6757:6810 from 1.7 branch into trunk
git-svn-id: http://code.elgg.org/elgg/trunk@6850 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/friends/start.php')
-rw-r--r--mod/friends/start.php40
1 files changed, 16 insertions, 24 deletions
diff --git a/mod/friends/start.php b/mod/friends/start.php
index 631b54c1d..c0729ac90 100644
--- a/mod/friends/start.php
+++ b/mod/friends/start.php
@@ -1,26 +1,18 @@
<?php
- /**
- * Elgg Friends widget
- * This plugin allows users to put a list of their friends, on their profile
- *
- * @package ElggFriends
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- */
-
- function friends_init() {
-
- // Load system configuration
- global $CONFIG;
-
- //add a widget
- add_widget_type('friends',elgg_echo("friends"),elgg_echo('friends:widget:description'));
-
- }
-
- register_elgg_event_handler('init','system','friends_init');
-
-?> \ No newline at end of file
+/**
+ * Elgg Friends widget
+ * This plugin allows users to put a list of their friends on their profile
+ *
+ * @package ElggFriends
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd <info@elgg.com>
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.com/
+ */
+
+function friends_init() {
+ add_widget_type('friends', elgg_echo("friends"), elgg_echo('friends:widget:description'));
+}
+
+register_elgg_event_handler('init', 'system', 'friends_init');