changed base path when clean_urls is false

This commit is contained in:
Luke Carlson 2014-08-07 14:07:00 -04:00
parent edd104a512
commit fd1e819445

View File

@ -90,7 +90,9 @@ if(isset($argv)){
exit(); exit();
} }
require_once(dirname( __FILE__)."/libs/live.php"); require_once(dirname( __FILE__)."/libs/live.php");
$base_path = str_replace("/index.php", "", $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']); $server_base = $_SERVER['HTTP_HOST'];
if (!$options['clean_urls']) $server_base .= $_SERVER['PHP_SELF'];
$base_path = str_replace("/index.php", "", $server_base);
define("CLI", FALSE); define("CLI", FALSE);
build_tree(); build_tree();
$remove = array($base_path . '/'); $remove = array($base_path . '/');