From: Evan Prodromou Date: Wed, 20 Jul 2011 15:47:55 +0000 (-0400) Subject: fix call to Notice::saveNew() in Ostatus_profile::processShare() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ebc5d6f676de5daa37985c86f5e1a2e48e4c9f4d;p=quix0rs-gnu-social.git fix call to Notice::saveNew() in Ostatus_profile::processShare() --- diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 2412638ecc..64094803ca 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -695,7 +695,7 @@ class Ostatus_profile extends Managed_DataObject $notice = Notice::saveNew($oprofile->profile_id, $content, 'ostatus', - $content); + $options); return $notice; }