Don't show BLOB text instead of content
This commit is contained in:
@@ -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:
|
||||
|
@@ -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", ' ', str_replace(' ', ' ', $row[$pointer]));
|
||||
$row[$pointer] = ereg_replace("((\015\012)|(\015)|(\012))", '<br />', $row[$pointer]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user