Fixed generated urls sometimes interfering with rewrite rules

This commit is contained in:
Frank Schubert
2022-10-20 14:53:32 +02:00
parent 2f1f64752a
commit 56dab61941
3 changed files with 4 additions and 3 deletions

View File

@@ -264,7 +264,7 @@ class mfBaseController {
}
}
if(is_array($param) && count($param)) {
$url .= (MFUSEFANCYURLS) ? "/" : "&";
$url .= (MFUSEFANCYURLS) ? "/?" : "&";
$param_qs = http_build_query($param);
$url .= "$param_qs";
}