From d330d66d8b288068c0c0e295c487c8847024b94b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 21 Jan 2015 01:26:20 +0100 Subject: [PATCH] fbpost: Additional check for empty posts. --- fbpost/fbpost.php | 7 +++++++ 1 file changed, 7 insertions(+) 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);