Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2004-01-20 23:24:00 +0300
committerMarc Delisle <marc@infomarc.info>2004-01-20 23:24:00 +0300
commitf8d049ace566b2a2ae2dd9dd61f22664b6e7a563 (patch)
treef85e6a35aa99a4b6536795cb03e814bb2b61775f /tbl_printview.php
parentb0cc4dbb237fa3ab6a5749d173e3a8b5c12de471 (diff)
use PMA_DBI function
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 9503d0a372..e9684c3a18 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -85,7 +85,7 @@ foreach($the_tables AS $key => $table) {
$num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
$show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
if ($result) {
- mysql_free_result($result);
+ PMA_DBI_free_result($result);
}
@@ -128,7 +128,7 @@ foreach($the_tables AS $key => $table) {
} // end while
if ($result) {
- mysql_free_result($result);
+ PMA_DBI_free_result($result);
}
@@ -286,7 +286,7 @@ foreach($the_tables AS $key => $table) {
</tr>
<?php
} // end while
- mysql_free_result($result);
+ PMA_DBI_free_result($result);
echo "\n";
?>