diff --git a/include/bbcode.php b/include/bbcode.php
index 84c9bda71..758a0891c 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -159,7 +159,7 @@ function bb_ShareAttributes($match) {
$headline .= "";
$text = $headline . '
' . trim($match[2]) . '
';
- logger('bbshare: ' . $text);
+
return($text);
}
@@ -185,7 +185,7 @@ function bb_ShareAttributesSimple($match) {
if ($matches[1] != "")
$profile = $matches[1];
- $text = "
".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$author.":
»".$match[2]."«";
+ $text = "
".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$author.": div class=\"reshared-content\">" .$match[2]."";
return($text);
}
diff --git a/include/zot.php b/include/zot.php
index 4bbf6ef25..e1a5f789d 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -570,7 +570,7 @@ function import_xchan($arr) {
if($xisting) {
foreach($xisting as $x) {
if(! array_key_exists('updated',$x)) {
- logger('import_xchan: removing unreferenced hub location ' . $x['hubloc_url');
+ logger('import_xchan: removing unreferenced hub location ' . $x['hubloc_url']);
$r = q("delete from hubloc where hubloc_id = %d limit 1",
intval($x['hubloc_id'])
);