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 edit it to read:// if adding arguments to mod_rewritten urls, then I need ? (question mark) before the arguments
// otherwise I want &
if (!strpos($url,"?")) {
$separator = "?";
} else {
$separator = "&";
}
1 to 4 of 4