don't distribute when restoring archived delicious bookmarks

This commit is contained in:
Evan Prodromou 2010-12-29 14:52:43 -08:00
parent 3fea4aba7f
commit 2d576aea30

View File

@ -97,11 +97,12 @@ class DeliciousBookmarkImporter extends QueueHandler
$created = common_sql_date(intval($addDate)); $created = common_sql_date(intval($addDate));
$saved = Bookmark::saveNew($user->getProfile(), $saved = Bookmark::saveNew($user->getProfile(),
$title, $title,
$url, $url,
$tags, $tags,
$description, $description,
array('created' => $created)); array('created' => $created,
'distribute' => false));
return true; return true;
} }