|
Revision 3700, 230 bytes
(checked in by Shadowhand, 12 days ago)
|
|
Updates to trunk:
- Removed all SYSPATH file checks
- Deleted some modules: code_coverage (3.0), shoutbox (defunct), user_guide (defunct), kobot (3.0), object_db (3.0)
- Updated ORM and ORM_Iterator to match 3.0, enabling the new HABTM stuff, see r3636 and r3640
|
-
Property svn:eol-style set to
LF
-
Property copyright set to
Copyright (c) 2007 Kohana Team
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | $config['allowed_filetypes'] = array |
|---|
| 8 | ( |
|---|
| 9 | 'gif', |
|---|
| 10 | 'jpg', 'jpeg', |
|---|
| 11 | 'png', |
|---|
| 12 | 'tif', 'tiff', |
|---|
| 13 | 'swf', |
|---|
| 14 | 'htm', 'html', |
|---|
| 15 | 'css', |
|---|
| 16 | 'js' |
|---|
| 17 | ); |
|---|