diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-08 20:38:53 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-08 20:38:53 +0100 |
commit | 53b8ef524529e6ca9f32ad49d36c5140df84feb0 (patch) | |
tree | 383e10c617709699ca9e275797e405afad458816 /system/database | |
parent | f6d9a7cff222f868312a6d4ae4e4050616acb9a7 (diff) |
Polish docs for HTML, Inflector, Language, Number, Path, Security and Smiley helpers
Also fixed a DB_cache bug introduced in previous commit and removed an unused parameter in a smiley helper
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php index b8f8995fa..1be80c5c7 100644 --- a/system/database/DB_cache.php +++ b/system/database/DB_cache.php @@ -199,7 +199,7 @@ class CI_DB_Cache { */ public function delete_all() { - delete_files($this->db->cachedir, TRUE, 0, TRUE); + delete_files($this->db->cachedir, TRUE, TRUE); } } |