diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-13 16:27:04 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-13 16:27:04 -0700 |
commit | c82082d2bbb00294d62330d577dcdbc9ec6b9d1c (patch) | |
tree | b8f93c5955152af991755c5d6b47a89f5548c642 | |
parent | d6f98e651170827453a27fec367f0f8059f3a002 (diff) | |
download | volse-hubzilla-c82082d2bbb00294d62330d577dcdbc9ec6b9d1c.tar.gz volse-hubzilla-c82082d2bbb00294d62330d577dcdbc9ec6b9d1c.tar.bz2 volse-hubzilla-c82082d2bbb00294d62330d577dcdbc9ec6b9d1c.zip |
restrict webpage list to undeleted items
-rw-r--r-- | mod/page.php | 1 | ||||
-rw-r--r-- | mod/webpages.php | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mod/page.php b/mod/page.php index b80982ae1..25b4d8888 100644 --- a/mod/page.php +++ b/mod/page.php @@ -66,7 +66,6 @@ function page_init(&$a) { intval(ITEM_WEBPAGE), intval(ITEM_PDL) ); - if(! $r) { // Check again with no permissions clause to see if it is a permissions issue diff --git a/mod/webpages.php b/mod/webpages.php index 859c93fde..62abfb34a 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -133,8 +133,9 @@ function webpages_content(&$a) { $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' $sql_extra order by item.created desc", - intval($owner) + where item_id.uid = %d and service = 'WEBPAGE' and item_restrict = %d $sql_extra order by item.created desc", + intval($owner), + intval(ITEM_WEBPAGE) ); $pages = null; |