Skip to content

Commit

Permalink
60-remote-subscribe-johannes
Browse files Browse the repository at this point in the history
  • Loading branch information
voitto committed Jul 20, 2009
1 parent dd6eb7f commit 499adb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/omb/plugins/omb.php
Original file line number Diff line number Diff line change
Expand Up @@ -933,12 +933,12 @@ function oauth_authorize( &$vars ) {
'omb_listener_avatar' => $i->avatar
);

$profileparams = "";
$profileparams = "?";

foreach($omb_subscriber as $key=>$item)
$profileparams .= "&".$key."=".urlencode($item);
$profileparams .= $key."=".urlencode($item).'&';

$profileparams .= "&oauth_token=".$token;
$profileparams .= "oauth_token=".$token;

header('Location: '.urldecode($_GET['oauth_callback']).$profileparams,true,303);
} else {
Expand Down

0 comments on commit 499adb0

Please sign in to comment.