diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-22 12:00:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-22 12:00:15 +0200 |
commit | 9e490d022b985f295a0547c8a115c610a77a3a24 (patch) | |
tree | 1d3db764fd0b939a58836351211a3ea6bcba5e1f /mod/webpages.php | |
parent | b4dff3a9ff16811ea0310f5dbf4d7559c97835b0 (diff) | |
download | volse-hubzilla-9e490d022b985f295a0547c8a115c610a77a3a24.tar.gz volse-hubzilla-9e490d022b985f295a0547c8a115c610a77a3a24.tar.bz2 volse-hubzilla-9e490d022b985f295a0547c8a115c610a77a3a24.zip |
fix webpage perms
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/webpages.php b/mod/webpages.php index 615969d78..44b4ee561 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -131,8 +131,10 @@ function webpages_content(&$a) { // so just list titles and an edit link. /** @TODO - this should be replaced with pagelist_widget */ + $sql_extra = item_permissions_sql($owner); + $r = q("select * from item_id left join item on item_id.iid = item.id - where item_id.uid = %d and service = 'WEBPAGE' order by item.created desc", + where item_id.uid = %d and service = 'WEBPAGE' $sql_extra order by item.created desc", intval($owner) ); |