Small tweak to the default template.
[elgg.git] / search / personaltags.php
blob72b1dcfc27408eb3f8021d483d7da8d4c500ead4
1 <?php
3 // ELGG display popular tags page
5 // Run includes
6 require("../includes.php");
8 run("search:init");
9 run("profile:init");
10 templates_page_setup();
11 global $page_owner;
13 $title = run("users:display:name", $page_owner) . " :: " . gettext("Tags");
15 $body = run("content:tags");
16 $body .= run("search:tags:personal:display");
18 $body = templates_draw(array(
19 'context' => 'contentholder',
20 'title' => $title,
21 'body' => $body
25 echo templates_page_draw( array(
26 $title, $body