The migration progress has been sucessful and now we are working with the last release of FuelCMS. Thank you again for your support and effort, you are becoming a little superhero
You are right, I usually go sleep late working on my own projects. I'm doing my new personal webpage with FuelCMS and I'm planning to release the code with Github (I have some files right now, but in an early stage, because I'm making continuous cha…
Sorry about my writing, my English is not enough fluent...
I mean the "base_module_model" constructor code should finish with
"parent::__construct($table, $params); // table name, params"
instead of
"parent::__construct($table); //table name"
Ok, now it's working for me, I was passing the "required" parameter as string.
Your fix works well, but is needed to pass the "$params" var to the "MY_Model" constructor
I need to pass the $params var to the MY_Model constructor, isn't it?
I'm doing it as follows: parent::__construct($table, $params); // table name
But this code throws this error: Severity: Notice
Message: Undefined variable: required
Filename…