From: Jakub Vrana Date: Wed, 12 May 2010 14:17:32 +0000 (+0200) Subject: Remove operator double encode X-Git-Tag: v3.0.0~118 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=22eb69b562538e0c0261a798cc6e02802c0cc7c1;p=adminer.git Remove operator double encode --- diff --git a/adminer/select.inc.php b/adminer/select.inc.php index 21fc91a9..c799000a 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -303,7 +303,7 @@ if (!$columns) { $i = 0; foreach ((array) $_GET["where"] as $v) { if (!array_key_exists($v["col"], $unique_array)) { - $link .= h(where_link($i++, $v["col"], $v["val"], urlencode($v["op"]))); + $link .= h(where_link($i++, $v["col"], $v["val"], $v["op"])); } } foreach ($unique_array as $k => $v) {