bug 266 - unlike some remote services, tumblr title is optional

This commit is contained in:
friendica 2012-02-05 13:53:39 -08:00
parent 289243f85f
commit 6803d8344c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -172,7 +172,7 @@ function tumblr_send(&$a,&$b) {
$params = array(
'email' => $tmbl_username,
'password' => $tmbl_password,
'title' => (($b['title']) ? $b['title'] : t('Post from Friendica')),
'title' => $b['title'],
'type' => 'regular',
'format' => 'html',
'generator' => 'Friendica',