mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 17:20:07 +00:00
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:
@@ -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'] );
|
||||
|
||||
Reference in New Issue
Block a user