diff options
author | zotlabs <mike@macgirvin.com> | 2017-07-10 20:18:33 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-07-10 20:18:33 -0700 |
commit | 2d63bbb91e97d3a54440564620ef3093ecbe71fb (patch) | |
tree | 2f0828a83cfd34cb1303d18034e1c9e1d197c7be /Zotlabs/Module/Item.php | |
parent | e3734328eb7393bbdb76ce195d735ab48aa87324 (diff) | |
download | volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.tar.gz volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.tar.bz2 volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.zip |
prevent expiration of conversations you are involved with - allows you to find your own comments months from now
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r-- | Zotlabs/Module/Item.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index e96d4c669..9e64528fa 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -861,8 +861,8 @@ class Item extends \Zotlabs\Web\Controller { } - if(mb_strlen($datarray['title']) > 255) - $datarray['title'] = mb_substr($datarray['title'],0,255); + if(mb_strlen($datarray['title']) > 191) + $datarray['title'] = mb_substr($datarray['title'],0,191); if($webpage) { Zlib\IConfig::Set($datarray,'system', webpage_to_namespace($webpage), @@ -928,6 +928,11 @@ class Item extends \Zotlabs\Web\Controller { if($parent) { + // prevent conversations which you are involved from being expired + + if(local_channel()) + retain_item($parent); + // only send comment notification if this is a wall-to-wall comment, // otherwise it will happen during delivery |