Don't show BLOB text instead of content

This commit is contained in:
Michal Čihař
2003-03-18 10:21:01 +00:00
parent e4f97ae2f7
commit 04fd122e06
2 changed files with 3 additions and 1 deletions

View File

@@ -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 <lem9@users.sourceforge.net>
* user_password.php3, header.inc.php3, libraries/user_password.js:

View File

@@ -1240,7 +1240,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
// loic1: displays all space characters, 4 space
// characters for tabulations and <cr>/<lf>
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", ' &nbsp;&nbsp;&nbsp;', str_replace(' ', ' &nbsp;', $row[$pointer]));
$row[$pointer] = ereg_replace("((\015\012)|(\015)|(\012))", '<br />', $row[$pointer]);
}