diff options
author | redmatrix <git@macgirvin.com> | 2016-07-05 16:24:45 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-05 16:24:45 -0700 |
commit | 35cc763a92eefe755701a734f5d4256eae99e0b7 (patch) | |
tree | 374563b12a9ce16c53efa56cae425177689ede70 /include/feedutils.php | |
parent | f46eecc1e7585e64069bb18918a2db057a16c480 (diff) | |
download | volse-hubzilla-35cc763a92eefe755701a734f5d4256eae99e0b7.tar.gz volse-hubzilla-35cc763a92eefe755701a734f5d4256eae99e0b7.tar.bz2 volse-hubzilla-35cc763a92eefe755701a734f5d4256eae99e0b7.zip |
regression - save bookmarks no longer present in item menu
Diffstat (limited to 'include/feedutils.php')
-rw-r--r-- | include/feedutils.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index 685b2f982..01ec0687e 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -393,7 +393,7 @@ function get_atom_elements($feed, $item, &$author) { $terms = array(); $terms[] = array( 'otype' => TERM_OBJ_POST, - 'type' => TERM_BOOKMARK, + 'ttype' => TERM_BOOKMARK, 'url' => $res['plink'], 'term' => $res['title'], ); @@ -403,7 +403,7 @@ function get_atom_elements($feed, $item, &$author) { $terms = array(); $terms[] = array( 'otype' => TERM_OBJ_POST, - 'type' => TERM_BOOKMARK, + 'ttype' => TERM_BOOKMARK, 'url' => $res['plink'], 'term' => $res['plink'], ); |