Fix assignment. Props Rasmus Lerdorf via ConFoo presentation.

git-svn-id: https://develop.svn.wordpress.org/trunk@13684 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-03-12 19:32:48 +00:00
parent e215851f8d
commit 3a5b7f065b
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class Blogger_Import {
if ( $tag['tag'] == 'TITLE' ) {
$blog['title'] = $tag['value'];
} elseif ( $tag['tag'] == 'SUMMARY' ) {
$blog['summary'] == $tag['value'];
$blog['summary'] = $tag['value'];
} elseif ( $tag['tag'] == 'LINK' ) {
if ( $tag['attributes']['REL'] == 'alternate' && $tag['attributes']['TYPE'] == 'text/html' ) {
$parts = parse_url( $tag['attributes']['HREF'] );