Patch #2977725 XML export wrongly encoded
This commit is contained in:

committed by
Marc Delisle

parent
86cd86fc51
commit
bb0ad40413
@@ -17,6 +17,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
- patch #2976790 [menu] Go to the upper level after table DROP,
|
- patch #2976790 [menu] Go to the upper level after table DROP,
|
||||||
thanks to Kaarel Nummert - kaarelnu
|
thanks to Kaarel Nummert - kaarelnu
|
||||||
- patch #2978815 [pdf] Fix generating PDF with table dimensions, thanks to BlinK_
|
- patch #2978815 [pdf] Fix generating PDF with table dimensions, thanks to BlinK_
|
||||||
|
- patch #2977725 [export] XML wrongly encoded, thanks to Victor Volkov - hanut
|
||||||
|
|
||||||
3.3.1.0 (2010-03-16)
|
3.3.1.0 (2010-03-16)
|
||||||
- bug #2941037 [core] Database structure not sorted by table correctly
|
- bug #2941037 [core] Database structure not sorted by table correctly
|
||||||
|
@@ -337,7 +337,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
|
|||||||
if (!isset($record[$i]) || is_null($record[$i])) {
|
if (!isset($record[$i]) || is_null($record[$i])) {
|
||||||
$record[$i] = 'NULL';
|
$record[$i] = 'NULL';
|
||||||
}
|
}
|
||||||
$buffer .= ' <column name="' . $columns[$i] . '">' . htmlspecialchars(utf8_encode((string)$record[$i]))
|
$buffer .= ' <column name="' . $columns[$i] . '">' . htmlspecialchars((string)$record[$i])
|
||||||
. '</column>' . $crlf;
|
. '</column>' . $crlf;
|
||||||
}
|
}
|
||||||
$buffer .= ' </table>' . $crlf;
|
$buffer .= ' </table>' . $crlf;
|
||||||
|
Reference in New Issue
Block a user