diff options
author | friendica <info@friendica.com> | 2013-11-07 00:47:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-07 00:47:50 -0800 |
commit | 7381326b7a7a271da52464d15774a1309adb2bd5 (patch) | |
tree | 3427097b3dc93977f37c8f0b1b49eabc37160611 /mod/message.php | |
parent | df4c9171207065f32db52c910f86e5ef277eaa1f (diff) | |
download | volse-hubzilla-7381326b7a7a271da52464d15774a1309adb2bd5.tar.gz volse-hubzilla-7381326b7a7a271da52464d15774a1309adb2bd5.tar.bz2 volse-hubzilla-7381326b7a7a271da52464d15774a1309adb2bd5.zip |
provide expire feature on post and comments as well as private messages. This requires a feature setting and is currently unmaskable - if the author says it's gone, there's not a lot you can do to stop it or try and save it. It's gone.
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/message.php b/mod/message.php index e31d903a7..dbbe8836b 100644 --- a/mod/message.php +++ b/mod/message.php @@ -324,7 +324,8 @@ function message_content(&$a) { '$insert' => t('Insert web link'), '$wait' => t('Please wait'), '$submit' => t('Submit'), - '$expires' => t('Expires: (leave blank for never)') + '$expires' => t('Expires: (leave blank for never)'), + '$feature_expire' => ((feature_enabled(local_user(),'content_expire')) ? '1' : ''), )); return $o; @@ -499,7 +500,8 @@ function message_content(&$a) { '$insert' => t('Insert web link'), '$submit' => t('Submit'), '$wait' => t('Please wait'), - '$expires' => t('Expires: (leave blank for never)') + '$expires' => t('Expires: (leave blank for never)'), + '$feature_expire' => ((feature_enabled(local_user(),'content_expire')) ? '1' : ''), )); return $o; |