libs
libs
Yes , sure. Thx.
I found some info: https://mariadb.com/kb/en/library/server-system-variables/#sql_quote_show_create but not works well. This is another info about this: https://jira.mariadb.org/browse/MDEV-15377 https://jira.mariadb.org/browse/MDEV-13244 I see that this library accept only DEFAULT values in quotes. It ignore...
this is my fix at Column class: ``` if (!is_null($this->defaultValue) && $this->nullable === false) { if($this->defaultValue === "''" || $this->defaultValue === 'CURRENT_TIMESTAMP') { $columnOptions[] = sprintf('DEFAULT %s', $this->defaultValue); } else...
I am just running it in cron under one hosting domain. chown is hosting user account. on CentOS
If its soo simple should you complete your library with xml reader please?
Yes, its correct now.
I can confirm that maxFiles is ignored when I add already uploaded files. I see that only on one place is function which will add file into array: this.files.push(file); and...
Please merge it, I tested and it works.
I found a minor problem. When displayExistingFile() receive more than maxFiles it will add all of them except cut it to maxFiles count. More files that maxFiles should be ignored...
You described different functionality. Problem is that when I select anything from list it will make focus to ".search-field.chosen-search-input". For me is expected when its lost focus (blur) and I...