diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-05-09 12:24:48 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-05-09 12:24:48 +0200 |
commit | 61909d2480dc7098932058c4a3ab076d32bdda3e (patch) | |
tree | bc0b31c77a2adb3dd3ad4b3267fd4f9bc402d3dd /include/conversation.php | |
parent | 7aeff7505be6bd5fd10b04efaedf0e35915e0154 (diff) | |
download | volse-hubzilla-61909d2480dc7098932058c4a3ab076d32bdda3e.tar.gz volse-hubzilla-61909d2480dc7098932058c4a3ab076d32bdda3e.tar.bz2 volse-hubzilla-61909d2480dc7098932058c4a3ab076d32bdda3e.zip |
if we do not have a layout $layout should be empty not default
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 7c7f6732d..8be0557e7 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1154,7 +1154,7 @@ function status_editor($a, $x, $popup = false) { if(x($x, 'hide_attach')) $writefiles = false; - $layout = ((x($x,'layout')) ? $x['layout'] : 'default'); + $layout = ((x($x,'layout')) ? $x['layout'] : ''); $layoutselect = ((x($x,'layoutselect')) ? $x['layoutselect'] : false); if($layoutselect) |