diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-07 20:29:23 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-07 20:29:23 +0200 |
commit | 3427797a2899506adbe5317671fe0b3c27c2a6a6 (patch) | |
tree | 199fd08da90a1e37f5c7f4d75e4af957dc5e7278 /system/helpers/path_helper.php | |
parent | 968690491f625ddf59a5136b55ae1b9a2cf98a9a (diff) | |
parent | 25d47aec0417e52af43985663ebc1f62931f13cd (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-sqlite
Diffstat (limited to 'system/helpers/path_helper.php')
-rw-r--r-- | system/helpers/path_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/path_helper.php b/system/helpers/path_helper.php index 13410545c..fec4a1a10 100644 --- a/system/helpers/path_helper.php +++ b/system/helpers/path_helper.php @@ -55,7 +55,7 @@ if ( ! function_exists('set_realpath')) } // Resolve the path - if (function_exists('realpath') && @realpath($path) !== FALSE) + if (@realpath($path) !== FALSE) { $path = realpath($path); } |