diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-21 15:43:03 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-08-21 15:43:03 +0200 |
commit | 4f62d7a78f63e4bae136f52d70d0af906d997b78 (patch) | |
tree | 9b66c3bd585bbaccdb44ee0e1a91050c21aeed6e /include/conversation.php | |
parent | e4244c0cac301c63e5f69cde24c889e15500d89e (diff) | |
download | volse-hubzilla-4f62d7a78f63e4bae136f52d70d0af906d997b78.tar.gz volse-hubzilla-4f62d7a78f63e4bae136f52d70d0af906d997b78.tar.bz2 volse-hubzilla-4f62d7a78f63e4bae136f52d70d0af906d997b78.zip |
move jotnets to jot and some cleanup (mostly whitespace)
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index 7d1473fe2..637234bff 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1200,8 +1200,6 @@ function status_editor($a, $x, $popup = false) { $tpl = get_markup_template('jot.tpl'); - $jotplugins = ''; - $preview = t('Preview'); if(x($x, 'hide_preview')) $preview = ''; @@ -1218,8 +1216,14 @@ function status_editor($a, $x, $popup = false) { if(! $cipher) $cipher = 'aes256'; + $jotplugins = ''; call_hooks('jot_tool', $jotplugins); + $jotnets = ''; + if(x($x,'jotnets')) { + call_hooks('jot_networks', $jotnets); + } + $o .= replace_macros($tpl, array( '$return_path' => ((x($x, 'return_path')) ? $x['return_path'] : App::$query_string), '$action' => z_root() . '/item', @@ -1276,6 +1280,8 @@ function status_editor($a, $x, $popup = false) { '$preview' => $preview, '$source' => ((x($x, 'source')) ? $x['source'] : ''), '$jotplugins' => $jotplugins, + '$jotnets' => $jotnets, + '$jotnets_label' => t('Other networks and post services'), '$defexpire' => $defexpire, '$feature_expire' => $feature_expire, '$expires' => t('Set expiration date'), |