root/releases/0.401/search/all.php

Revision 45, 0.5 kB (checked in by sven, 3 years ago)

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG search through everything page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("search:init");
9         run("search:all:tagtypes");
10         
11         $title = gettext("Searching Everything");
12
13         $body = run("content:search:all");
14         $body .= run("search:all:display", $_REQUEST['tag']);
15         
16         $body = run("templates:draw", array(
17                         'context' => 'contentholder',
18                         'title' => $title,
19                         'body' => $body
20                     )
21                     );
22                     
23         echo run("templates:draw:page", array(
24                     $title, $body
25                 )
26                 );
27
28 ?>
Note: See TracBrowser for help on using the browser.