After upgrading to Fuel 1.3, I found out that my theme's info.php was returning duplicate values when being read by Fuel. I traced the problem back to config/file.php's find_file().
By readding the following code from 1.2.1 after line 123, I got it fixed:
// absolute path requested?
if ($this->file[0] === '/' or (isset($this->file[1]) and $this->file[1] === ':'))
{
// don't search further, load only the requested file
return $paths;
}
Does anyone have a better solution or is this a legit bug?
Thanks!
Can you be more specific?
What did you expect to happen? What exactly happens? Where do the duplicate values come from? Do you have multiple 'info.php' files in your search path that get merged by the Config class?