From a4fd7b8b9827703de5ab095c1a90dfd5efa33d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Sun, 28 Aug 2016 00:32:16 +0200 Subject: [PATCH] [GooglePlusPostBridge] fix uninitialized $param MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pierre Mazière --- bridges/GooglePlusPostBridge.php | 1 + 1 file changed, 1 insertion(+) diff --git a/bridges/GooglePlusPostBridge.php b/bridges/GooglePlusPostBridge.php index 62414b5..8e7b228 100644 --- a/bridges/GooglePlusPostBridge.php +++ b/bridges/GooglePlusPostBridge.php @@ -20,6 +20,7 @@ class GooglePlusPostBridge extends BridgeAbstract public function collectData() { + $param=$this->parameters[$queriedContext]; if (!isset($param['username']['value'])) { $this->returnClientError('You must specify a username (?username=...).');