aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-12 18:00:58 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-12 18:00:58 -0700
commitbaad288430baed9d7967043554cb07fdde322552 (patch)
tree3c38028d536a680b5ce22a0f14bf88e399d294fc /mod
parentacdfee232795684174a4eea1bc1d386ca0db1e1d (diff)
downloadvolse-hubzilla-baad288430baed9d7967043554cb07fdde322552.tar.gz
volse-hubzilla-baad288430baed9d7967043554cb07fdde322552.tar.bz2
volse-hubzilla-baad288430baed9d7967043554cb07fdde322552.zip
acl stuff
Diffstat (limited to 'mod')
-rw-r--r--mod/profile.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 39d1b7c6a..5d1b04b33 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -135,10 +135,14 @@ function profile_content(&$a) {
$tpl = file_get_contents('view/jot-header.tpl');
$a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
+ require_once('view/acl_selectors.php');
$tpl = file_get_contents("view/jot.tpl");
+
$o .= replace_macros($tpl,array(
'$baseurl' => $a->get_baseurl(),
+ '$lockstate' => 'unlock',
+ '$acl' => populate_acl(),
'$profile_uid' => $a->profile['profile_uid']
));
}