Guy Sartorelli
Guy Sartorelli
Rescues https://github.com/silverstripe/silverstripe-cms/commit/cb737aa842a3b980c709e564d98846c1cf4310e6 ## Parent issue - https://github.com/silverstripe/silverstripe-framework/issues/10350
These classes are useful with `silverstripe/admin` and `silverstripe/versioned` without needing `silverstripe/cms`. See also https://github.com/silverstripe/silverstripe-versioned/pull/368 and https://github.com/silverstripe/silverstripe-admin/pull/1340 ## Parent issue - https://github.com/silverstripe/silverstripe-admin/issues/1339
## Parent issue - https://github.com/silverstripe/silverstripe-admin/issues/1351
At the moment even without the -v flag there is a _lot_ of output to the terminal. It would be great to see a quiet flag which reduces output to...
Blog Post canEdit method allows some members to edit posts for which they are not an editor/author.
In `BlogPost.php`, the `canEdit` method immediately returns true if its parent's `canEdit` method returns true. ```php if (parent::canEdit($member)) { return true; } ``` This happens before any of BlogPost's bespoke...
## Parent issue - https://github.com/silverstripe/silverstripe-admin/issues/1312
There is some frankly broken styling with associated functionality for having nested CMS menu items. This is in `client/src/components/Menu/Menu.scss` and `client/src/legacy/LeftAndMain.Menu.js`. Adding nested CMS menu items isn't documented outside of...
jquery-cookie in the thirdparty folder should be removed, and [js-cookie](https://github.com/js-cookie/js-cookie) (moved from [jquery-cookie](https://github.com/carhartl/jquery-cookie)) should be added via yarn (`yarn add js-cookie`). NOTE: This requires node >= 12, so https://github.com/silverstripe/silverstripe-admin/issues/1312 will...
There is no search filter in the Groups tab in `SecurityAdmin` despite having the `GridFieldFilterHeader` in the groups `GridFieldConfig`. What's more, if you customise the `summary_fields` or `searchable_fields` for `Group`...
If your `ModelAdmin` uses a custom slug (as per the below example) instead of relying on the class name, any `model_importers` config for that model needs to be added twice....