Skip to content

Commit

Permalink
Merge branch 'QA_4_6'
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Mar 9, 2016
2 parents 8b87d14 + ace1faa commit 590593c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ phpMyAdmin - ChangeLog
- issue #12054 Fixed processing of queries with escaped quotes
- issue #12041 Fixed exporting tables with fields DEFAULT and COMMENT
- issue #12073 Hide edit and delete buttons when the results are not related to a table
- issue #12083 Fixed parsing of field definition

4.5.5.1 (2016-02-29)
- issue #11971 CREATE UNIQUE INDEX index type is not recognized by parser.
Expand Down
2 changes: 1 addition & 1 deletion libraries/tbl_columns_definition_form.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
// differs from the ones of the corresponding database.
// rtrim the type, for cases like "float unsigned"
$type = rtrim(
mb_ereg_replace('[\w\W]character set[\w\W]*', '', $type)
preg_replace('/[\s]character set[\s][\S]+/', '', $type)
);

/**
Expand Down

0 comments on commit 590593c

Please sign in to comment.