commit | c839d28f4230dce0c658338f267b821cc16490a2 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Thu Jun 07 14:35:27 2012 +0300 |
committer | Andrey Andreev <narf@bofh.bg> | Thu Jun 07 14:35:27 2012 +0300 |
tree | 8b2905d1594c5fd90c621abff97bb1ff1cda33d1 | |
parent | 2ba089ef2e8b0a569b80c822337a6f6f3e928df0 [diff] [blame] |
Remove some unnecessary function_exists() checks and some minor improvements
diff --git a/system/helpers/path_helper.php b/system/helpers/path_helper.php index 1341054..fec4a1a 100644 --- a/system/helpers/path_helper.php +++ b/system/helpers/path_helper.php
@@ -55,7 +55,7 @@ } // Resolve the path - if (function_exists('realpath') && @realpath($path) !== FALSE) + if (@realpath($path) !== FALSE) { $path = realpath($path); }