Use PMA_DBI_fetch_row and drop PHP 3 compatibility code.

This commit is contained in:
Michal Čihař
2004-04-14 13:51:11 +00:00
parent c96042f9e1
commit 2f2a918a27
2 changed files with 5 additions and 4 deletions

View File

@@ -17,6 +17,8 @@ $Source$
libraries/export/*: Support for enclosing SQL export in transaction (RFE
#930827).
* libraries/export/csv.php: Do not strip export too much (bug #913988).
* libraries/export/xml.php: Use PMA_DBI_fetch_row and drop PHP 3
compatibility code.
2004-04-13 Marc Delisle <lem9@users.sourceforge.net>
* libraries/relation.lib.php: bug 930445 when PMA_table_info not defined,

View File

@@ -135,12 +135,11 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$buffer = ' <!-- ' . $GLOBALS['strTable'] . ' ' . $table . ' -->' . $crlf;
if (!PMA_exportOutputHandler($buffer)) return FALSE;
while ($record = PMA_DBI_fetch_assoc($result)) {
while ($record = PMA_DBI_fetch_row($result)) {
$buffer = ' <' . $table . '>' . $crlf;
for ($i = 0; $i < $columns_cnt; $i++) {
// There is no way to dectect a "NULL" value with PHP3
if ( isset($record[$columns[$i]]) && (!function_exists('is_null') || !is_null($record[$columns[$i]]))) {
$buffer .= ' <' . $columns[$i] . '>' . htmlspecialchars(stripslashes($record[$columns[$i]]))
if ( isset($record[$i]) && !is_null($record[$i])) {
$buffer .= ' <' . $columns[$i] . '>' . htmlspecialchars($record[$i])
. '</' . $columns[$i] . '>' . $crlf;
}
}