Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / search / index.php
bloba6848ead939def8cbdd02dbae12a0907dc435d6c
1 <?php
3 // ELGG profile search page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 run("search:init");
9 run("search:all:tagtypes");
11 $title = gettext("Search");
12 templates_page_setup();
14 $body = run("content:profile:search");
15 $body .= run("search:display");
17 $body = templates_draw(array(
18 'context' => 'contentholder',
19 'title' => $title,
20 'body' => $body
24 echo templates_page_draw( array(
25 $title, $body