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