diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-23 20:28:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-04-23 20:28:04 -0700 |
commit | f1c6fd08c462b663a26cf58cfd81591129057c41 (patch) | |
tree | 052c35768dc9c076e982d1a20b104906a5c576de /include/items.php | |
parent | c2ec3b0bf44847d19d95f568c2b23c50e920eb00 (diff) | |
download | volse-hubzilla-f1c6fd08c462b663a26cf58cfd81591129057c41.tar.gz volse-hubzilla-f1c6fd08c462b663a26cf58cfd81591129057c41.tar.bz2 volse-hubzilla-f1c6fd08c462b663a26cf58cfd81591129057c41.zip |
database upgrade
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/items.php b/include/items.php index c71e8011d..a4862208e 100755 --- a/include/items.php +++ b/include/items.php @@ -4263,10 +4263,7 @@ function sync_an_item($channel_id,$item_id) { if($r) { xchan_query($r); $sync_item = fetch_post_tags($r); - $rid = q("select * from item_id where iid = %d", - intval($item_id) - ); - build_sync_packet($channel_d,array('item' => array(encode_item($sync_item[0],true)),'item_id' => $rid)); + build_sync_packet($channel_d,array('item' => array(encode_item($sync_item[0],true)))); } } |