Fix calendar sidebar issue - changed holder from 'contentholder' to 'sidebarholder'
[elgg.git] / _communities / members.php
blob4eca4f7a30279b0c39f33bfbbb0dbcb28bc92260
1 <?php
3 // ELGG manage community members page
5 // Run includes
6 require("../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");
15 // Whose friends are we looking at?
16 global $page_owner;
18 // You must be logged on to view this!
19 // protect(1);
21 $title = run("profile:display:name") . " :: " . gettext("Members");
23 echo run("templates:draw:page", array(
24 $title, run("templates:draw", array(
25 'context' => 'contentholder',
26 'title' => $title,
27 'body' => run("communities:members",array($page_owner))