Added "cache_dir" to the Kohana::init() comment

This commit is contained in:
Woody Gilk 2009-07-25 18:10:52 -05:00
parent 9fe78ef144
commit 9966063787

View file

@ -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/'));