Prevent double slashes in base_url when installed to document root

Fixes #274
pico-3.0-alpha
Daniel Rudolf 10 years ago
parent c72ea0ecec
commit f5006c036a
  1. 2
      lib/Pico.php

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

Loading…
Cancel
Save