1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Rename Min_ classes

This commit is contained in:
Jakub Vrana
2025-03-05 14:12:42 +01:00
parent 45ac930e06
commit 3da09dd31a
18 changed files with 89 additions and 90 deletions

View File

@@ -146,7 +146,7 @@ function auth_error($error) {
exit;
}
if (isset($_GET["username"]) && !class_exists('Adminer\Min_DB')) {
if (isset($_GET["username"]) && !class_exists('Adminer\Db')) {
unset($_SESSION["pwds"][DRIVER]);
unset_permanent();
page_header(lang('No extension'), lang('None of the supported PHP extensions (%s) are available.', implode(", ", $possible_drivers)), false);
@@ -163,7 +163,7 @@ if (isset($_GET["username"]) && is_string(get_password())) {
}
check_invalid_login();
$connection = connect();
$driver = new Min_Driver($connection);
$driver = new Driver($connection);
}
$login = null;