Blog version:
define('BLOG_VERSION', '1.1');
I was able to change the way that dates are displayed in forms. The main problem was that in the moment of saving to DB, the spanish format of the date was taken as invalid and not converted to DB format…
By the way.. is any easy way to configure the locale? or to set the language for dates at least? I had a lot of troubles in dates inputs. I had to convert them from spanish format to english or DB format depending the case, to pass validation.
Where…
From Blog_base_controller.php (line 51):
$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…
I was tryin to use an enum field in model for a type of registry, with values in spanish (what means I'm using accents: áéíóúñ). I was getting the invalid type error on saving because of the auto-entities-encoding.
When I disable it for that specifi…