Mat Whitney

Results 115 comments of Mat Whitney

I started putting together a migration file to update just the database changes that should not require code changes. When looking for some information on which types would be available...

I did a little research yesterday, and I'm not feeling any better about where we need to go with this. I took the SQL standard data types (adapted from Wikipedia...

@boblennes Any thoughts on these changes?

Unfortunately, the function is used for the `$_GET` and `$_POST` arrays, too, so it would probably be better to override `_sanitize_globals()` and pass off the cleaning of the cookie's keys...

You could try something like the following, but I haven't tested to determine whether anything else would need to be updated to use the CI 3 methods correctly/safely. https://gist.github.com/mwhitneysdsu/19c7bd5fb1f9192e93f7#file-bf_input-php This...

Depending on the version of MySQL, strict mode may not allow you to use `'0000-00-00 00:00:00'` as a value for `DATETIME` fields. I haven't fully explored whether you can remove...

Maybe you could add a lang directory to /builder/views/files/, or a builder_files_lang.php file to each language directory in the /builder/language/ directory and iterate through the list of available files. Then...

I guess it depends on how many languages you're planning to support (and a check/uncheck all is always appreciated). Personally, I would leave them all selected by default. In the...

I like what's there so far in #951. I do think it would be a little easier for people to provide translations, though, if it used traditional lang files to...

It appears that you are correct, though there are at least 4 other methods in BF_Model which generate select statements (`select_max()`, `select_min()`, `select_avg()`, and `select_sum()`) which will also need to...