diff options
author | friendica <info@friendica.com> | 2014-11-12 18:04:00 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-12 18:04:00 -0800 |
commit | a2cf1900c8383ca18507904329a8723fce1ae806 (patch) | |
tree | e16f76d892779132dc92b4c5a9ee9316b8628578 /mod/editwebpage.php | |
parent | 634475164ea3bfe6a430623ee9bc0fa4cc2bd055 (diff) | |
download | volse-hubzilla-a2cf1900c8383ca18507904329a8723fce1ae806.tar.gz volse-hubzilla-a2cf1900c8383ca18507904329a8723fce1ae806.tar.bz2 volse-hubzilla-a2cf1900c8383ca18507904329a8723fce1ae806.zip |
this should make all the 'sys' webpage design tools useable by the admin
Diffstat (limited to 'mod/editwebpage.php')
-rw-r--r-- | mod/editwebpage.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mod/editwebpage.php b/mod/editwebpage.php index 8181415b8..2acb3bd84 100644 --- a/mod/editwebpage.php +++ b/mod/editwebpage.php @@ -60,14 +60,11 @@ function editwebpage_content(&$a) { $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); - $perms = get_all_perms($owner,$ob_hash); - - if(! $perms['write_pages']) { + if(! perm_is_allowed($owner,$ob_hash,'write_pages')) { notice( t('Permission denied.') . EOL); return; } - $is_owner = (($uid && $uid == $owner) ? true : false); $o = ''; |