I would love an answer to this as well. I'm guessing there's a slick git approach, but I don't know it.
For another CI-only project that I'm working on, I cloned the CI project in a separate directory, updated it to the latest version, and then ra…
Found the answer. I didn't have my columns in an array in side the $this->db->select(). So the answer, for future searchers, is:
$this->db->select(array('id','col1','col2'...));
$data = parent::list_items($limit,$offset,$col,$order);
…
I'll keep my eye on the bug list. As for features I'd be happy to help with whatever. I'm really just looking to learn FUEL better, learn CI better, and give back to the OS community. So, I guess if you have any items that have been backlogged, I…
Thanks for the response. I'm thinking that I will end up having the 25 different installs for the site, but am wondering how to effectively manage those sites via versioning. Right now I'm thinking I may have one shared code-base with the assets b…