diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-12 22:32:31 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-12 22:32:31 -0700 |
commit | 5e99295bf6f85e7a6d50e0c8f0701a9b37f03332 (patch) | |
tree | 73005cc356bc4e1060f28859247e76fe4c706c45 /include/text.php | |
parent | 4ff89a58625e647ee74087dfab79ac6dd76cbe6c (diff) | |
download | volse-hubzilla-5e99295bf6f85e7a6d50e0c8f0701a9b37f03332.tar.gz volse-hubzilla-5e99295bf6f85e7a6d50e0c8f0701a9b37f03332.tar.bz2 volse-hubzilla-5e99295bf6f85e7a6d50e0c8f0701a9b37f03332.zip |
wiki mimetype selection
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php index 51d711021..58e2b8256 100644 --- a/include/text.php +++ b/include/text.php @@ -1786,15 +1786,15 @@ function layout_select($channel_id, $current = '') { } -function mimetype_select($channel_id, $current = 'text/bbcode') { +function mimetype_select($channel_id, $current = 'text/bbcode', $choices = null) { - $x = array( + $x = (($choices) ? $choices : [ 'text/bbcode', 'text/html', 'text/markdown', 'text/plain', 'application/x-pdl' - ); + ]); if((App::$is_sys) || (channel_codeallowed($channel_id) && $channel_id == local_channel())){ |