aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Lib/MarkdownSoap.php17
-rwxr-xr-xinclude/items.php2
2 files changed, 13 insertions, 6 deletions
diff --git a/Zotlabs/Lib/MarkdownSoap.php b/Zotlabs/Lib/MarkdownSoap.php
index a0214bbe4..534ad819f 100644
--- a/Zotlabs/Lib/MarkdownSoap.php
+++ b/Zotlabs/Lib/MarkdownSoap.php
@@ -77,15 +77,22 @@ class MarkdownSoap {
}
function purify($s) {
-// $s = str_replace("\n",'<br>',$s);
-// $s = str_replace("\t",'&nbsp;&nbsp;&nbsp;&nbsp;',$s);
-// $s = str_replace(' ','&nbsp;',$s);
+ $s = $this->protect_autolinks($s);
$s = purify_html($s);
-// $s = str_replace(['&nbsp;', mb_convert_encoding('&#x00a0;','UTF-8','HTML-ENTITIES')], [ ' ', ' ' ],$s);
-// $s = str_replace(['<br>','<br />', '&lt;', '&gt;' ],["\n","\n", '<', '>'],$s);
+ $s = $this->unprotect_autolinks($s);
return $s;
}
+ function protect_autolinks($s) {
+ $s = preg_replace('/\<(https?\:\/\/)(.*?)\>/','[$1$2]($1$2)',$s);
+ return $s;
+ }
+
+ function unprotect_autolinks($s) {
+ return $s;
+
+ }
+
function escape($s) {
return htmlspecialchars($s,ENT_QUOTES);
}
diff --git a/include/items.php b/include/items.php
index 4b90840e2..328079b9d 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1325,7 +1325,7 @@ function encode_item_flags($item) {
$ret[] = 'consensus';
if(intval($item['item_obscured']))
$ret[] = 'obscured';
- if(intval($item['item_privat']))
+ if(intval($item['item_private']))
$ret[] = 'private';
return $ret;