aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-02 04:47:30 -0800
committerfriendica <info@friendica.com>2013-02-02 04:47:30 -0800
commit5c6c4395f4ab7924cad619d3a1ca4cee69219769 (patch)
tree1d1adc3658dad56c00ab6ee576600c8271bbdb64
parente2dd38b0bcf8a24faf102c808a5590093964e094 (diff)
downloadvolse-hubzilla-5c6c4395f4ab7924cad619d3a1ca4cee69219769.tar.gz
volse-hubzilla-5c6c4395f4ab7924cad619d3a1ca4cee69219769.tar.bz2
volse-hubzilla-5c6c4395f4ab7924cad619d3a1ca4cee69219769.zip
Communication of mention tags were garbled
-rwxr-xr-xinclude/items.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index 5afb0816d..7a00754e6 100755
--- a/include/items.php
+++ b/include/items.php
@@ -635,7 +635,7 @@ function decode_tags($t) {
$ret = array();
foreach($t as $x) {
$tag = array();
- $tag['term'] = htmlentities($x['term'], ENT_COMPAT,'UTF-8',false);
+ $tag['term'] = htmlentities($x['tag'], ENT_COMPAT,'UTF-8',false);
$tag['url'] = htmlentities($x['url'], ENT_COMPAT,'UTF-8',false);
switch($x['type']) {
case 'hashtag':