diff --git a/ChangeLog b/ChangeLog index 7301ef1e1..2fe154d22 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ $Source$ * libraries/display_tbl.lib.php3: removed   from button text, as Konqueror doesn't like it there and it is not needed. * lang/czech: updated. + * libraries/display_tbl.lib.php3: Don't show BLOB text instead of content + when using transformations. 2003-03-17 Marc Delisle * user_password.php3, header.inc.php3, libraries/user_password.js: diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index ed605d96d..c3390c13e 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -1240,7 +1240,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) { // loic1: displays all space characters, 4 space // characters for tabulations and / else { - $row[$pointer] = ($default_function != $transform_function ? $transform_function('BLOB', $transform_options) : $default_function($row[$pointer])); + $row[$pointer] = ($default_function != $transform_function ? $transform_function($row[$pointer], $transform_options) : $default_function($row[$pointer])); $row[$pointer] = str_replace("\011", '    ', str_replace(' ', '  ', $row[$pointer])); $row[$pointer] = ereg_replace("((\015\012)|(\015)|(\012))", '
', $row[$pointer]); }