Chris Castro
Chris Castro
Added "Recent Contents" block, it can be used to render a list of any desired type of content. It allows you to specify a search criteria that will be used...
ups, I forgot to update the [contents plugin repo](https://github.com/quickapps-plugins/content). Now is up to date and you can safely update using composer. However, try `composer clear-cache` before running `update` ``` bash...
You mean when using block visibility feature ? http://book.quickappscms.org/user's-guide/block-plugin.html#controlling-visibility
of course, contributions are always welcome 😄
Fixing `CSRF` in QACMS in general may produce several problem as QACMS heavily relies on AJAX and dynamic forms building. We could try to secure certain sections of the CMS,...
Seems your MySQL instance is using "strict" mode, try to disable it: https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html
QACMS at its time was designed with MySQL 5.6 in mind. Seems you are using MySQL 5.7 which includes a bunch of sql-mode directives by default. Prior to 5.7 there...
https://dev.mysql.com/doc/refman/5.6/en/faqs-sql-modes.html#faq-mysql-what-default-mode
Yes, `sql_mode = NO_ENGINE_SUBSTITUTION`. However I'll try to identify all those columns and fix them all at once.
I believe this is the [expected behaviour](https://github.com/quickapps/cms/blob/2.0/plugins/Content/src/Controller/Admin/TypesController.php#L135), as deletion of virtual attributes definition would break every existing content using such attributes. However, I think this behaviour can be improved. For...