From: Michael Vogel Date: Thu, 28 May 2015 20:30:32 +0000 (+0200) Subject: gpluspost: The path to postToGooglePlus.php was wrong. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9be60fbd33ce1eeadcecf69e610d921117d320b9;p=friendica-addons.git gpluspost: The path to postToGooglePlus.php was wrong. --- diff --git a/gpluspost/gpluspost.php b/gpluspost/gpluspost.php index f9459b5a..a5cbc932 100644 --- a/gpluspost/gpluspost.php +++ b/gpluspost/gpluspost.php @@ -98,7 +98,7 @@ function gpluspost_settings(&$a,&$s) { /* // To-Do: Option to check the credentials if requested if (($username != "") AND ($password != "")) { - require_once("addon/googleplus/postToGooglePlus.php"); + require_once("addon/gpluspost/postToGooglePlus.php"); $loginError = doConnectToGooglePlus2($username, $password); if ($loginError) $s .= '

Login Error. Please enter the correct credentials.

'; @@ -348,7 +348,7 @@ function gpluspost_queue_hook(&$a,&$b) { $success = false; if($username && $password) { - require_once("addon/googleplus/postToGooglePlus.php"); + require_once("addon/gpluspost/postToGooglePlus.php"); logger('gpluspost_queue: able to post for user '.$username);