diff options
author | friendica <info@friendica.com> | 2013-08-11 16:56:06 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-11 16:56:06 -0700 |
commit | d7a9db10881b8d9de1b5f7e2a2dfae3df396fb45 (patch) | |
tree | 1687d18e67706b14acc31d38cfabcf39e5bbc501 /boot.php | |
parent | 5aa508dba77ed69e1aa8810623e75d15ad15c2ad (diff) | |
download | volse-hubzilla-d7a9db10881b8d9de1b5f7e2a2dfae3df396fb45.tar.gz volse-hubzilla-d7a9db10881b8d9de1b5f7e2a2dfae3df396fb45.tar.bz2 volse-hubzilla-d7a9db10881b8d9de1b5f7e2a2dfae3df396fb45.zip |
important bits we need to allow php executable content. These must be explicitly allowed - but only if the account has ACCOUNT_ROLE_ALLOWCODE and *only* for web pages and profile fields. This content cannot be transmitted to other sites.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -434,8 +434,8 @@ define ( 'ACCOUNT_PENDING', 0x0010 ); * Account roles */ -define ( 'ACCOUNT_ROLE_ADMIN', 0x1000 ); - +define ( 'ACCOUNT_ROLE_ADMIN', 0x1000 ); +define ( 'ACCOUNT_ROLE_ALLOWCODE', 0x0001 ); /** * Item visibility |