Allow Diaspora to post to forums
This commit is contained in:
parent
48a5a2484e
commit
c1cf6e48c2
2
boot.php
2
boot.php
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '2.3.1215' );
|
define ( 'FRIENDICA_VERSION', '2.3.1216' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.22' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.22' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1115 );
|
define ( 'DB_UPDATE_VERSION', 1115 );
|
||||||
|
|
||||||
|
|
|
@ -945,10 +945,15 @@ function tgroup_deliver($uid,$item_id) {
|
||||||
|
|
||||||
$link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
|
$link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
|
||||||
|
|
||||||
|
// Diaspora uses their own hardwired link URL in @-tags
|
||||||
|
// instead of the one we supply with webfinger
|
||||||
|
|
||||||
|
$dlink = normalise_link($a->get_baseurl() . '/u/' . $u[0]['nickname']);
|
||||||
|
|
||||||
$cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
|
$cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
foreach($matches as $mtch) {
|
foreach($matches as $mtch) {
|
||||||
if(link_compare($link,$mtch[1])) {
|
if(link_compare($link,$mtch[1]) || link_compare($dlink,$mtch[1])) {
|
||||||
$deliver_to_tgroup = true;
|
$deliver_to_tgroup = true;
|
||||||
logger('tgroup_deliver: local group mention found: ' . $mtch[2]);
|
logger('tgroup_deliver: local group mention found: ' . $mtch[2]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue