From 4d1f628a8b2ed3a468e2988c589df2e6c2d6b36e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sat, 10 May 2003 16:13:17 +0000 Subject: [PATCH] Fix not displaying content of TEXT fields (was treated like BLOB). --- libraries/display_tbl.lib.php3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 3db90b15f..757fbc727 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -1193,7 +1193,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { // TEXT fields type, however TEXT fields must be displayed // even if $cfg['ShowBlob'] is false -> get the true type // of the fields. - + $field_flags = PMA_mysql_field_flags($dt_result, $i); if (eregi('BINARY', $field_flags)) { $blobtext = '[BLOB'; if (isset($row[$pointer])) {