Skip to content

Commit fc2816e

Browse files
committed
cms@2fdb203
Finish 5.8.19
1 parent 3d39a6b commit fc2816e

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

docs/.artifacts/cms/5.x/addresses.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
| [locality](#locality) | Narrows the query results based on the locality the addresses belong to.
4343
| [notRelatedTo](#notrelatedto) | Narrows the query results to only addresses that are not related to certain other elements.
4444
| [offset](#offset) | Determines how many addresses should be skipped in the results.
45-
| [orderBy](#orderby) | Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC, id`.)
45+
| [orderBy](#orderby) | Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`.)
4646
| [organization](#organization) | Narrows the query results based on the organization the addresses have.
4747
| [organizationTaxId](#organizationtaxid) | Narrows the query results based on the tax ID the addresses have.
4848
| [owner](#owner) | Sets the [ownerId](#ownerid) and `\craft\elements\db\siteId()` parameters based on a given element.
@@ -1021,7 +1021,7 @@ $addresses = \craft\elements\Address::find()
10211021
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v5/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
10221022

10231023
Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC,
1024-
id`.)
1024+
elements.id`.)
10251025

10261026

10271027

docs/.artifacts/cms/5.x/assets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
| [limit](#limit) | Determines the number of assets that should be returned.
3737
| [notRelatedTo](#notrelatedto) | Narrows the query results to only assets that are not related to certain other elements.
3838
| [offset](#offset) | Determines how many assets should be skipped in the results.
39-
| [orderBy](#orderby) | Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC, id`.)
39+
| [orderBy](#orderby) | Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`.)
4040
| [preferSites](#prefersites) | If [unique](#unique) is set, this determines which site should be selected when querying multi-site elements.
4141
| [prepForEagerLoading](#prepforeagerloading) | Prepares the query for lazy eager loading.
4242
| [prepareSubquery](#preparesubquery) | Prepares the element query and returns its subquery (which determines what elements will be returned).
@@ -857,7 +857,7 @@ $assets = \craft\elements\Asset::find()
857857
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v5/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
858858

859859
Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC,
860-
id`.)
860+
elements.id`.)
861861

862862

863863

docs/.artifacts/cms/5.x/categories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
| [nextSiblingOf](#nextsiblingof) | Narrows the query results to only the category that comes immediately after another category in its structure.
3939
| [notRelatedTo](#notrelatedto) | Narrows the query results to only categories that are not related to certain other elements.
4040
| [offset](#offset) | Determines how many categories should be skipped in the results.
41-
| [orderBy](#orderby) | Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC, id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
41+
| [orderBy](#orderby) | Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
4242
| [positionedAfter](#positionedafter) | Narrows the query results to only categories that are positioned after another category in its structure.
4343
| [positionedBefore](#positionedbefore) | Narrows the query results to only categories that are positioned before another category in its structure.
4444
| [preferSites](#prefersites) | If [unique](#unique) is set, this determines which site should be selected when querying multi-site elements.
@@ -922,7 +922,7 @@ $categories = \craft\elements\Category::find()
922922
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v5/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
923923

924924
Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC,
925-
id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
925+
elements.id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
926926

927927

928928

docs/.artifacts/cms/5.x/config-general.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,14 @@ Defined by
166166

167167
</div>
168168

169-
Whether users should automatically be logged in after activating their account or resetting their password.
169+
Whether users should automatically be logged in after activating their account.
170170

171171
::: code
172172
```php Static Config
173173
->autoLoginAfterAccountActivation(true)
174174
```
175175
```shell Environment Override
176-
CRAFT_ALLOW_AUTO_LOGIN_AFTER_ACCOUNT_ACTIVATION=true
176+
CRAFT_AUTO_LOGIN_AFTER_ACCOUNT_ACTIVATION=true
177177
```
178178
:::
179179

@@ -205,6 +205,9 @@ Whether drafts should be saved automatically as they are edited.
205205
Note that drafts *will* be autosaved while Live Preview is open, regardless of this setting.
206206

207207
::: code
208+
```php Static Config
209+
->autosaveDrafts(false)
210+
```
208211
```shell Environment Override
209212
CRAFT_AUTOSAVE_DRAFTS=false
210213
```

docs/.artifacts/cms/5.x/entries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
| [nextSiblingOf](#nextsiblingof) | Narrows the query results to only the entry that comes immediately after another entry in its structure.
5151
| [notRelatedTo](#notrelatedto) | Narrows the query results to only entries that are not related to certain other elements.
5252
| [offset](#offset) | Determines how many entries should be skipped in the results.
53-
| [orderBy](#orderby) | Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC, id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
53+
| [orderBy](#orderby) | Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC, elements.id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
5454
| [owner](#owner) | Sets the [ownerId](#ownerid) and [siteId](#siteid) parameters based on a given element.
5555
| [ownerId](#ownerid) | Narrows the query results based on the owner element of the entries, per the owners’ IDs.
5656
| [positionedAfter](#positionedafter) | Narrows the query results to only entries that are positioned after another entry in its structure.
@@ -1341,7 +1341,7 @@ $entries = \craft\elements\Entry::find()
13411341
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v5/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
13421342

13431343
Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC,
1344-
id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
1344+
elements.id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
13451345

13461346

13471347

0 commit comments

Comments
 (0)