|
Revision 3700, 319 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) 2008 Kohana Team
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | $config['meta_equiv'] = array |
|---|
| 5 | ( |
|---|
| 6 | 'cache-control', |
|---|
| 7 | 'content-type', 'content-script-type', 'content-style-type', |
|---|
| 8 | 'content-disposition', |
|---|
| 9 | 'content-language', |
|---|
| 10 | 'default-style', |
|---|
| 11 | 'expires', |
|---|
| 12 | 'ext-cache', |
|---|
| 13 | 'pics-label', |
|---|
| 14 | 'pragma', |
|---|
| 15 | 'refresh', |
|---|
| 16 | 'set-cookie', |
|---|
| 17 | 'vary', |
|---|
| 18 | 'window-target', |
|---|
| 19 | ); |
|---|