Fixed function call
authorAlexander Ebert <ebert@woltlab.com>
Wed, 12 Oct 2011 19:40:25 +0000 (21:40 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Wed, 12 Oct 2011 19:40:25 +0000 (21:40 +0200)
wcfsetup/install/files/lib/system/request/Route.class.php

index d5c41128941f98a5d008fafc9b15898cb2777cfa..f516a29728b25647df03fefc46818db988d17737 100644 (file)
@@ -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;