diff options
author | Friendika <info@friendika.com> | 2011-10-24 20:33:54 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-24 20:33:54 -0700 |
commit | b20afbc9e49f00fa01c61e9705889247e7cb505e (patch) | |
tree | 05bdbbb81bcca6c3cfbe7ef8b540ac7fe3a70e8a /include/items.php | |
parent | 1a7badb40518538c79ecff6186eb3d996734760e (diff) | |
download | volse-hubzilla-b20afbc9e49f00fa01c61e9705889247e7cb505e.tar.gz volse-hubzilla-b20afbc9e49f00fa01c61e9705889247e7cb505e.tar.bz2 volse-hubzilla-b20afbc9e49f00fa01c61e9705889247e7cb505e.zip |
@ tags becoming # tags during atom transit
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index a12cdd911..03149ce7d 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; |