commit 9f87ec5e8e1c549f46f9577c8b67c3315b88edd4
parent d3f7bdec30d2a04b209ddaefb5e896da9c723d93
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 25 Jan 2016 18:10:38 +0100
add missing sigil
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/frontend_lib/util.php b/src/frontend_lib/util.php
@@ -5,7 +5,7 @@ function get(&$var, $default=null) {
}
function url_join($base, $path, $strip=false) {
- $flags = strip ? (http\Url::STRIP_PATH|http\URL::STRIP_QUERY) : 0;
+ $flags = $strip ? (http\Url::STRIP_PATH|http\URL::STRIP_QUERY) : 0;
return (new http\URL($base, null, $flags))
->mod(array ("path" => $path), http\Url::JOIN_PATH|http\URL::SANITIZE_PATH)
->toString();