36 lignes
1.1 KiB
PHP
36 lignes
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Metadata version
|
|
*/
|
|
$sMetadataVersion = '1.1';
|
|
|
|
/**
|
|
* Module information
|
|
*/
|
|
$aModule = array(
|
|
'id' => 'd3sidcookiefix',
|
|
'title' =>
|
|
(class_exists('d3utils') ? d3utils::getInstance()->getD3Logo() : 'D³') .
|
|
' Session ID Cookie fix',
|
|
'description' => array(
|
|
'de' => 'fix multiple session cookie header lines - causes "Connection reset by peer" errors in some load balancer configurations because of to long headers',
|
|
'en' => ''),
|
|
// 'thumbnail' => 'picture.png',
|
|
'version' => '1.0.0.0',
|
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
|
'email' => 'support@shopmodule.com',
|
|
'url' => 'http://www.oxidmodule.com/',
|
|
'extend' => array(
|
|
'oxsession' => 'd3/d3sidcookiefix/modules/core/d3_sidcookiefix_oxsession',
|
|
),
|
|
'files' => array(
|
|
),
|
|
'templates' => array(
|
|
),
|
|
'events' => array(
|
|
),
|
|
'blocks' => array(
|
|
),
|
|
'settings' => array(
|
|
),
|
|
); |