From c2ca2a09e775f59706e386a7e2de0816ba680e54 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 May 2015 17:32:36 -0700 Subject: this should fix undeletable blocks and layouts --- mod/blocks.php | 5 +++-- mod/layouts.php | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'mod') diff --git a/mod/blocks.php b/mod/blocks.php index 56da9caf7..11e7d4a30 100644 --- a/mod/blocks.php +++ b/mod/blocks.php @@ -108,8 +108,9 @@ function blocks_content(&$a) { $editor = status_editor($a,$x); $r = q("select iid, sid, mid, title, body, mimetype, created, edited from item_id left join item on item_id.iid = item.id - where item_id.uid = %d and service = 'BUILDBLOCK' order by item.created desc", - intval($owner) + where item_id.uid = %d and service = 'BUILDBLOCK' and item_restrict = %d order by item.created desc", + intval($owner), + intval(ITEM_BUILDBLOCK) ); $pages = null; diff --git a/mod/layouts.php b/mod/layouts.php index 2e45362ba..88bc0647d 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -135,8 +135,9 @@ function layouts_content(&$a) { $editor = status_editor($a,$x); $r = q("select iid, sid, mid, title, body, mimetype, created, edited from item_id left join item on item_id.iid = item.id - where item_id.uid = %d and service = 'PDL' order by item.created desc", - intval($owner) + where item_id.uid = %d and service = 'PDL' and item_restrict = %d order by item.created desc", + intval($owner), + intval(ITEM_PDL) ); $pages = null; -- cgit v1.2.3