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
1 changed files with 6 additions and 5 deletions

View File

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