summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class9
1 files changed, 5 insertions, 4 deletions
diff --git a/it_html.class b/it_html.class
index 0375891..af0ab26 100644
--- a/it_html.class
+++ b/it_html.class
@@ -313,11 +313,12 @@ function u(/* ... */)
$base = $_SERVER['PHP_SELF'];
$base = preg_replace('|\0|', '', $base);
- $base = preg_replace('|[^\w.+!*(),:@&=/~$-]|e', 'urlencode("$0")', $base);
+ $base = preg_replace('|[^\w.+!*(),:?@&=/~$-]|e', 'urlencode("$0")', $base);
$base = preg_replace('|^(\w+:)?//[^/]*$|', '$0/', $base); # Add slash if absolute url without a path, e.g. http://gna.ch
$queryparams = it_url::params($params);
-
- return $base . ($queryparams ? "?$queryparams" : "");
+ $separator = strpos($base, "?") === false ? "?" : "&";
+
+ return $base . ($queryparams ? "$separator$queryparams" : "");
}
@@ -505,7 +506,7 @@ function head($args = array())
$checksum = itjs::checksum(itjs::filenames($p['js']));
$js .= $this->_itjs("boot.js", "inline");
$js .= "function it_boot_start(){ " . trim($p['jsboot']) . " }\n";
- $js .= "it_boot('/itjs/" . $p['js'] . (strpos($p['js'], "?") ? "&" : "?") . "s=$checksum');\n";
+ $js .= "it_boot('/itjs/" . it_html::U($p['js'], 's' => $checksum) . "');\n";
}
$js .= $this->_itjs($p['jsinline'], 'inline');