|
Revision 920, 0.7 KB
(checked in by moo, 11 months ago)
|
|
add back default
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | // this is default config |
|---|
| 4 | // DO NOT rename/delete/modify this file |
|---|
| 5 | // see config.example.php |
|---|
| 6 | |
|---|
| 7 | // detected by browser |
|---|
| 8 | // $config['lang'] = 'en-us'; |
|---|
| 9 | |
|---|
| 10 | $config['charset'] = "UTF-8"; |
|---|
| 11 | |
|---|
| 12 | // translators only |
|---|
| 13 | $config['show_todo_strings'] = false; |
|---|
| 14 | |
|---|
| 15 | // width of graph for free or usage blocks |
|---|
| 16 | $config['percent_graph_width'] = 120; |
|---|
| 17 | $config['percent_graph_type'] = 'used'; // either 'used' or 'free' |
|---|
| 18 | |
|---|
| 19 | // only enable if you have password protection for admin page |
|---|
| 20 | // enabling this option will cause user to eval() whatever code they want |
|---|
| 21 | $config['enable_eval'] = false; |
|---|
| 22 | |
|---|
| 23 | // this ob filter is applied for the cache list, not the whole page |
|---|
| 24 | $config['path_nicer'] = 'ob_filter_path_nicer_default'; |
|---|
| 25 | |
|---|
| 26 | ?> |
|---|