diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-28 17:36:39 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-30 11:14:43 -0400 |
commit | 148310e5fc78e69f6bde3683855009dc3d8d485b (patch) | |
tree | a10529f506f70ac3a858c6ad660a7e50868c96bf /lib | |
parent | a68836acb4c43500dbff89be1faec19969bc34c2 (diff) |
welcome notice, default sub for new users
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.php | 3 | ||||
-rw-r--r-- | lib/noticelist.php | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php index 1ca9e521b..caad705a4 100644 --- a/lib/common.php +++ b/lib/common.php @@ -151,6 +151,9 @@ $config = array('notify' => array()), 'inboxes' => array('enabled' => true), # on by default for new sites + 'newuser' => + array('subscribe' => null, + 'welcome' => null), ); $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options'); diff --git a/lib/noticelist.php b/lib/noticelist.php index 8523f2e63..4182d8808 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -391,6 +391,7 @@ class NoticeListItem extends Widget case 'xmpp': case 'mail': case 'omb': + case 'system': case 'api': $this->out->element('dd', null, $source_name); break; |