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:
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 df73fbd99f..12a304afb0 100644
--- a/index.php
+++ b/index.php
@@ -269,6 +269,9 @@ if (isset($_GET['route']) || isset($_POST['route'])) {
$routes->addRoute(['GET', 'POST'], '/overview', function () {
require_once ROOT_PATH . 'libraries/entry_points/transformation/overview.php';
});
+ $routes->addRoute(['GET', 'POST'], '/wrapper', function () {
+ require_once ROOT_PATH . 'libraries/entry_points/transformation/wrapper.php';
+ });
});
$routes->addRoute(['GET', 'POST'], '/user_password', function () {
require_once ROOT_PATH . 'libraries/entry_points/user_password.php';