1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Remove operator double encode

This commit is contained in:
Jakub Vrana
2010-05-12 16:17:32 +02:00
parent b4eea5f671
commit 22eb69b562

View File

@@ -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) {