From c8f484e4a51c99818fceb49f22e793b37a846826 Mon Sep 17 00:00:00 2001 From: Domovoy Date: Tue, 24 Jul 2012 17:22:56 +0200 Subject: [PATCH 1/2] Rplace spaces with undercores in tags --- include/diaspora.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index af9a91f028..a3473a8b73 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2120,6 +2120,11 @@ function diaspora_unshare($me,$contact) { } +function diaspora_replace_tags_callback($matches) { + $result = '#'. str_replace(' ', '_', $matches[2]); + return $result; +} + function diaspora_send_status($item,$owner,$contact,$public_batch = false) { @@ -2154,8 +2159,12 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) { } } */ - // Removal of tags - $body = preg_replace('/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '#$2', $body); + /** + * Transform #tags, strip off the [url] and replace spaces with underscore + */ + $body = preg_replace_callback('/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', function($match) { + return '#'. str_replace(' ', '_', $match[2]); + }, $body); //if(strlen($title)) // $body = "[b]".html_entity_decode($title)."[/b]\n\n".$body; From 50d1bdd902d21d58864715a620de2e682eb4230f Mon Sep 17 00:00:00 2001 From: Domovoy Date: Tue, 24 Jul 2012 17:32:13 +0200 Subject: [PATCH 2/2] Removed useless function --- include/diaspora.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index a3473a8b73..cea66db0c0 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2120,12 +2120,6 @@ function diaspora_unshare($me,$contact) { } -function diaspora_replace_tags_callback($matches) { - $result = '#'. str_replace(' ', '_', $matches[2]); - return $result; -} - - function diaspora_send_status($item,$owner,$contact,$public_batch = false) { $a = get_app();