Propel::init("$propel_root/build/conf/$propel_project-conf.php");
set_include_path(join(PATH_SEPARATOR, array(join(DIRECTORY_SEPARATOR, array($propel_root, "build", "classes")), get_include_path())));
- $request = preg_replace('!^/branches/[^/]+/!', "", $_SERVER['SCRIPT_URL']);
+ $script_url = array_key_exists('SCRIPT_URL', $_SERVER) ? $_SERVER['SCRIPT_URL'] : $_SERVER['REDIRECT_URL'];
+ $request = preg_replace('!^/branches/[^/]+/!', "", $script_url);
$request = preg_replace('!^/+!', "", $request);
$request = preg_replace('!/+$!', "", $request);