mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Minor changelog fixes
This commit is contained in:
parent
98d676bfdc
commit
304e5d192e
@ -486,13 +486,9 @@ you can enable those warnings and future-proof your code already.
|
|||||||
To remove the hints, use `setDescription(null)` and `setAttribute('placeholder', null)`.
|
To remove the hints, use `setDescription(null)` and `setAttribute('placeholder', null)`.
|
||||||
* Changed the way FreeStrings in `SSTemplateParser` are recognized, they will now also break on inequality
|
* Changed the way FreeStrings in `SSTemplateParser` are recognized, they will now also break on inequality
|
||||||
operators (`<`, `>`). If you use inequality operators in free strings in comparisions like
|
operators (`<`, `>`). If you use inequality operators in free strings in comparisions like
|
||||||
|
|
||||||
`<% if Some<String == Some>Other>String %>...<% end_if %>`
|
`<% if Some<String == Some>Other>String %>...<% end_if %>`
|
||||||
|
|
||||||
you have to replace them with explicitly markes strings like
|
you have to replace them with explicitly markes strings like
|
||||||
|
`<% if "Some<String" == "Some>Other>String" %>...<% end_if %>`.
|
||||||
`<% if "Some<String" == "Some>Other>String" %>...<% end_if %>`
|
|
||||||
|
|
||||||
This change was necessary in order to support inequality operators in comparisons in templates
|
This change was necessary in order to support inequality operators in comparisons in templates
|
||||||
* Hard limit displayed pages in the CMS tree to `500`, and the number of direct children to `250`,
|
* Hard limit displayed pages in the CMS tree to `500`, and the number of direct children to `250`,
|
||||||
to avoid excessive resource usage. Configure through `Hierarchy.node_threshold_total` and `
|
to avoid excessive resource usage. Configure through `Hierarchy.node_threshold_total` and `
|
||||||
@ -505,3 +501,4 @@ you can enable those warnings and future-proof your code already.
|
|||||||
* Forms created in the CMS should now be instances of a new `CMSForm` class,
|
* Forms created in the CMS should now be instances of a new `CMSForm` class,
|
||||||
and have the CMS controller's response negotiator passed into them.
|
and have the CMS controller's response negotiator passed into them.
|
||||||
Example: `$form = new CMSForm(...); $form->setResponseNegotiator($this->getResponseNegotiator());`
|
Example: `$form = new CMSForm(...); $form->setResponseNegotiator($this->getResponseNegotiator());`
|
||||||
|
|
||||||
|
@ -9,9 +9,9 @@ For information on how to upgrade to newer versions consult the [upgrading](/ins
|
|||||||
|
|
||||||
## Stable Releases
|
## Stable Releases
|
||||||
|
|
||||||
* [3.1.0](3.1.0) - Unreleased
|
* [3.1.0](3.1.0) - 1 October 2013
|
||||||
|
|
||||||
* [3.0.5](3.0.5) - 2013-02-20
|
* [3.0.5](3.0.5) - 20 February 2013
|
||||||
* [3.0.4](3.0.4) - 19 February 2013
|
* [3.0.4](3.0.4) - 19 February 2013
|
||||||
* [3.0.3](3.0.3) - 26 November 2012
|
* [3.0.3](3.0.3) - 26 November 2012
|
||||||
* [3.0.2](3.0.2) - 17 September 2012
|
* [3.0.2](3.0.2) - 17 September 2012
|
||||||
|
Loading…
Reference in New Issue
Block a user