moodle/search/index.php

8 lines
206 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
?>