From 5bcfd2e83e52155f199058479ac116a136f334a3 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 28 Jul 2009 14:42:42 +0000 Subject: whitespace --- system/codeigniter/Common.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'system/codeigniter') diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php index 39005f602..f45c85c26 100644 --- a/system/codeigniter/Common.php +++ b/system/codeigniter/Common.php @@ -38,18 +38,18 @@ * @access public * @return bool */ - function is_php($version = '5.0.0') - { - static $_is_php; - - if ( ! isset($_is_php[$version])) - { - $_is_php[$version] = (version_compare(PHP_VERSION, $version) < 0) ? FALSE : TRUE; - } +function is_php($version = '5.0.0') +{ + static $_is_php; - return $_is_php[$version]; + if ( ! isset($_is_php[$version])) + { + $_is_php[$version] = (version_compare(PHP_VERSION, $version) < 0) ? FALSE : TRUE; } + return $_is_php[$version]; +} + // ------------------------------------------------------------------------ /** -- cgit v1.2.3-24-g4f1b