aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2012-06-22 18:38:32 -0600
committerZach Prezkuta <fermion@gmx.com>2012-06-22 20:45:37 -0600
commit9c9e72704215aad390d440825a6fa7ba0f468e7e (patch)
treeed4747ba5bcaee2679610cf8a966087913f315ae
parent7b219649a41198c3bc6f289b68ddc0cfd8b88c63 (diff)
downloadvolse-hubzilla-9c9e72704215aad390d440825a6fa7ba0f468e7e.tar.gz
volse-hubzilla-9c9e72704215aad390d440825a6fa7ba0f468e7e.tar.bz2
volse-hubzilla-9c9e72704215aad390d440825a6fa7ba0f468e7e.zip
cleanup lists and more comment signature stuff
-rw-r--r--include/bb2diaspora.php15
1 files changed, 13 insertions, 2 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php
index d7324a4ad..6f8f92514 100644
--- a/include/bb2diaspora.php
+++ b/include/bb2diaspora.php
@@ -67,7 +67,9 @@ function stripdcode_br_cb($s) {
function diaspora_ul($s) {
- return str_replace('[\\*]', "* ", $s[1]);
+ // Replace "[\\*]" followed by any number (including zero) of
+ // spaces by "* " to match Diaspora's list format
+ return preg_replace("/\[\\\\\*\]( *)/", "* ", $s[1]);
}
@@ -77,7 +79,7 @@ function diaspora_ol($s) {
// 1. First element
// 1. Second element
// 1. Third element
- return str_replace('[\\*]', "1. ", $s[1]);
+ return preg_replace("/\[\\\\\*\]( *)/", "1. ", $s[1]);
}
@@ -98,6 +100,11 @@ function bb2diaspora($Text,$preserve_nl = false) {
if($preserve_nl)
$Text = str_replace(array("\n","\r"), array('',''),$Text);
+ else
+ // Remove the "return" character, as Diaspora uses only the "newline"
+ // character, so having the "return" character can cause signature
+ // failures
+ $Text = str_replace("\r", "", $Text);
// Set up the parameters for a URL search string
$URLSearchString = "^\[\]";
@@ -244,6 +251,10 @@ function bb2diaspora($Text,$preserve_nl = false) {
$Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
$Text = preg_replace_callback('/\[(.*?)\]\((.*?)\)/ism','unescape_underscores_in_links',$Text);
+
+ // Remove any leading or trailing whitespace, as this will mess up
+ // the Diaspora signature verification and cause the item to disappear
+ $Text = trim($Text);
call_hooks('bb2diaspora',$Text);