diff options
author | Mario <mario@mariovavti.com> | 2024-12-06 19:24:14 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-06 19:24:14 +0000 |
commit | 66d502d8e1f958fd3fcff3e6c8991b9720c69bc4 (patch) | |
tree | 4befc3ef77069bc13cec711d2ce7386cefd114a6 /Zotlabs/Module | |
parent | 66acfc66ce832bc2749d7af78b8985da7018a9a8 (diff) | |
download | volse-hubzilla-66d502d8e1f958fd3fcff3e6c8991b9720c69bc4.tar.gz volse-hubzilla-66d502d8e1f958fd3fcff3e6c8991b9720c69bc4.tar.bz2 volse-hubzilla-66d502d8e1f958fd3fcff3e6c8991b9720c69bc4.zip |
an attempt to fix some comments on/off anomalies
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Item.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 97ccb312e..06175109f 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -207,7 +207,6 @@ class Item extends Controller { $expires = NULL_DATE; - $comments_closed = NULL_DATE; $route = ''; $parent_item = null; @@ -454,7 +453,7 @@ class Item extends Controller { $title = escape_tags(trim($_REQUEST['title'])); $summary = escape_tags(trim($_REQUEST['summary'])); $body = trim($_REQUEST['body']); - $item_flags = $orig_post['item_flags']; + $item_flags = $orig_post['item_flags']; $item_origin = $orig_post['item_origin']; $item_unseen = $orig_post['item_unseen']; $item_starred = $orig_post['item_starred']; @@ -468,7 +467,7 @@ class Item extends Controller { $item_mentionsme = $orig_post['item_mentionsme']; $item_nocomment = $orig_post['item_nocomment']; $item_obscured = $orig_post['item_obscured']; - $item_verified = $orig_post['item_verified']; + $item_verified = $orig_post['item_verified']; $item_retained = $orig_post['item_retained']; $item_rss = $orig_post['item_rss']; $item_deleted = $orig_post['item_deleted']; @@ -793,6 +792,7 @@ class Item extends Controller { $item_origin = (($origin) ? 1 : 0); $item_consensus = (($consensus) ? 1 : 0); $item_nocomment = (($nocomment) ? 1 : 0); + $comments_closed = (($nocomment) ? $comments_closed : NULL_DATE); // determine if this is a wall post |