From 22eb69b562538e0c0261a798cc6e02802c0cc7c1 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 12 May 2010 16:17:32 +0200 Subject: [PATCH] Remove operator double encode --- adminer/select.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {