2006-09-20 21:00:45 +00:00
|
|
|
<?php
|
2008-03-31 22:21:42 +00:00
|
|
|
/**
|
|
|
|
* Global Search Engine for Moodle
|
|
|
|
*
|
|
|
|
* @package search
|
|
|
|
* @category core
|
|
|
|
* @subpackage search_engine
|
|
|
|
* @author Michael Champanis (mchampan) [cynnical@gmail.com], Valery Fremaux [valery.fremaux@club-internet.fr] > 1.8
|
|
|
|
* @date 2008/03/31
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
|
|
*
|
2007-07-09 21:12:16 +00:00
|
|
|
* Entry page for /search
|
|
|
|
* Redirects to query.php, because that is the most likely place a
|
|
|
|
* user intended to go to when typing moodle.site/search
|
2008-03-31 22:21:42 +00:00
|
|
|
*/
|
2006-06-25 23:07:36 +00:00
|
|
|
|
2007-07-09 21:12:16 +00:00
|
|
|
header("Location: query.php");
|
2006-06-25 23:07:36 +00:00
|
|
|
?>
|