From 8e6f6a14559cc77ebc16005af75ed491d3b3cbe6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 24 Apr 2012 00:50:54 +0200 Subject: [PATCH] Tumblr: Bugfix --- tumblr/tumblr.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tumblr/tumblr.php b/tumblr/tumblr.php index 85191f747..95755e398 100755 --- a/tumblr/tumblr.php +++ b/tumblr/tumblr.php @@ -185,12 +185,12 @@ function tumblr_send(&$a,&$b) { if ($link != '') { $params['type'] = "link"; - $params['name'] = $b['title'], + $params['name'] = $b['title']; $params['url'] = $link; $params['description'] = bbcode($b['body']); } else { $params['type'] = "regular"; - $params['title'] = $b['title'], + $params['title'] = $b['title']; $params['body'] = bbcode($b['body']); }