Skip to content
Snippets Groups Projects
Commit 84f65b2e authored by Ken West's avatar Ken West
Browse files

CRM-13695 set $_SERVER[HTTP_HOST] from CIVICRM_UF_BASEURL

----------------------------------------
* CRM-13695: cli - set $_SERVER['HTTP_HOST'] from CIVICRM_UF_BASEURL
  http://issues.civicrm.org/jira/browse/CRM-13695
parent 3b6a4023
No related branches found
No related tags found
No related merge requests found
......@@ -205,6 +205,15 @@ class civicrm_cli {
CRM_Core_ClassLoader::singleton()->register();
$this->_config = CRM_Core_Config::singleton();
// HTTP_HOST will be 'localhost' unless overwritten with the -s argument.
// Now we have a Config object, we can set it from the Base URL.
if ($_SERVER['HTTP_HOST'] == 'localhost') {
$_SERVER['HTTP_HOST'] = preg_replace(
'!^https?://([^/]+)/$!i',
'$1',
$this->_config->userFrameworkBaseURL);
}
$class = 'CRM_Utils_System_' . $this->_config->userFramework;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment