moodle/search/index.php

9 lines
195 B
PHP

<?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
**/
header("Location: query.php");
?>