From: Tobias Hößl Date: Sun, 26 Feb 2012 20:36:24 +0000 (+0000) Subject: Bugfix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b83a5a74241c2abeea45ad674fed958468896b0b;p=friendica-addons.git Bugfix --- diff --git a/facebook/facebook.php b/facebook/facebook.php index cc8b85cd..039b27ff 100755 --- a/facebook/facebook.php +++ b/facebook/facebook.php @@ -84,7 +84,7 @@ function facebook_init(&$a) { if (x($_REQUEST, "realtime_cb") && x($_REQUEST, "realtime_cb")) { logger("facebook_init: Facebook Real-Time callback called", LOGGER_DEBUG); - if (x($_REQUEST["hub_verify_token"])) { + if (x($_REQUEST, "hub_verify_token")) { // this is the verification callback while registering for real time updates $verify_token = get_config('facebook', 'cb_verify_token');