summaryrefslogtreecommitdiff
path: root/lib/default.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-02-13 20:28:39 +0100
committerSarven Capadisli <csarven@status.net>2010-02-13 20:28:39 +0100
commit9465a4d5c6b77bd77e78bc277a817e2b5724ec76 (patch)
tree8533ad32339160d5ba3cf27209f78740ffa977cd /lib/default.php
parent171bf3093a4cf3f3ff0b4d255392ffd5375e4c36 (diff)
parent269b4711eb1600597af314f2fdca00102ff5566a (diff)
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'lib/default.php')
-rw-r--r--lib/default.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/default.php b/lib/default.php
index bf4b83718..8b1fe2769 100644
--- a/lib/default.php
+++ b/lib/default.php
@@ -111,11 +111,13 @@ $default =
'avatar' =>
array('server' => null,
'dir' => INSTALLDIR . '/avatar/',
- 'path' => $_path . '/avatar/'),
+ 'path' => $_path . '/avatar/',
+ 'ssl' => null),
'background' =>
array('server' => null,
'dir' => INSTALLDIR . '/background/',
- 'path' => $_path . '/background/'),
+ 'path' => $_path . '/background/',
+ 'ssl' => null),
'public' =>
array('localonly' => true,
'blacklist' => array(),
@@ -123,10 +125,12 @@ $default =
'theme' =>
array('server' => null,
'dir' => null,
- 'path'=> null),
+ 'path'=> null,
+ 'ssl' => null),
'javascript' =>
array('server' => null,
- 'path'=> null),
+ 'path'=> null,
+ 'ssl' => null),
'throttle' =>
array('enabled' => false, // whether to throttle edits; false by default
'count' => 20, // number of allowed messages in timespan
@@ -184,6 +188,7 @@ $default =
array('server' => null,
'dir' => INSTALLDIR . '/file/',
'path' => $_path . '/file/',
+ 'ssl' => null,
'supported' => array('image/png',
'image/jpeg',
'image/gif',