aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/bbcode.php4
-rw-r--r--include/zot.php2
2 files changed, 3 insertions, 3 deletions
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 .= "</div>";
$text = $headline . '<div class="reshared-content">' . trim($match[2]) . '</div>';
- logger('bbshare: ' . $text);
+
return($text);
}
@@ -185,7 +185,7 @@ function bb_ShareAttributesSimple($match) {
if ($matches[1] != "")
$profile = $matches[1];
- $text = "<br />".html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').' <a href="'.$profile.'">'.$author."</a>: <br />»".$match[2]."«";
+ $text = "<br />".html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').' <a href="'.$profile.'">'.$author."</a>: div class=\"reshared-content\">" .$match[2]."</div>";
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'])
);