diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-24 01:46:54 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-24 01:46:54 -0700 |
commit | d256e8e9f28aa3efcd0a5ac7f7326ba24367ea31 (patch) | |
tree | f20a824f3acfdb9ccab3b572ab5feebef905713b /include/event.php | |
parent | eac9c8a7e66ea3ee40297f057164268cbf2f7158 (diff) | |
download | volse-hubzilla-d256e8e9f28aa3efcd0a5ac7f7326ba24367ea31.tar.gz volse-hubzilla-d256e8e9f28aa3efcd0a5ac7f7326ba24367ea31.tar.bz2 volse-hubzilla-d256e8e9f28aa3efcd0a5ac7f7326ba24367ea31.zip |
edited event showing bad signature and null_date for edit timestamp
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php index c468420c0..6670bc53b 100644 --- a/include/event.php +++ b/include/event.php @@ -778,7 +778,12 @@ function event_store_item($arr, $event) { $private = (($arr['allow_cid'] || $arr['allow_gid'] || $arr['deny_cid'] || $arr['deny_gid']) ? 1 : 0); - q("UPDATE item SET title = '%s', body = '%s', object = '%s', allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s', edited = '%s', item_flags = %d, item_private = %d, obj_type = '%s' WHERE id = %d AND uid = %d", + // @FIXME can only update sig if we have the author's channel on this site + // Until fixed, set it to nothing so it won't give us signature errors + + $sig = ''; + + q("UPDATE item SET title = '%s', body = '%s', object = '%s', allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s', edited = '%s', sig = '%s', item_flags = %d, item_private = %d, obj_type = '%s' WHERE id = %d AND uid = %d", dbesc($arr['summary']), dbesc($prefix . format_event_bbcode($arr)), dbesc($object), @@ -787,6 +792,7 @@ function event_store_item($arr, $event) { dbesc($arr['deny_cid']), dbesc($arr['deny_gid']), dbesc($arr['edited']), + dbesc($sig), intval($r[0]['item_flags']), intval($private), dbesc(ACTIVITY_OBJ_EVENT), |