diff options
author | friendica <info@friendica.com> | 2013-08-12 17:42:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-12 17:42:52 -0700 |
commit | 04f8de184e8c925e38335eb18c102985ce421f95 (patch) | |
tree | cb76523a177d6d8a2e3461a58dcd49ea818fab59 /mod | |
parent | 28a8b821b0586ec430a554c520bc079f9d4dc63f (diff) | |
download | volse-hubzilla-04f8de184e8c925e38335eb18c102985ce421f95.tar.gz volse-hubzilla-04f8de184e8c925e38335eb18c102985ce421f95.tar.bz2 volse-hubzilla-04f8de184e8c925e38335eb18c102985ce421f95.zip |
block content-type (called ITEM_BUILDBLOCK to avoid confusion with content that is blocked)
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php index dc8ee5015..1893a6ef4 100644 --- a/mod/item.php +++ b/mod/item.php @@ -70,6 +70,7 @@ function item_post(&$a) { $categories = ((x($_REQUEST,'category')) ? escape_tags($_REQUEST['category']) : ''); $webpage = ((x($_REQUEST,'webpage')) ? intval($_REQUEST['webpage']) : 0); $pagetitle = ((x($_REQUEST,'pagetitle')) ? escape_tags($_REQUEST['pagetitle']): ''); + $buildblock = ((x($_REQUEST,'buildblock')) ? intval($_REQUEST['buildblock']) : 0); if($pagetitle) { require_once('library/urlify/URLify.php'); @@ -492,6 +493,8 @@ function item_post(&$a) { if($webpage) $item_restrict = $item_restrict | ITEM_WEBPAGE; + if($buildblock) + $item_restrict = $item_restrict | ITEM_BUILDBLOCK; if(! strlen($verb)) |