* 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:
@@ -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"> [BLOB] </td>' . "\n";
|
||||
} else {
|
||||
if (strlen($row[$i]) > $cfgLimitChars){
|
||||
$row[$i] = substr($row[$i],0,$cfgLimitChars) . "...";
|
||||
}
|
||||
echo ' <td> ' . htmlspecialchars($row[$i]) . ' </td>' . "\n";
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user