Prevent double slashes in base_url when installed to document root

Fixes #274
This commit is contained in:
Daniel Rudolf 2015-11-13 22:29:58 +01:00
parent c72ea0ecec
commit f5006c036a

View File

@ -1220,7 +1220,7 @@ class Pico
$this->config['base_url'] = $this->config['base_url'] =
$protocol . "://" . $_SERVER['HTTP_HOST'] $protocol . "://" . $_SERVER['HTTP_HOST']
. dirname($_SERVER['SCRIPT_NAME']) . '/'; . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/';
return $this->getConfig('base_url'); return $this->getConfig('base_url');
} }