diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-10-03 17:36:53 +1300 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-10-03 17:36:53 +1300 |
commit | 0743ca125902ab2d40f324063b5a0552b1e28f72 (patch) | |
tree | fad683de688936df4a10895bd77e9ed3bf041c24 | |
parent | 87858a11f4435e20b0bd2f43da2961976a9c9a2d (diff) |
indent fix
-rw-r--r-- | install.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/install.php b/install.php index c2a5bb29e..69f025a6a 100644 --- a/install.php +++ b/install.php @@ -1,3 +1,4 @@ + <?php /** * StatusNet - the distributed open-source microblogging tool @@ -31,7 +32,7 @@ * @author Sarven Capadisli <csarven@status.net> * @author Tom Adams <tom@holizz.com> * @license GNU Affero General Public License http://www.gnu.org/licenses/ - * @version 0.9 + * @version 0.9.x * @link http://status.net */ @@ -340,13 +341,13 @@ function checkExtension($name) if (extension_loaded($name)) { return true; } elseif (function_exists('dl') && ini_get('enable_dl') && !ini_get('safe_mode')) { - // dl will throw a fatal error if it's disabled or we're in safe mode. - // More fun, it may not even exist under some SAPIs in 5.3.0 or later... - $soname = $name . '.' . PHP_SHLIB_SUFFIX; - if (PHP_SHLIB_SUFFIX == 'dll') { - $soname = "php_" . $soname; - } - return @dl($soname); + // dl will throw a fatal error if it's disabled or we're in safe mode. + // More fun, it may not even exist under some SAPIs in 5.3.0 or later... + $soname = $name . '.' . PHP_SHLIB_SUFFIX; + if (PHP_SHLIB_SUFFIX == 'dll') { + $soname = "php_" . $soname; + } + return @dl($soname); } else { return false; } |