|
Revision 1053, 425 bytes
(checked in by moo, 10 months ago)
|
|
refactor: move htdocs, bin, lib for easier installation
|
-
Property svn:eol-style set to
native
|
| Rev | Line | |
|---|
| [1053] | 1 | <?php |
|---|
| 2 | |
|---|
| 3 | // [default config] |
|---|
| 4 | // DO NOT rename/delete/modify this file which will be overwritten when upgrade |
|---|
| 5 | // See config.example.php instead |
|---|
| 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 | // this ob filter function is applied for the list with paths, not the whole page |
|---|
| 16 | $config['path_nicer'] = 'ob_filter_path_nicer_default'; |
|---|
| 17 | |
|---|