From 0467faba78c85041bd5889a1c3c44baf70134ab8 Mon Sep 17 00:00:00 2001 From: Mike Little Date: Tue, 21 Oct 2003 23:20:55 +0000 Subject: [PATCH] Updated for new format thanks to Rantor http://wordpress.org/support/2/769 git-svn-id: https://develop.svn.wordpress.org/trunk@459 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/links.import.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-admin/links.import.php b/wp-admin/links.import.php index 094eef2b6f..d87ca86091 100644 --- a/wp-admin/links.import.php +++ b/wp-admin/links.import.php @@ -103,12 +103,13 @@ switch ($step) { else { $opml = implode('', file($opml_url)); - preg_match_all('//', $opml, $items); + // Updated for new format thanks to Rantor http://wordpress.org/support/2/769 + preg_match_all('//',$opml,$items); $names = $items[1]; $types = $items[2]; $urls = $items[3]; - $titles = $items[4]; - $targets = $items[5]; + $titles = $items[5]; + $targets = $items[6]; $link_count = count($names); for ($i = 0; $i < $link_count; $i++) { if ('Last' == substr($titles[$i], 0, 4))