summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-28 17:36:39 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-28 17:36:39 -0400
commitfe426a3152db14e175e3a5bb819c4eca4279b6f7 (patch)
tree0099a3f9cbe0149f74d96bff37d9ecfbdbd76fa1 /lib
parenta4919eab6a5f01c3220507790f16c55dd4dbc1f6 (diff)
welcome notice, default sub for new users
Diffstat (limited to 'lib')
-rw-r--r--lib/common.php3
-rw-r--r--lib/noticelist.php1
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php
index d9d0ab277..c2037c3ad 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -153,6 +153,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 9fc0126b3..6af301839 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -387,6 +387,7 @@ class NoticeListItem extends Widget
case 'xmpp':
case 'mail':
case 'omb':
+ case 'system':
case 'api':
$this->out->element('dd', null, $source_name);
break;