From 9966063787cef9c47b80240b9ea53269b1110332 Mon Sep 17 00:00:00 2001 From: Woody Gilk Date: Sat, 25 Jul 2009 18:10:52 -0500 Subject: [PATCH] Added "cache_dir" to the Kohana::init() comment --- application/bootstrap.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/bootstrap.php b/application/bootstrap.php index 4c17d8c..f1e78a0 100644 --- a/application/bootstrap.php +++ b/application/bootstrap.php @@ -37,8 +37,9 @@ spl_autoload_register(array('Kohana', 'auto_load')); * - string base_url path, and optionally domain, of your application NULL * - string index_file name of your index file, usually "index.php" index.php * - string charset internal character set used for input and output utf-8 - * - boolean profile enable or disable internal profiling TRUE + * - string cache_dir set the internal cache directory APPPATH/cache * - boolean errors enable or disable error handling TRUE + * - boolean profile enable or disable internal profiling TRUE * - boolean caching enable or disable internal caching FALSE */ Kohana::init(array('base_url' => '/ko3/'));