aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-12 15:27:39 -0800
committerfriendica <info@friendica.com>2012-12-12 15:27:39 -0800
commitd93080ac748453fa398c70c3abd47088383066ed (patch)
treee15954050963769c7e936df38df516a5000b8442
parent7737382378bc0ec1a1b1685945bbb41a97499bcd (diff)
downloadvolse-hubzilla-d93080ac748453fa398c70c3abd47088383066ed.tar.gz
volse-hubzilla-d93080ac748453fa398c70c3abd47088383066ed.tar.bz2
volse-hubzilla-d93080ac748453fa398c70c3abd47088383066ed.zip
So what if Red could do more CMS types of things? And you could add arbitrary web content pages of your own design to your channel resources? Oh wait...
-rw-r--r--boot.php2
-rw-r--r--include/features.php2
-rw-r--r--version.inc2
3 files changed, 5 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 3084d450a..90a053852 100644
--- a/boot.php
+++ b/boot.php
@@ -368,6 +368,8 @@ define ( 'ITEM_BLOCKED', 0x0002);
define ( 'ITEM_MODERATED', 0x0004);
define ( 'ITEM_SPAM', 0x0008);
define ( 'ITEM_DELETED', 0x0010);
+define ( 'ITEM_UNPUBLISHED', 0x0020);
+define ( 'ITEM_WEBPAGE', 0x0040); // is a static web page, not a conversational item
/**
* Item Flags
diff --git a/include/features.php b/include/features.php
index 45d866d45..03919d9b2 100644
--- a/include/features.php
+++ b/include/features.php
@@ -21,6 +21,8 @@ function get_features() {
t('General Features'),
array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')),
array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')),
+ array('webpages', t('Web Pages'), t('Provide managed web pages on your channel'),
+
),
// Post composition
diff --git a/version.inc b/version.inc
index 23a0f2af0..20b016bd4 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2012-12-10.165
+2012-12-12.167