Twitter bridge - change regex to look for mb @-replies

darcs-hash:20081027191629-462f3-ff16a45754e2370f62ebac06dc38c51981bb6ee6.gz
This commit is contained in:
zach 2008-10-27 15:16:29 -04:00
parent 91ce2ecd70
commit 3b62407067

View File

@ -1146,7 +1146,7 @@ function common_broadcast_notice($notice, $remote=false) {
// If it's not a Twitter-style reply, or if the user WANTS to send replies... // If it's not a Twitter-style reply, or if the user WANTS to send replies...
if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/', $notice->content) || if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
(($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) { (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) {
$result = common_twitter_broadcast($notice, $flink); $result = common_twitter_broadcast($notice, $flink);