]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/common.php
double-cache to get newer items
[quix0rs-gnu-social.git] / lib / common.php
index 015ecd639ad0952840a444bb3ba06a3b7fde5ac4..2ab9c616c47ad9da218e2d85e0bb67fa1f937330 100644 (file)
@@ -19,7 +19,7 @@
 
 if (!defined('LACONICA')) { exit(1); }
 
-define('LACONICA_VERSION', '0.6.0');
+define('LACONICA_VERSION', '0.6.2');
 
 define('AVATAR_PROFILE_SIZE', 96);
 define('AVATAR_STREAM_SIZE', 48);
@@ -67,7 +67,8 @@ $config =
                          'broughtby' => NULL,
                          'timezone' => 'UTC',
                          'broughtbyurl' => NULL,
-                         'closed' => false),
+                         'closed' => false,
+                         'inviteonly' => false),
                'syslog' =>
                array('appname' => 'laconica', # for syslog
                          'priority' => 'debug'), # XXX: currently ignored
@@ -85,7 +86,8 @@ $config =
                'avatar' =>
                array('server' => NULL),
                'public' =>
-               array('localonly' => true),
+               array('localonly' => true,
+                         'blacklist' => array()),
                'theme' =>
                array('server' => NULL),
                'xmpp' =>
@@ -110,7 +112,9 @@ $config =
                'memcached' => 
                array('enabled' => false,
                          'server' => 'localhost',
-                         'port' => 11211)
+                         'port' => 11211),
+               'inboxes' =>
+               array('enabled' => true), # on by default for new sites
                );
 
 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
@@ -141,6 +145,7 @@ require_once(INSTALLDIR.'/lib/action.php');
 require_once(INSTALLDIR.'/lib/theme.php');
 require_once(INSTALLDIR.'/lib/mail.php');
 require_once(INSTALLDIR.'/lib/subs.php');
+require_once(INSTALLDIR.'/lib/Shorturl_api.php');
 
 function __autoload($class) {
        if ($class == 'OAuthRequest') {