From c97ea1dfdf818fe786d01882e4347a5cdfb363fb Mon Sep 17 00:00:00 2001 From: David McReynolds Date: Mon, 29 Sep 2014 16:38:59 -0700 Subject: [PATCH] Fixed issue with fuel_url function when mutliple languages are specified --- fuel/modules/fuel/helpers/fuel_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuel/modules/fuel/helpers/fuel_helper.php b/fuel/modules/fuel/helpers/fuel_helper.php index 17287c187..8b3b71b0a 100755 --- a/fuel/modules/fuel/helpers/fuel_helper.php +++ b/fuel/modules/fuel/helpers/fuel_helper.php @@ -551,7 +551,7 @@ function fuel_url($uri = '', $query_string = FALSE) { $CI =& get_instance(); $uri = fuel_uri($uri, $query_string); - return site_url($uri); + return site_url($uri, NULL, FALSE); } // --------------------------------------------------------------------