mirror of
https://github.com/YunoHost-Apps/adminer_ynh.git
synced 2024-09-03 18:06:06 +02:00
14 lines
260 B
PHP
14 lines
260 B
PHP
<?php
|
|
function adminer_object() {
|
|
|
|
class AdminerNoRoot extends Adminer {
|
|
|
|
function login($login, $password) {
|
|
return ($login != 'root');
|
|
}
|
|
|
|
}
|
|
|
|
return new AdminerNoRoot;
|
|
}
|
|
include "./adminer.php";
|