diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-01-28 18:11:02 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-01-28 18:11:02 +0100 |
commit | a25530f6594c7ba45b3faa9537fda9f807069759 (patch) | |
tree | dc47713436c3777dcb9eb22f2f08cee4186400f5 /system/database | |
parent | 15130caa8d3f4650d383647050ce918de728bc53 (diff) |
added is_really_writable() to Common.php, replaced is_writable() throughout application with is_really_writable()
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_cache.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php index 44b8e815f..ad54fc315 100644 --- a/system/database/DB_cache.php +++ b/system/database/DB_cache.php @@ -63,9 +63,6 @@ class CI_DB_Cache { // Add a trailing slash to the path if needed
$path = preg_replace("/(.+?)\/*$/", "\\1/", $path);
-
- // Load the file helper
- $this->CI->load->helper('file');
if ( ! is_dir($path) OR ! is_really_writable($path))
{
|