From b0bfb5a4666b3c41633efbeb3daf13014a891d4e Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Fri, 12 Dec 2008 13:35:47 +0000 Subject: [PATCH] English comments git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@541 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- select.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select.inc.php b/select.inc.php index a66c37ad..f36e38e6 100644 --- a/select.inc.php +++ b/select.inc.php @@ -42,7 +42,7 @@ foreach ((array) $_GET["where"] as $val) { } elseif (ereg('IN$', $val["op"]) && !strlen($in = process_length($val["val"]))) { $where[] = "0"; } else { - $cond = " $val[op]" . (ereg('NULL$', $val["op"]) ? "" : (ereg('IN$', $val["op"]) ? " ($in)" : " '" . $mysql->escape_string($val["val"]) . "'")); //! hledá i v číselných hodnotách + $cond = " $val[op]" . (ereg('NULL$', $val["op"]) ? "" : (ereg('IN$', $val["op"]) ? " ($in)" : " '" . $mysql->escape_string($val["val"]) . "'")); //! this searches in numeric values too if (strlen($val["col"])) { $where[] = idf_escape($val["col"]) . $cond; } else {