Blog Module braking style
Just made a fresh install of FUEL and the blog module
There is a
print_r
code block in the blog controller in the master branch. It's making appear an array with the date before the header.
I also was struggling with the casing issue, could be possibe to make the installer decide the file name casing depending on the FUEL version? I spent a day trying to make it work until I red about the issue in the git repo.
Comments
$view_path = ($in_app_folder) ?
APPPATH.'views/'.$view_folder.$view.'.php'
: MODULES_PATH.$this->fuel->blog->config('theme_module').'/views/'.$view_folder.$view;
Is not adding the .php extension to the view path if the theme is in the blog folder, falling back to default folder.. (I couldn't find where that h1 was coming from in the posts view ;-) )