Remove search by expression in PDO

This commit is contained in:
Jakub Vrana 2011-09-18 09:07:12 +02:00
parent ed25431f3c
commit b848764299

View file

@ -5,6 +5,11 @@ if (extension_loaded('pdo')) {
var $_result, $server_info, $affected_rows, $error;
function __construct() {
global $adminer;
$pos = array_search("", $adminer->operators);
if ($pos !== false) {
unset($adminer->operators[$pos]);
}
}
function dsn($dsn, $username, $password, $exception_handler = 'auth_error') {