It looks like you're new here. If you want to get involved, click one of these buttons!
v1.4.13. I suspect the implode() function in ./libraries/Fuel_language.php is broken for PHP 7+
function cleaned_uri($uri = NULL, $routed = FALSE)
{
$segs = $this->cleaned_uri_segments($uri, $routed);
//return implode($segs, '/'); //broken
return implode('/',$segs); //fixed
}
Comments
Thanks for the report. I've pushed a fix to the develop branch.