root/releases/0.9rc2/search/ecl.php

Revision 526, 332 bytes (checked in by ben, 2 years ago)

Context is defined for all search pages.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3 //    ELGG search through everything page
4
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
7
8 run("search:init");
9 run("search:all:tagtypes");
10
11 define("context","rss");
12
13 header("Content-Type: text/xml; charset=utf-8");
14 $tag = optional_param('tag');
15 echo run("search:all:display:ecl", $tag);
16         
17 ?>
Note: See TracBrowser for help on using the browser.