From: Michael Date: Sun, 28 Jan 2018 14:06:02 +0000 (+0000) Subject: Function needed to be public, not private X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e080ea03c04373cbd5a5719a418054abcf81c62c;p=friendica.git Function needed to be public, not private --- diff --git a/src/Model/Item.php b/src/Model/Item.php index ebfca31086..18606e1690 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -896,7 +896,7 @@ class Item * * @param integer $itemid Item ID that should be added */ - private static function addShadowPost($itemid) + public static function addShadowPost($itemid) { $item = dba::selectFirst('item', [], ['id' => $itemid]); if (!DBM::is_result($item)) {