aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-08 23:05:36 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-08 23:05:36 -0700
commit7bec4b313a7a553e6df3e24289cf894f3d70a94e (patch)
treeab5050089f10ca739c89d2794b1c50816cfba79a /include/text.php
parent184f8d42eac7ee05828297f88cccac59f0cb5895 (diff)
downloadvolse-hubzilla-7bec4b313a7a553e6df3e24289cf894f3d70a94e.tar.gz
volse-hubzilla-7bec4b313a7a553e6df3e24289cf894f3d70a94e.tar.bz2
volse-hubzilla-7bec4b313a7a553e6df3e24289cf894f3d70a94e.zip
system channel always has allow_code privileges
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php25
1 files changed, 19 insertions, 6 deletions
diff --git a/include/text.php b/include/text.php
index fefe67c4e..1f383d8b3 100644
--- a/include/text.php
+++ b/include/text.php
@@ -101,12 +101,18 @@ function z_input_filter($channel_id,$s,$type = 'text/bbcode') {
$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)
);
- if($r && (($r[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE) || ($r[0]['channel_pageflags'] & PAGE_ALLOWCODE))) {
- if(local_channel() && (get_account_id() == $r[0]['account_id'])) {
+ if($r) {
+ if($r[0]['channel_pageflags'] & PAGE_SYSTEM) {
return $s;
}
+ else {
+ if(($r[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE) || ($r[0]['channel_pageflags'] & PAGE_ALLOWCODE)) {
+ if(local_channel() && (get_account_id() == $r[0]['account_id'])) {
+ return $s;
+ }
+ }
+ }
}
-
if($type === 'text/html')
return purify_html($s);
@@ -1618,10 +1624,17 @@ function mimetype_select($channel_id, $current = 'text/bbcode') {
);
if($r) {
- if(($r[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE) || ($r[0]['channel_pageflags'] & PAGE_ALLOWCODE)) {
- if(local_channel() && get_account_id() == $r[0]['account_id'])
- $x[] = 'application/x-php';
+ if($r[0]['channel_pageflags'] & PAGE_SYSTEM) {
+ $x[] = 'application/x-php';
}
+ else {
+ if(($r[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE) || ($r[0]['channel_pageflags'] & PAGE_ALLOWCODE)) {
+ if(local_channel() && get_account_id() == $r[0]['account_id']) {
+ $x[] = 'application/x-php';
+ }
+ }
+ }
+
}
$o = t('Page content type: ');