From d6373d2a05e0fb237d0687502022e4cc17d0a224 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Mon, 27 Jul 2009 09:37:17 +0000 Subject: [PATCH] Typo (fixes #2827668) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@910 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- 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 0db2463b..14f1c8ac 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -33,7 +33,7 @@ foreach ($fields as $key => $field) { function apply_sql_function($function, $column) { return ($function - ? ($function == "distinct" ? "COUNT(DISTINCT " : strtoupper("$function(") . "$column)") + ? ($function == "distinct" ? "COUNT(DISTINCT " : strtoupper("$function(")) . "$column)" : $column ); }