Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Peccatte <hugues.peccatte@gmail.com>2014-10-08 23:49:37 +0400
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-10-08 23:49:37 +0400
commit70a21ec25cd8ab9abbda5f47c424440a6a43d399 (patch)
treea043474ab6ffe34fc5010bc5fd803236bf95140c /tbl_change.php
parent9ca79b379de130dcdbdd531855d5e8cef2ba5f05 (diff)
parent5f8d081411080493c61f53cf529850cddae139b4 (diff)
Merge from master.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/tbl_change.php b/tbl_change.php
index 2bdf67733a..899f743b45 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -135,7 +135,10 @@ $url_params = PMA_urlParamsInEditMode(
$has_blob_field = false;
foreach ($table_columns as $column) {
- if (PMA_isColumnBlob($column)) {
+ if (PMA_isColumn(
+ $column,
+ array('blob', 'tinyblob', 'mediumblob', 'longblob')
+ )) {
$has_blob_field = true;
break;
}