Followup fix for ticket 1672: Twitter bridge !group->#hash conversion will now happen regardless of whether account was configured with oauth or basic auth (previously applied only on the oauth path)
This commit is contained in:
parent
c9d64c3489
commit
8632974131
|
@ -170,8 +170,6 @@ function broadcast_twitter($notice)
|
||||||
function broadcast_oauth($notice, $flink) {
|
function broadcast_oauth($notice, $flink) {
|
||||||
$user = $flink->getUser();
|
$user = $flink->getUser();
|
||||||
$statustxt = format_status($notice);
|
$statustxt = format_status($notice);
|
||||||
// Convert !groups to #hashes
|
|
||||||
$statustxt = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/', "\\1#\\2", $statustxt);
|
|
||||||
$token = TwitterOAuthClient::unpackToken($flink->credentials);
|
$token = TwitterOAuthClient::unpackToken($flink->credentials);
|
||||||
$client = new TwitterOAuthClient($token->key, $token->secret);
|
$client = new TwitterOAuthClient($token->key, $token->secret);
|
||||||
$status = null;
|
$status = null;
|
||||||
|
@ -290,7 +288,12 @@ function process_error($e, $flink, $notice)
|
||||||
function format_status($notice)
|
function format_status($notice)
|
||||||
{
|
{
|
||||||
// XXX: Hack to get around PHP cURL's use of @ being a a meta character
|
// XXX: Hack to get around PHP cURL's use of @ being a a meta character
|
||||||
return preg_replace('/^@/', ' @', $notice->content);
|
$statustxt = preg_replace('/^@/', ' @', $notice->content);
|
||||||
|
|
||||||
|
// Convert !groups to #hashes
|
||||||
|
$statustxt = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/', "\\1#\\2", $statustxt);
|
||||||
|
|
||||||
|
return $statustxt;
|
||||||
}
|
}
|
||||||
|
|
||||||
function remove_twitter_link($flink)
|
function remove_twitter_link($flink)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user