* db_details.php3: feature request #451138: display # of tables,

* left.php3: added display of # of tables, for a better overview
        * config.php3, lib.inc.php3, docs: feature request #451137:
This commit is contained in:
Olivier Müller
2001-08-15 17:35:58 +00:00
parent 9e25784d3f
commit 65340286de
30 changed files with 48 additions and 4 deletions

View File

@@ -856,7 +856,7 @@ window.parent.frames['nav'].location.replace('./left.php3?lang=<?php echo $GLOBA
{
global $lang, $server, $db, $table;
global $sql_query, $goto, $pos;
global $SelectNumRows;
global $SelectNumRows, $cfgLimitChars;
// Gets the number of rows per page
if (isset($GLOBALS['sessionMaxRows'])) {
@@ -1131,6 +1131,9 @@ var errorMsg2 = '<?php echo(str_replace('\'', '\\\'', $GLOBALS['strNotValidNumbe
if (eregi('BLOB', $true_field_type['Type'])) {
echo ' <td align="right">&nbsp;[BLOB]&nbsp;</td>' . "\n";
} else {
if (strlen($row[$i]) > $cfgLimitChars){
$row[$i] = substr($row[$i],0,$cfgLimitChars) . "...";
}
echo ' <td>&nbsp;' . htmlspecialchars($row[$i]) . '&nbsp;</td>' . "\n";
}
} else {