From 93b4916e127ad1092f460f6e563568eaec10a2ce Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 12 Oct 2011 21:40:25 +0200 Subject: [PATCH] Fixed function call --- wcfsetup/install/files/lib/system/request/Route.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1