diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-07-10 21:48:24 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-07-10 21:48:24 +0200 |
commit | b6f28900e686dc7acffd03035bcc249130a7db87 (patch) | |
tree | 99597e1166549d33cf3d30fcbf5b0085fb639423 /mod/display.php | |
parent | 071a233fb8aa427ae0637cda1ca0b47631d6b521 (diff) | |
download | volse-hubzilla-b6f28900e686dc7acffd03035bcc249130a7db87.tar.gz volse-hubzilla-b6f28900e686dc7acffd03035bcc249130a7db87.tar.bz2 volse-hubzilla-b6f28900e686dc7acffd03035bcc249130a7db87.zip |
show status editor in /display on share action.
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php index 4a419daa5..8c4707bb2 100644 --- a/mod/display.php +++ b/mod/display.php @@ -64,10 +64,13 @@ function display_content(&$a, $update = 0, $load = false) { 'bang' => '', 'visitor' => true, 'profile_uid' => local_channel(), - 'return_path' => 'channel/' . $channel['channel_address'] + 'return_path' => 'channel/' . $channel['channel_address'], + 'expanded' => true ); + $o = '<div id="jot-popup">'; $o .= status_editor($a,$x); + $o .= '</div>'; } |