From 8a83391ce54ee642c38fdd62c41442ccd7f6e220 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 13 Jun 2017 11:38:34 +1000 Subject: [PATCH] Fix #13372 Current collation not shown / pre-selected in Table Operations Signed-off-by: Madhura Jayaratne --- libraries/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Table.php b/libraries/Table.php index 9a19c5df4e..9d050be638 100644 --- a/libraries/Table.php +++ b/libraries/Table.php @@ -351,7 +351,7 @@ class Table * @return string Return blank if collation is empty else return the collation info from table info. */ public function getCollation() { - $table_collation = $this->getStatusInfo('COLLATION', false, true); + $table_collation = $this->getStatusInfo('TABLE_COLLATION', false, true); if ($table_collation === false) { return ''; }