/WebSVN/include/utils.inc
248,7 → 248,7
$arr = $_GET + $_POST;
# XXX: the point of HTTP POST is that URIs have a set size limit, so POST
# data is typically too large to bother with; why include it?
$url .= '?'.http_build_query($arr);
$url .= '?'.htmlentities(http_build_query($arr));
}
 
return $url;