bug #3553068 [import] Table import from XML file fails

This commit is contained in:
Madhura Jayaratne 2012-09-08 10:22:22 +05:30
parent e954a3542c
commit e41f19969a
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ phpMyAdmin - ChangeLog
- bug #3561224 [edit] cell edit date field with empty date fills in current date
- bug #3559955 [edit] current_date from function drop down fails on update
- bug #3562472 add support for Solaris and FreeBSD system load and memory display in server status
- bug #3553068 [import] Table import from XML file fails
3.5.2.2 (2012-08-12)
- [security] Fixed XSS vulnerabilities, see PMASA-2012-4

View File

@ -186,7 +186,7 @@ $data_present = false;
/**
* Only attempt to analyze/collect data if there is data present
*/
if ($xml && @$xml->count()) {
if ($xml && @count($xml->children())) {
$data_present = true;
/**