diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:31:02 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:31:02 +0100 |
commit | ea41c8aa1951216b6a9ccc99832d69d2b41c5ead (patch) | |
tree | 57b8b39c7325217795e172cafb71e5f7e63fc563 /system/helpers/path_helper.php | |
parent | 4247ed1c0fb588f968f18fd80a5f95debefc63f6 (diff) |
Don't use error suppression on realpath() + style adjustments
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 ae1f0bf33..15e7968b9 100644 --- a/system/helpers/path_helper.php +++ b/system/helpers/path_helper.php @@ -56,7 +56,7 @@ if ( ! function_exists('set_realpath')) } // Resolve the path - if (@realpath($path) !== FALSE) + if (realpath($path) !== FALSE) { $path = realpath($path); } |