aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php
index 1f383d8b3..ef38c03d7 100644
--- a/include/text.php
+++ b/include/text.php
@@ -98,6 +98,13 @@ function z_input_filter($channel_id,$s,$type = 'text/bbcode') {
return escape_tags($s);
if($type == 'text/plain')
return escape_tags($s);
+
+ $a = get_app();
+ if($a->is_sys) {
+ $sys = get_sys_channel();
+ $channel_id = $sys['channel_id'];
+ }
+
$r = q("select account_id, account_roles, channel_pageflags from account left join channel on channel_account_id = account_id where channel_id = %d limit 1",
intval($channel_id)
);
@@ -1611,6 +1618,12 @@ function layout_select($channel_id, $current = '') {
function mimetype_select($channel_id, $current = 'text/bbcode') {
+ $a = get_app();
+ if($a->is_sys) {
+ $sys = get_sys_channel();
+ $channel_id = $sys['channel_id'];
+ }
+
$x = array(
'text/bbcode',
'text/html',