diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-20 09:23:44 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-20 09:23:44 +0200 |
commit | 7e99931733c75ded40c5c6bdd12a42213ccb7a2e (patch) | |
tree | 579ab25266cd2fad5af6eb43c8e935a45c870f14 /include/conversation.php | |
parent | 7a1afc315d51366efcf604fc1fe3737375aac799 (diff) | |
download | volse-hubzilla-7e99931733c75ded40c5c6bdd12a42213ccb7a2e.tar.gz volse-hubzilla-7e99931733c75ded40c5c6bdd12a42213ccb7a2e.tar.bz2 volse-hubzilla-7e99931733c75ded40c5c6bdd12a42213ccb7a2e.zip |
implement jot reset button
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 3041d2e21..4a1cdc7da 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1304,6 +1304,8 @@ function status_editor($a, $x, $popup = false) { $id_select = ''; $webpage = ((x($x,'webpage')) ? $x['webpage'] : ''); + + $reset = ((x($x,'reset')) ? $x['reset'] : ''); $feature_auto_save_draft = ((feature_enabled($x['profile_uid'], 'auto_save_draft')) ? "true" : "false"); @@ -1329,6 +1331,7 @@ function status_editor($a, $x, $popup = false) { '$nocomment_enabled' => t('Comments enabled'), '$nocomment_disabled' => t('Comments disabled'), '$auto_save_draft' => $feature_auto_save_draft, + '$reset' => $reset )); $tpl = get_markup_template('jot.tpl'); @@ -1441,7 +1444,8 @@ function status_editor($a, $x, $popup = false) { '$expiryModalCANCEL' => t('Cancel'), '$expanded' => ((x($x, 'expanded')) ? $x['expanded'] : false), '$bbcode' => ((x($x, 'bbcode')) ? $x['bbcode'] : false), - '$parent' => ((array_key_exists('parent',$x) && $x['parent']) ? $x['parent'] : 0) + '$parent' => ((array_key_exists('parent',$x) && $x['parent']) ? $x['parent'] : 0), + '$reset' => $reset )); if ($popup === true) { |