diff --git a/lib.inc.php3 b/lib.inc.php3 index 8ec9d58af..6802c1c2c 100755 --- a/lib.inc.php3 +++ b/lib.inc.php3 @@ -980,7 +980,7 @@ var errorMsg2 = ' -
' . $row[$i] . ' | ' . "\n"; + echo '' . $row[$i] . ' | ' . "\n"; } else if ($GLOBALS['cfgShowBlob'] == FALSE && eregi('BLOB', $primary->type)) { // loic1 : mysql_fetch_fields returns BLOB in place of TEXT // fields type, however TEXT fields must be displayed even @@ -1182,21 +1182,21 @@ var errorMsg2 = 'table) . ' LIKE \'' . sql_addslashes($primary->name, TRUE) . '\'') or mysql_die(); $true_field_type = mysql_fetch_array($result_type); if (eregi('BLOB', $true_field_type['Type'])) { - echo '[BLOB] | ' . "\n"; + echo '[BLOB] | ' . "\n"; } else { if (strlen($row[$i]) > $GLOBALS['cfgLimitChars']) { $row[$i] = substr($row[$i], 0, $GLOBALS['cfgLimitChars']) . '...'; } // loic1 : displays' . htmlspecialchars($row[$i]) . ' | ' . "\n"; + // echo '' . htmlspecialchars($row[$i]) . ' | ' . "\n"; $row[$i] = ereg_replace("((\015\012)|(\015)|(\012))+", '' . $row[$i] . ' | ' . "\n"; + echo '' . $row[$i] . ' | ' . "\n"; } } else { // loic1 : displays' . htmlspecialchars($row[$i]) . ' | ' . "\n"; + // echo '' . htmlspecialchars($row[$i]) . ' | ' . "\n"; $row[$i] = ereg_replace("((\015\012)|(\015)|(\012))+", '' . $row[$i] . ' | ' . "\n"; + echo '' . $row[$i] . ' | ' . "\n"; } } // end for // Possibility to have the modify/delete button on the left added