forked from GNUsocial/gnu-social
Merge commit 'refs/merge-requests/2227' of git://gitorious.org/statusnet/mainline into merge-requests/2227
This commit is contained in:
commit
f21f09f8b8
@ -339,7 +339,7 @@ class TwitterBridgePlugin extends Plugin
|
||||
$versions[] = array(
|
||||
'name' => 'TwitterBridge',
|
||||
'version' => self::VERSION,
|
||||
'author' => 'Zach Copley, Julien C',
|
||||
'author' => 'Zach Copley, Julien C, Jean Baptiste Favre',
|
||||
'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge',
|
||||
// TRANS: Plugin description.
|
||||
'rawdescription' => _m('The Twitter "bridge" plugin allows integration ' .
|
||||
|
@ -120,9 +120,9 @@ function is_twitter_bound($notice, $flink) {
|
||||
|
||||
// If it's not a Twitter-style reply, or if the user WANTS to send replies,
|
||||
// or if it's in reply to a twitter notice
|
||||
if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
|
||||
(($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY) ||
|
||||
is_twitter_notice($notice->reply_to)) {
|
||||
if ( (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY) ||
|
||||
(is_twitter_notice($notice->reply_to) || is_twitter_notice($notice->repeat_of)) ||
|
||||
(empty($notice->reply_to) && !preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content)) ){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user