mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 07:36:44 +02:00
Adminer: Fix Search data in tables
This commit is contained in:
@@ -495,6 +495,9 @@ class Adminer {
|
||||
}
|
||||
}
|
||||
foreach ((array) $_GET["where"] as $val) {
|
||||
if ($val["op"] == "") {
|
||||
$val["op"] = "LIKE %%";
|
||||
}
|
||||
if ("$val[col]$val[val]" != "" && in_array($val["op"], $this->operators)) {
|
||||
$cond = " $val[op]";
|
||||
if (preg_match('~IN$~', $val["op"])) {
|
||||
|
@@ -1,2 +1,2 @@
|
||||
<?php
|
||||
$VERSION = "4.4.0";
|
||||
$VERSION = "4.4.1-dev";
|
||||
|
@@ -1,3 +1,6 @@
|
||||
Adminer 4.4.1-dev:
|
||||
Adminer: Fix Search data in tables (regression from 4.4.0)
|
||||
|
||||
Adminer 4.4.0 (released 2018-01-17):
|
||||
Add Content Security Policy
|
||||
Disallow scripts without nonce
|
||||
|
Reference in New Issue
Block a user