mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
8 lines
206 B
PHP
8 lines
206 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");
|
|
?>
|