From bd2543d1b6b5dae05476d03300ce3d6a1c65bcdf Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Fri, 14 Apr 2017 17:23:35 +0300 Subject: [PATCH] Fixed query that is used in designer. Previously, it was using the htmlspecialchars(tbl_name) instead of the real table name. Signed-off-by: Dan Ungureanu --- libraries/pmd_common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 73b77dd7a6..67f7ee7894 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -87,7 +87,7 @@ function PMA_getColumnsInfo() $fields_rs = $GLOBALS['dbi']->query( $GLOBALS['dbi']->getColumnsSql( $GLOBALS['db'], - $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i], + $GLOBALS['PMD_URL']["TABLE_NAME_SMALL"][$i], null, true ),