mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
9 lines
195 B
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");
|
|
?>
|