diff options
author | friendica <info@friendica.com> | 2012-07-11 17:54:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-11 17:54:00 -0700 |
commit | 9ac32c49e2a2da61752b895fd669dcb272f3ff2d (patch) | |
tree | 6d270153337cd756cfb7511725dabf62cd96a310 /boot.php | |
parent | 3f414aec63257f7e9e6aa19671502794f9c1d524 (diff) | |
download | volse-hubzilla-9ac32c49e2a2da61752b895fd669dcb272f3ff2d.tar.gz volse-hubzilla-9ac32c49e2a2da61752b895fd669dcb272f3ff2d.tar.bz2 volse-hubzilla-9ac32c49e2a2da61752b895fd669dcb272f3ff2d.zip |
move saved searches to new taxonomy
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -199,12 +199,14 @@ define ( 'NOTIFY_SYSTEM', 0x8000 ); * Tag/term types */ -define ( 'TERM_UNKNOWN', 0 ); -define ( 'TERM_HASHTAG', 1 ); -define ( 'TERM_MENTION', 2 ); -define ( 'TERM_CATEGORY', 3 ); -define ( 'TERM_PCATEGORY', 4 ); -define ( 'TERM_FILE', 5 ); +define ( 'TERM_UNKNOWN', 0 ); +define ( 'TERM_HASHTAG', 1 ); +define ( 'TERM_MENTION', 2 ); +define ( 'TERM_CATEGORY', 3 ); +define ( 'TERM_PCATEGORY', 4 ); +define ( 'TERM_FILE', 5 ); +define ( 'TERM_SAVEDSEARCH', 6 ); + define ( 'TERM_OBJ_POST', 1 ); define ( 'TERM_OBJ_PHOTO', 2 ); |