From: Friendika Date: Tue, 25 Oct 2011 03:33:54 +0000 (-0700) Subject: @ tags becoming # tags during atom transit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b20afbc9e49f00fa01c61e9705889247e7cb505e;p=friendica.git @ tags becoming # tags during atom transit --- diff --git a/include/items.php b/include/items.php index a12cdd911c..03149ce7d1 100644 --- a/include/items.php +++ b/include/items.php @@ -2674,7 +2674,7 @@ function item_getfeedtags($item) { if($cnt) { for($x = 0; $x < count($matches); $x ++) { if($matches[1][$x]) - $ret[] = array('#',$matches[1][$x], $matches[2][$x]); + $ret[] = array('@',$matches[1][$x], $matches[2][$x]); } } return $ret;