OPML import fix from Thomas

master
Andrew Dolgov 19 years ago
parent 49a0dd3d3f
commit d212ce0e93

@ -36,8 +36,15 @@
function startElement($parser, $name, $attrs) {
if ($name == "OUTLINE") {
$title = db_escape_string($attrs['TEXT']);
$url = db_escape_string($attrs['XMLURL']);
if ($name == "OUTLINE") {
$title = $attrs["TEXT"];
$url = $attrs["XMLURL"];
if (!$title) {
$title = $attrs['TITLE'];
}
}
if (!$title || !$url) return;

Loading…
Cancel
Save