From: Michael Vogel Date: Wed, 21 Jan 2015 00:26:20 +0000 (+0100) Subject: fbpost: Additional check for empty posts. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=d330d66d8b288068c0c0e295c487c8847024b94b;p=friendica-addons.git fbpost: Additional check for empty posts. --- diff --git a/fbpost/fbpost.php b/fbpost/fbpost.php index 7c10d7c3..5fa6e431 100644 --- a/fbpost/fbpost.php +++ b/fbpost/fbpost.php @@ -987,6 +987,7 @@ function fbpost_fetchwall($a, $uid) { require_once("include/network.php"); require_once("include/items.php"); require_once("mod/item.php"); + require_once("include/bbcode.php"); $access_token = get_pconfig($uid,'facebook','access_token'); $post_to_page = get_pconfig($uid,'facebook','post_to_page'); @@ -1156,6 +1157,12 @@ function fbpost_fetchwall($a, $uid) { continue; } + if(trim(strip_tags(bbcode($_REQUEST["body"], false, false))) == '') { + logger('facebook: empty body 4 '.$item->id.' '.print_r($item, true)); + continue; + } + + //print_r($_REQUEST); logger('facebook: posting for user '.$uid); item_post($a);