Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-20 06:15:09 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-20 06:15:09 +0300
commitbf975c68fd588672f6f8831659dc2f0dfe34a393 (patch)
tree8ddbf137dbae914f2403995f7c48617a8d372f22 /index.php
parent5a83fd36b9db9d1e34dbcbad053a25b4fb2123be (diff)
Use the router for prefs_manage.php
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/index.php b/index.php
index 23b0ac40eb..109ed21338 100644
--- a/index.php
+++ b/index.php
@@ -126,6 +126,9 @@ if (isset($_GET['route']) || isset($_POST['route'])) {
$routes->addRoute(['GET', 'POST'], '/forms', function () {
require_once ROOT_PATH . 'libraries/entry_points/preferences/forms.php';
});
+ $routes->addRoute(['GET', 'POST'], '/manage', function () {
+ require_once ROOT_PATH . 'libraries/entry_points/preferences/manage.php';
+ });
});
$routes->addGroup('/server', function (RouteCollector $routes) {
$routes->addRoute(['GET', 'POST'], '/binlog', function () {