diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-13 18:17:36 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-13 18:17:36 +0000 |
commit | 0e1f2d4b47e5e340679c4245b62e1d64c6b9c9b9 (patch) | |
tree | 2b3c04fb0a0158fc63acc7896192cc7ddedfd7de /lib/common.php | |
parent | d84c33c3282523ea3553fa36ccd2aef39e4dcbad (diff) |
Fix regressions in XMPP output during inbox refactoring
- NOTICE_INBOX_SOURCE_* constants moved to common.php since Notice_inbox.php not always loaded
- fixed typo in User::staticGet() call which caused user #1 to receive messages once for each subscriber instead of for him/herself
- 'continue' -> 'continue 2' inside switch() statement to fix loop escape (PHP considers switch() a looping construct for break & continue)
Diffstat (limited to 'lib/common.php')
-rw-r--r-- | lib/common.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php index 61decebb7..00e80373e 100644 --- a/lib/common.php +++ b/lib/common.php @@ -41,6 +41,12 @@ define('FOREIGN_NOTICE_SEND_REPLY', 4); define('FOREIGN_FRIEND_SEND', 1); define('FOREIGN_FRIEND_RECV', 2); +define('NOTICE_INBOX_SOURCE_SUB', 1); +define('NOTICE_INBOX_SOURCE_GROUP', 2); +define('NOTICE_INBOX_SOURCE_REPLY', 3); +define('NOTICE_INBOX_SOURCE_FORWARD', 4); +define('NOTICE_INBOX_SOURCE_GATEWAY', -1); + # append our extlib dir as the last-resort place to find libs set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/'); |