HOR-2101-B
This commit is contained in:
@@ -75,7 +75,8 @@ class System
|
|||||||
'enable_blacklist' => 0,
|
'enable_blacklist' => 0,
|
||||||
'system_utc_time_zone' => 0,
|
'system_utc_time_zone' => 0,
|
||||||
'server_protocol' => '',
|
'server_protocol' => '',
|
||||||
'server_hostname_requests_frontend' => ''
|
'server_hostname_requests_frontend' => '',
|
||||||
|
'load_headers_ie' => 0
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1281,4 +1282,3 @@ class System
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// end System class
|
// end System class
|
||||||
|
|
||||||
|
|||||||
@@ -310,7 +310,11 @@ class SkinEngine
|
|||||||
}
|
}
|
||||||
|
|
||||||
$template->assign("doctype", $doctype);
|
$template->assign("doctype", $doctype);
|
||||||
$template->assign("meta", $meta);
|
|
||||||
|
if (defined('LOAD_HEADERS_IE') && LOAD_HEADERS_IE == 0) {
|
||||||
|
$template->assign('meta', $meta);
|
||||||
|
}
|
||||||
|
|
||||||
$template->assign("dirBody", $dirBody);
|
$template->assign("dirBody", $dirBody);
|
||||||
|
|
||||||
echo $template->getOutputContent();
|
echo $template->getOutputContent();
|
||||||
@@ -693,7 +697,10 @@ class SkinEngine
|
|||||||
$header .= $oHeadPublisher->getExtJsStylesheets($this->cssFileName);
|
$header .= $oHeadPublisher->getExtJsStylesheets($this->cssFileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
$smarty->assign("meta", $meta);
|
if (defined('LOAD_HEADERS_IE') && LOAD_HEADERS_IE == 0) {
|
||||||
|
$smarty->assign('meta', $meta);
|
||||||
|
}
|
||||||
|
|
||||||
$smarty->assign("header", $header);
|
$smarty->assign("header", $header);
|
||||||
|
|
||||||
$footer = '';
|
$footer = '';
|
||||||
|
|||||||
@@ -339,6 +339,8 @@ define( 'MEMCACHED_SERVER', $config['memcached_server'] );
|
|||||||
|
|
||||||
define ('WS_IN_LOGIN', isset($config['WS_IN_LOGIN']) ? $config['WS_IN_LOGIN'] : 'serverconf');
|
define ('WS_IN_LOGIN', isset($config['WS_IN_LOGIN']) ? $config['WS_IN_LOGIN'] : 'serverconf');
|
||||||
|
|
||||||
|
define('LOAD_HEADERS_IE', $config['load_headers_ie']);
|
||||||
|
|
||||||
// IIS Compatibility, SERVER_ADDR doesn't exist on that env, so we need to define it.
|
// IIS Compatibility, SERVER_ADDR doesn't exist on that env, so we need to define it.
|
||||||
$_SERVER['SERVER_ADDR'] = isset( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['SERVER_NAME'];
|
$_SERVER['SERVER_ADDR'] = isset( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['SERVER_NAME'];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user