Fixing a small css issue in the user class.
[elgg.git] / units / friends / friends_of_edit_wrapper.php
blob20c400847b82e0bdb5364a3e36dae68d8999683a
1 <?php
3 global $page_owner;
5 $title = run("profile:display:name", $page_owner) . " :: ". __gettext("Friends who have linked to you") ."";
7 $body = run("content:friends:of:manage");
8 $body .= run("friends:of:edit",array($page_owner));
10 $body = templates_draw(array(
11 'context' => 'contentholder',
12 'title' => $title,
13 'body' => $body
17 $run_result .= $body;