Upload new themes (insert into elgg.sql and upgrade.sql) with associated images
[elgg.git] / profile / search.php
blobbe9a0e760133b830a5a073443ca2782a82d9f1e1
1 <?php
3 // ELGG profile search page
5 // Run includes
6 require("../includes.php");
8 run("profile:init");
10 $title = gettext("Search Profiles");
12 $body = run("content:profile:search");
13 $body .= run("profile:search");
15 $body = run("templates:draw", array(
16 'context' => 'contentholder',
17 'title' => $title,
18 'body' => $body
22 echo run("templates:draw:page", array(
23 $title, $body