summaryrefslogtreecommitdiff
path: root/modules/blogapi
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-04-13 19:03:36 +0000
committerDries Buytaert <dries@buytaert.net>2005-04-13 19:03:36 +0000
commitf401bbf048ec46157cee379bba81dd87797797bb (patch)
treed5e828595eda2fc54cbd1e35dd4b1a2c0dd09afa /modules/blogapi
parent293daa48201d344b231c80a1659f13f421caf9e5 (diff)
downloadbrdo-f401bbf048ec46157cee379bba81dd87797797bb.tar.gz
brdo-f401bbf048ec46157cee379bba81dd87797797bb.tar.bz2
- Patch #19406 by David: fixed problem with posting using BloggerAPI.
Diffstat (limited to 'modules/blogapi')
-rw-r--r--modules/blogapi/blogapi.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index 016137767..f584e2c52 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -507,7 +507,7 @@ function blogapi_blogger_title(&$contents) {
$contents = ereg_replace('<title>[^<]*</title>', '', $contents);
}
else {
- list($title, $rest) = explode("\n", $contents, 2);
+ list($title, $contents) = explode("\n", $contents, 2);
}
return $title;
}