diff options
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | include/features.php | 2 | ||||
-rw-r--r-- | version.inc | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -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 |