diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-21 21:09:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-21 21:09:50 +0000 |
commit | 7b49a436d0eb128b26cb2a427731074f0a9fce2b (patch) | |
tree | 9253d2ed30ec0ab1d8979464fe8fc845d0103b73 /lib/ui.lib.php | |
parent | 7935a4a78558ed918e009d9a3f84f242dfaa88ea (diff) | |
download | ampache-7b49a436d0eb128b26cb2a427731074f0a9fce2b.tar.gz ampache-7b49a436d0eb128b26cb2a427731074f0a9fce2b.tar.bz2 ampache-7b49a436d0eb128b26cb2a427731074f0a9fce2b.zip |
patched flaw in getid3() fixed a problem with vainfo and songs with no tags and fixed the xml_from_array() function
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index e08cab14..f4f5e3bd 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -1343,6 +1343,7 @@ function get_user_icon($name) { function xml_from_array($array,$callback=0) { foreach ($array as $key=>$value) { + if (is_numeric($key)) { $key = 'item'; } if (is_array($value)) { $value = xml_from_array($value,1); $string .= "\t<$key>$value</$key>\n"; |