Mat Whitney

Results 115 comments of Mat Whitney

There should be a note on the form that says something like: ``` If DB field type is "enum" or "set", please enter the values using this format: 'a','b','c'... If...

If you don't call `return_insert_id(false)` (or set the `$return_insert_id` property to `false`) on your model, the insert method will call `$this->db->insert_id()`, which, when using the MySQLi driver, will return 0...

This sounds like you may be using an old version of Bonfire. I believe this functionality has been available for over a year.

SITE_AREA/settings/ui Or in the Settings menu under "Keyboard Shortcuts" I believe there is also a link on the dropdown displaying the list of keyboard shortcuts which says "Update the keyboard...

I've re-opened the issue, but I'm not sure if this is really going to be possible. I guess it would be possible to do something like add the shortcut key(s)...

If you change this line: https://github.com/ci-bonfire/Bonfire/blob/develop/bonfire/modules/emailer/controllers/Settings.php#L65 ``` $this->form_validation->set_rules('smtp_pass', 'lang:emailer_smtp_password', 'trim|matches_pattern[[A-Za-z0-9!@#\%$^&+=]{2,20}]'); ``` to this: ``` $this->form_validation->set_rules('smtp_pass', 'lang:emailer_smtp_password', 'trim|matches_pattern[[A-Za-z0-9!@#\%$^&+=]{2,255}]'); ``` does that fix the problem for you, or do you need it...

I'm fully open to suggestions in this area, and I'm sure @lonnieezell would be as well. One of the issues I see right away is that the common ID field...

If you push it to your fork, we can at least look over the changes and make some decisions on what can be pulled in as-is vs. what needs to...

Some additional thoughts: I went through and reviewed the schema of Bonfire's tables. I agree that there are quite a few things that could at least be made more consistent...

OK, I'm looking through the fork, but so far the only thing I've found is this: https://github.com/cpcbell/Bonfire/commit/234b5dc774171363ba8f5dba9e36ec59ab2868f9 The error mentioned actually sounds familiar to me (the last two projects I...