implode error PHP 7

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

Sign In or Register to comment.