RFE #856503: Show numbers of rows in print view

This commit is contained in:
Garvin Hicking
2003-12-11 11:04:51 +00:00
parent 56edf51600
commit ecdbf7e581
2 changed files with 4 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ $Id$
$Source$ $Source$
2003-12-11 Garvin Hicking <me@supergarv.de> 2003-12-11 Garvin Hicking <me@supergarv.de>
* header_printview.inc.php: RFE #856503, show number of rows in printview
* tbl_replace.php, tbl_replace_fields.php: Fixed #857445, #857684 * tbl_replace.php, tbl_replace_fields.php: Fixed #857445, #857684
where non-existant fields caused PHP notices. where non-existant fields caused PHP notices.

View File

@@ -59,6 +59,9 @@ if ($text_dir == 'ltr') {
<b><?php echo $strGenTime; ?>:</b> <?php echo PMA_localisedDate(); ?><br /> <b><?php echo $strGenTime; ?>:</b> <?php echo PMA_localisedDate(); ?><br />
<b><?php echo $strGenBy; ?>:</b> phpMyAdmin <?php echo PMA_VERSION; ?><br /> <b><?php echo $strGenBy; ?>:</b> phpMyAdmin <?php echo PMA_VERSION; ?><br />
<b><?php echo $strSQLQuery; ?>:</b> <?php echo htmlspecialchars($full_sql_query); ?>; <b><?php echo $strSQLQuery; ?>:</b> <?php echo htmlspecialchars($full_sql_query); ?>;
<?php if (isset($num_rows)) { ?><br />
<b><?php echo $strRows; ?>:</b> <?php echo $num_rows; ?>
<?php } ?>
</p> </p>