Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
// if adding arguments to mod_rewritten urls, then I need ? (question mark) before the arguments
// otherwise I want &
$last = substr($url,-1);
if ($last == "/") {
//$url = substr($url,0,-1);
$separator = "?";
} else {
$separator = "&";
}
and change it to read:// if adding arguments to mod_rewritten urls, then I need ? (question mark) before the arguments
// otherwise I want &
$last = strpos($_SERVER['REQUEST_URI'], "?");
if ($last === false) {
//$url = substr($url,0,-1);
$separator = "?";
} else {
$separator = "&";
1 to 3 of 3