Missing space in index creation/edit generated query

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2014-06-07 09:31:17 -04:00
parent 9342cc6709
commit e2ce71566f
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ phpMyAdmin - ChangeLog
+ Add enforcement of the minimum supported PHP version (5.3.0)
- bug Query error on submitting a column change form containing a disabled input field
- bug Incorrect menu tab generation from usergroups
- bug Missing space in index creation/edit generated query
4.2.2.0 (2014-05-20)
- bug #4388 Disable database expansion when enabled throws Error 500 when database name is clicked in navigation tree

View File

@ -142,7 +142,7 @@ function PMA_getSqlQueryForIndexCreateOrEdit($db, $table, $index, &$error)
}
if (PMA_MYSQL_INT_VERSION > 50500) {
$sql_query .= "COMMENT '"
$sql_query .= " COMMENT '"
. PMA_Util::sqlAddSlashes($index->getComment())
. "'";
}