gpluspost: Don't create the data for the RSS-Feed for Hootsuite, if you can post directly via plugin.

pull/208/head
Michael Vogel 2014-08-13 07:26:53 +02:00
parent 3ec6970d09
commit bcdb734f0e
1 changed files with 14 additions and 13 deletions

View File

@ -233,7 +233,8 @@ function gpluspost_send(&$a,&$b) {
if (!get_pconfig($b["uid"],'gpluspost','no_loop_prevention') and ($b['app'] == "Google+"))
return;
// Always do the export via RSS-Feed (even if NextScripts is enabled), since it doesn't hurt
if (!gpluspost_nextscripts()) {
// Posting via RSS-Feed and Hootsuite
$itemlist = get_pconfig($b["uid"],'gpluspost','itemlist');
$items = explode(",", $itemlist);
@ -249,8 +250,8 @@ function gpluspost_send(&$a,&$b) {
set_pconfig($b["uid"],'gpluspost','itemlist', $itemlist);
} else {
// Posting via NextScripts
if (gpluspost_nextscripts()) {
$username = get_pconfig($b['uid'],'gpluspost','username');
$password = get_pconfig($b['uid'],'gpluspost','password');
$page = get_pconfig($b['uid'],'gpluspost','page');