]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/common.php
Updated Cloudy theme default avatars and minor CSS
[quix0rs-gnu-social.git] / lib / common.php
index dd2570e7518f5570d97e3072e49c6c478a63584e..abdc22c0e324dae9bb522747a4789d150485a89c 100644 (file)
@@ -143,6 +143,8 @@ $config =
         array('piddir' => '/var/run',
               'user' => false,
               'group' => false),
+        'twitterbridge' =>
+        array('enabled' => false),
         'integration' =>
         array('source' => 'Laconica', # source attribute for Twitter
               'taguri' => $_server.',2009'), # base for tag URIs
@@ -193,7 +195,7 @@ $_config_files[] = INSTALLDIR.'/config.php';
 $_have_a_config = false;
 
 foreach ($_config_files as $_config_file) {
-    if (file_exists($_config_file)) {
+    if (@file_exists($_config_file)) {
         include_once($_config_file);
         $_have_a_config = true;
     }