diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-22 11:49:28 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-22 11:49:28 -0800 |
commit | 8bd8af7d16d6b4fb40680bd33b99bbfd582a1208 (patch) | |
tree | d8a8c0f43576b34f724d6890c304685e5430e640 /boot.php | |
parent | b4f8f4df7bc5cc8a74240506cd536224cb31e114 (diff) | |
download | volse-hubzilla-8bd8af7d16d6b4fb40680bd33b99bbfd582a1208.tar.gz volse-hubzilla-8bd8af7d16d6b4fb40680bd33b99bbfd582a1208.tar.bz2 volse-hubzilla-8bd8af7d16d6b4fb40680bd33b99bbfd582a1208.zip |
initial articles feature
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -560,6 +560,7 @@ define ( 'ITEM_BUG', 0x0400); // Is a bug, can be used by the internal bug tr define ( 'ITEM_PENDING_REMOVE', 0x0800); // deleted, notification period has lapsed define ( 'ITEM_DOC', 0x1000); // hubzilla only, define here so that item import does the right thing define ( 'ITEM_CARD', 0x2000); +define ( 'ITEM_ARTICLE', 0x4000); define ( 'ITEM_TYPE_POST', 0 ); @@ -569,6 +570,7 @@ define ( 'ITEM_TYPE_WEBPAGE', 3 ); define ( 'ITEM_TYPE_BUG', 4 ); define ( 'ITEM_TYPE_DOC', 5 ); define ( 'ITEM_TYPE_CARD', 6 ); +define ( 'ITEM_TYPE_ARTICLE', 7 ); define ( 'ITEM_IS_STICKY', 1000 ); |