From: Alexander Ebert Date: Wed, 12 Oct 2011 19:40:25 +0000 (+0200) Subject: Fixed function call X-Git-Tag: 2.0.0_Beta_1~1696^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=93b4916e127ad1092f460f6e563568eaec10a2ce;p=GitHub%2FWoltLab%2FWCF.git Fixed function call --- diff --git a/wcfsetup/install/files/lib/system/request/Route.class.php b/wcfsetup/install/files/lib/system/request/Route.class.php index d5c4112894..f516a29728 100644 --- a/wcfsetup/install/files/lib/system/request/Route.class.php +++ b/wcfsetup/install/files/lib/system/request/Route.class.php @@ -247,7 +247,7 @@ class Route { $link = 'index.php' . (!empty($link) ? '/' : ''); if (!empty($components)) { - $link .= '?' . html_build_query($components, '', '&'); + $link .= '?' . http_build_query($components, '', '&'); } return $link;