24 lines
495 B
PHP
24 lines
495 B
PHP
<?php
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
defined('SYSPATH') or die('No direct access allowed.');
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
// HTTP-EQUIV type meta tags
|
|
$config['meta_equiv'] = array
|
|
(
|
|
'cache-control',
|
|
'content-type', 'content-script-type', 'content-style-type',
|
|
'content-disposition',
|
|
'content-language',
|
|
'default-style',
|
|
'expires',
|
|
'ext-cache',
|
|
'pics-label',
|
|
'pragma',
|
|
'refresh',
|
|
'set-cookie',
|
|
'vary',
|
|
'window-target',
|
|
);
|