diff options
author | git-marijus <mario@mariovavti.com> | 2018-04-09 13:18:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-09 13:18:09 +0200 |
commit | 9dc831f1ef5e59a91eeda2756842b7ac262e1ac6 (patch) | |
tree | 08faa8318ab53966279b6de5f3fb51dd595f6aac /include | |
parent | 6844d7c752a0d8614aa7490287d72a84a95b3a73 (diff) | |
parent | f9ec3c66ff1305ca0647454d27793ac5365f7f4a (diff) | |
download | volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.tar.gz volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.tar.bz2 volse-hubzilla-9dc831f1ef5e59a91eeda2756842b7ac262e1ac6.zip |
Merge pull request #1051 from anaqreon/auto-save
Auto-save comment and post text
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 5 | ||||
-rw-r--r-- | include/features.php | 9 |
2 files changed, 13 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index ce0467770..3834d9866 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1301,7 +1301,9 @@ function status_editor($a, $x, $popup = false) { $id_select = ''; $webpage = ((x($x,'webpage')) ? $x['webpage'] : ''); - + + $feature_auto_save_draft = ((feature_enabled($x['profile_uid'], 'auto_save_draft')) ? "true" : "false"); + $tpl = get_markup_template('jot-header.tpl'); App::$page['htmlhead'] .= replace_macros($tpl, array( @@ -1323,6 +1325,7 @@ function status_editor($a, $x, $popup = false) { '$modalerroralbum' => t('Error getting album'), '$nocomment_enabled' => t('Comments enabled'), '$nocomment_disabled' => t('Comments disabled'), + '$auto_save_draft' => $feature_auto_save_draft, )); $tpl = get_markup_template('jot.tpl'); diff --git a/include/features.php b/include/features.php index 57a6f7310..c865f6754 100644 --- a/include/features.php +++ b/include/features.php @@ -350,6 +350,15 @@ function get_features($filtered = true, $level = (-1)) { feature_level('suppress_duplicates',1), ], + [ + 'auto_save_draft', + t('Auto-save drafts of posts and comments'), + t('Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions'), + true, + get_config('feature_lock','auto_save_draft'), + feature_level('auto_save_draft',1), + ], + ], // Network Tools |