diff options
author | friendica <info@friendica.com> | 2012-12-10 13:44:54 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-10 13:44:54 -0800 |
commit | b0970850d4e3facac26debe54f34edc21bca1ff7 (patch) | |
tree | 295b1ecee96d1e641c842923a39f553e2ed802c5 /boot.php | |
parent | c066793554cf5a779b791df8a9fe93461f1598a4 (diff) | |
download | volse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.tar.gz volse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.tar.bz2 volse-hubzilla-b0970850d4e3facac26debe54f34edc21bca1ff7.zip |
Allow forum/account delegation by anybody? On any site? But of course...
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica Red'); define ( 'FRIENDICA_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1000 ); +define ( 'DB_UPDATE_VERSION', 1001 ); define ( 'EOL', "<br />\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -173,6 +173,7 @@ define ( 'PERMS_W_COMMENT', 0x0080); define ( 'PERMS_W_MAIL', 0x0100); define ( 'PERMS_W_PHOTOS', 0x0200); define ( 'PERMS_W_CHAT', 0x0400); +define ( 'PERMS_A_DELEGATE', 0x0800); // General channel permissions |