diff options
author | friendica <info@friendica.com> | 2012-11-05 20:42:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-05 20:42:12 -0800 |
commit | 90e70d96740179594e0ef8ae133934a0bb469319 (patch) | |
tree | 4f4cbceb58b4910eafba71b1ca2bc2999ecb1e2d /include/items.php | |
parent | fe5f511f19640668afe2387f8d588b821cf5f1b8 (diff) | |
download | volse-hubzilla-90e70d96740179594e0ef8ae133934a0bb469319.tar.gz volse-hubzilla-90e70d96740179594e0ef8ae133934a0bb469319.tar.bz2 volse-hubzilla-90e70d96740179594e0ef8ae133934a0bb469319.zip |
start on the like/dislike activities
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index f640f1d2b..77c2c2aa2 100755 --- a/include/items.php +++ b/include/items.php @@ -447,8 +447,8 @@ function get_item_elements($j) { $arr['location'] = (($j->location) ? htmlentities($j->location, ENT_COMPAT,'UTF-8') : ''); $arr['coord'] = (($j->coord) ? htmlentities($j->coord, ENT_COMPAT,'UTF-8') : ''); $arr['verb'] = (($j->verb) ? htmlentities($j->verb, ENT_COMPAT,'UTF-8') : ''); - $arr['obj_type'] = (($j->objtype) ? htmlentities($j->objtype, ENT_COMPAT,'UTF-8') : ''); - $arr['tgt_type'] = (($j->tgttype) ? htmlentities($j->tgttype, ENT_COMPAT,'UTF-8') : ''); + $arr['obj_type'] = (($j->objtype) ? htmlentities($j->objtype, ENT_COMPAT,'UTF-8') : ''); + $arr['tgt_type'] = (($j->tgttype) ? htmlentities($j->tgttype, ENT_COMPAT,'UTF-8') : ''); $arr['object'] = $j->object; $arr['target'] = $j->target; |