Fixing a small css issue in the user class.
[elgg.git] / _communities / index.php
blobe5f437ef1322052e1af00df5bee58827cc730575
1 <?php
3 // ELGG manage community memberships page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 // Initialise functions for user details, icon management and profile management
9 run("userdetails:init");
10 run("profile:init");
11 run("friends:init");
13 define("context", "network");
14 templates_page_setup();
16 // Whose friends are we looking at?
17 global $page_owner;
19 // You must be logged on to view this!
20 // protect(1);
22 $title = run("profile:display:name") . " :: " . __gettext("Communities");
24 echo templates_page_draw( array(
25 $title, run("communities:editpage")