moodle/search/index.php

9 lines
195 B
PHP
Raw Normal View History

<?php
/*
* 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
**/
2006-06-25 23:07:36 +00:00
header("Location: query.php");
2006-06-25 23:07:36 +00:00
?>