diff --git a/lib.inc.php3 b/lib.inc.php3 index e8218366e..84ae07b72 100755 --- a/lib.inc.php3 +++ b/lib.inc.php3 @@ -1203,7 +1203,7 @@ var errorMsg2 = 'numeric == 1) { - echo ' ' . $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 @@ -1219,15 +1219,15 @@ var errorMsg2 = '/ - // echo ' ' . htmlspecialchars($row[$i]) . '' . "\n"; + // echo ' ' . htmlspecialchars($row[$i]) . ' ' . "\n"; $row[$i] = ereg_replace("((\015\012)|(\015)|(\012))+", '
', htmlspecialchars($row[$i])); - echo ' ' . $row[$i] . '' . "\n"; + echo ' ' . $row[$i] . ' ' . "\n"; } } else { // loic1 : displays / - // echo ' ' . htmlspecialchars($row[$i]) . '' . "\n"; + // echo ' ' . htmlspecialchars($row[$i]) . ' ' . "\n"; $row[$i] = ereg_replace("((\015\012)|(\015)|(\012))+", '
', htmlspecialchars($row[$i])); - echo ' ' . $row[$i] . '' . "\n"; + echo ' ' . $row[$i] . ' ' . "\n"; } } // end for // Possibility to have the modify/delete button on the left added