X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fcommon.php;h=63ea37b8954be208eae272a2ad09f477d4eab119;hb=8250d8a350f91494a4ca5d71e711aa5ecd91dff5;hp=60c820ee6e7586da25bd67591aeba740db70cd88;hpb=27b7987b3ce527799a6fbe5b2b9eab0b1030eca5;p=quix0rs-gnu-social.git diff --git a/lib/common.php b/lib/common.php index 60c820ee6e..63ea37b895 100644 --- a/lib/common.php +++ b/lib/common.php @@ -19,7 +19,7 @@ if (!defined('LACONICA')) { exit(1); } -define('LACONICA_VERSION', '0.6.0'); +define('LACONICA_VERSION', '0.6.1'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); @@ -28,6 +28,13 @@ define('MAX_AVATAR_SIZE', 256 * 1024); define('NOTICES_PER_PAGE', 20); +define('FOREIGN_NOTICE_SEND', 1); +define('FOREIGN_NOTICE_RECV', 2); +define('FOREIGN_NOTICE_SEND_REPLY', 4); + +define('FOREIGN_FRIEND_SEND', 1); +define('FOREIGN_FRIEND_RECV', 2); + define_syslog_variables(); # append our extlib dir as the last-resort place to find libs @@ -60,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 @@ -103,7 +111,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'); @@ -134,6 +144,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') {