X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fcommon.php;h=ca02a3e7fbc8f7854b570f059bc19abca950198a;hb=b4f1281799766570ff68580e13c588ea8c8ce1f1;hp=2a11ab722ddc0d71d3bf0107a6faebc842e909e7;hpb=71176b9a98ef5298162f821c621a0e467dd9570b;p=quix0rs-gnu-social.git diff --git a/lib/common.php b/lib/common.php index 2a11ab722d..ca02a3e7fb 100644 --- a/lib/common.php +++ b/lib/common.php @@ -1,7 +1,7 @@ getCode() == DB_DATAOBJECT_ERROR_NODATA) { - return; - } - if ($err->getCode()) { - throw new PEAR_Exception($err->getMessage(), $err->getCode()); - } - throw new PEAR_Exception($err->getMessage()); -} -PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'PEAR_ErrorToPEAR_Exception'); +// All the fun stuff to actually initialize StatusNet's framework code, +// without loading up a site configuration. +require_once INSTALLDIR . '/lib/framework.php'; try { StatusNet::init(@$server, @$path, @$conffile); @@ -151,10 +33,10 @@ try { // XXX: Throw a conniption if database not installed // XXX: Find a way to use htmlwriter for this instead of handcoded markup // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. - echo '

'. _('No configuration file found. ') .'

'; + echo '

'. _('No configuration file found.') .'

'; // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. // TRANS: Is followed by a list of directories (separated by HTML breaks). - echo '

'. _('I looked for configuration files in the following places: ') .'
'; + echo '

'. _('I looked for configuration files in the following places:') .'
'; echo implode($e->configFiles, '
'); // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. echo '

'. _('You may wish to run the installer to fix this.') .'

';