From e03a0c9455f84c842d1229319aed244b62e95c75 Mon Sep 17 00:00:00 2001 From: Travis Smith Date: Tue, 17 Dec 2024 21:57:57 -0600 Subject: [PATCH 1/7] Update single-variables.md Added a better example for is_live_preview_request --- docs/templates/globals/single-variables.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/templates/globals/single-variables.md b/docs/templates/globals/single-variables.md index 1b7592136..e788cbc79 100755 --- a/docs/templates/globals/single-variables.md +++ b/docs/templates/globals/single-variables.md @@ -128,7 +128,24 @@ Boolean (TRUE/FALSE) variable representing whether or not the template is being Boolean (TRUE/FALSE) variable representing whether or not the current request is a Live Preview from the control panel. Most commonly you would use this to add/hide information on your preview page for content authors: {if is_live_preview_request} - {!-- include sample rendering of a social share, Twitter card, FB post, etc. --} + DRAFT: Verify before publishing. + {/if} + +You can also use this variable to control parameters within a tag, so that your preview template can show content that might not appear on the live site: + + {if is_live_preview_request} + {exp:channel:entries + channel="events" + limit="1" + {if is_live_preview_request} + status="open|archive|draft" show_future_entries="yes" show_expired="yes" + {if:else} + status="open" + {/if} + disable="category_fields|member_data|pagination" + } + {title} + {/exp:channel:entries} {/if} ### `{lang}` @@ -382,4 +399,4 @@ This variable pair is useful for displaying all errors at once, for example, in {if:else} - {/if} \ No newline at end of file + {/if} From 63e6244ef96f1856a5805ea1e4afeaf132710de8 Mon Sep 17 00:00:00 2001 From: swierczek <2423727+swierczek@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:47:18 -0600 Subject: [PATCH 2/7] Add pagination note for less than 1 page of content --- docs/templates/pagination.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/templates/pagination.md b/docs/templates/pagination.md index 4281ae487..ed633afa5 100755 --- a/docs/templates/pagination.md +++ b/docs/templates/pagination.md @@ -23,6 +23,8 @@ The second method is a more traditional "next page" / "previous page" output: Pagination will also automatically restrict itself to any category you're currently viewing. So if you have a category specified in your channel entries tag or you are viewing the entries of a category, then the pagination links will automatically restrict themselves to only entries in that category. +NOTE: **Note:** If there is not enough content for more than one page, nothing will be output by these tags. + ## Example Code Here are two basic code examples, one for each of the methods mentioned above. Information about the variables and parameters are covered later. From c3edbc7aa2bb5228b27fb8cba59bb89cc5d0b966 Mon Sep 17 00:00:00 2001 From: Jared Chesebro Date: Thu, 9 Jan 2025 12:02:43 -0800 Subject: [PATCH 3/7] Update system-configuration-overrides.md Added `enable_mfa` config override. --- docs/general/system-configuration-overrides.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/general/system-configuration-overrides.md b/docs/general/system-configuration-overrides.md index 528d13dff..8d57ec15a 100755 --- a/docs/general/system-configuration-overrides.md +++ b/docs/general/system-configuration-overrides.md @@ -1300,6 +1300,19 @@ Example Usage: **Also found in CP:** `Settings --> Tracking`: [Enable Template Hit Tracking](control-panel/settings/hit-tracking.md#enable-template-hit-tracking) +### `enable_mfa` + +If enabled, the Multi-factor authentication (MFA) options will become available for member roles. + +| Value | Behavior | +| ----- | -------------------------------------- | +| y | Enable Multi-factor authentication | +| n | Disable Multi-factor authentication (default) | + +Example Usage: + + $config['enable_mfa'] = 'y'; + ### `enable_online_user_tracking` If enabled, online user statistics are tracked and the user-based variables in the [Statistics](add-ons/statistics.md) module are available for use. From 5821082bf5a9a8cf14a6a7e8329c977ae5f31f98 Mon Sep 17 00:00:00 2001 From: Stephen Galbraith <109251940+nerdgency@users.noreply.github.com> Date: Mon, 20 Jan 2025 21:13:10 -0500 Subject: [PATCH 4/7] Update csv.md fix typos --- docs/development/services/csv.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/services/csv.md b/docs/development/services/csv.md index 4073e1999..cb37d5ebb 100755 --- a/docs/development/services/csv.md +++ b/docs/development/services/csv.md @@ -17,7 +17,7 @@ lang: php ## Simple Example -The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associaitve arrays and objects and they can have differing keys and property names: +The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associative arrays and objects and they can have differing keys and property names: $csv = ee('CSV'); $csv->addRow(array( @@ -51,7 +51,7 @@ Add a row of data to the CSV instance. | Parameter | Type | Description | | --------- | -------------- | ---------------------------------------------------------------------- | -| \$rowData | `Array/object` | A single row of data passed in as an object or as an associaitve array | +| \$rowData | `Array/object` | A single row of data passed in as an object or as an associative array | | Returns | `Object` | `$this`, the CSV object itself so you can chain `->addRow()` and | $csv->addRow(array( From 969ac2b57c9b905948f26865ac7bc0a72ad60a5a Mon Sep 17 00:00:00 2001 From: Bryan Nielsen Date: Tue, 21 Jan 2025 17:07:27 -0500 Subject: [PATCH 5/7] Version 7.5.7 --- docs/installation/changelog.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 1b83c6821..cdf4422f4 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,30 @@ --> # ExpressionEngine v7 Change Log +## Version 7.5.7 +(Release: January 22nd, 2025) + +
+
+ +
+
+ +**Bug Fixes** 💃🐛 + +Resolved [#4622](https://github.com/ExpressionEngine/ExpressionEngine/issues/4622) where applying webp modifier to images with the same name but different extensions would produce the same result +Resolved [#4634](https://github.com/ExpressionEngine/ExpressionEngine/issues/4634) where Member Template Generator was missing some templates +Resolved [#4637](https://github.com/ExpressionEngine/ExpressionEngine/issues/4637) where Pro Search permissions were not displayed correctly +Resolved [#4657](https://github.com/ExpressionEngine/ExpressionEngine/issues/4657) where automatic URL titles were not generated for entries with non-ASCII titles +Resolved issue where dates were missing leading zeros when using dd.mm.yyyy format +Resolved [#4658](https://github.com/ExpressionEngine/ExpressionEngine/issues/4658) where it was not possible to deselect an entry category if multiple selection was not allowed +Resolved [#4636](https://github.com/ExpressionEngine/ExpressionEngine/issues/4636) where it was impossible to delete Files in File Manager from mobile phone +Resolved [#4393](https://github.com/ExpressionEngine/ExpressionEngine/issues/4393) where Low search settings were not saved when migrating to Pro search + ## Version 7.5.6 (Release: December 10th, 2024) From ce85f5ebfa6b06d673d087941af4d7ec92a67595 Mon Sep 17 00:00:00 2001 From: Tom Jaeger Date: Thu, 23 Jan 2025 09:29:32 -0500 Subject: [PATCH 6/7] Updated Date --- docs/installation/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index cdf4422f4..e25737f66 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -9,7 +9,7 @@ # ExpressionEngine v7 Change Log ## Version 7.5.7 -(Release: January 22nd, 2025) +(Release: January 23nd, 2025)
From 8a82586ec33b657ee40c875160ed5a81d59f8cc7 Mon Sep 17 00:00:00 2001 From: Bryan Nielsen Date: Thu, 23 Jan 2025 10:13:32 -0500 Subject: [PATCH 7/7] Fix 7.5.7 changelog item list --- docs/installation/changelog.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index e25737f66..5dc5878dd 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -23,14 +23,14 @@ **Bug Fixes** 💃🐛 -Resolved [#4622](https://github.com/ExpressionEngine/ExpressionEngine/issues/4622) where applying webp modifier to images with the same name but different extensions would produce the same result -Resolved [#4634](https://github.com/ExpressionEngine/ExpressionEngine/issues/4634) where Member Template Generator was missing some templates -Resolved [#4637](https://github.com/ExpressionEngine/ExpressionEngine/issues/4637) where Pro Search permissions were not displayed correctly -Resolved [#4657](https://github.com/ExpressionEngine/ExpressionEngine/issues/4657) where automatic URL titles were not generated for entries with non-ASCII titles -Resolved issue where dates were missing leading zeros when using dd.mm.yyyy format -Resolved [#4658](https://github.com/ExpressionEngine/ExpressionEngine/issues/4658) where it was not possible to deselect an entry category if multiple selection was not allowed -Resolved [#4636](https://github.com/ExpressionEngine/ExpressionEngine/issues/4636) where it was impossible to delete Files in File Manager from mobile phone -Resolved [#4393](https://github.com/ExpressionEngine/ExpressionEngine/issues/4393) where Low search settings were not saved when migrating to Pro search +- Resolved [#4622](https://github.com/ExpressionEngine/ExpressionEngine/issues/4622) where applying webp modifier to images with the same name but different extensions would produce the same result +- Resolved [#4634](https://github.com/ExpressionEngine/ExpressionEngine/issues/4634) where Member Template Generator was missing some templates +- Resolved [#4637](https://github.com/ExpressionEngine/ExpressionEngine/issues/4637) where Pro Search permissions were not displayed correctly +- Resolved [#4657](https://github.com/ExpressionEngine/ExpressionEngine/issues/4657) where automatic URL titles were not generated for entries with non-ASCII titles +- Resolved issue where dates were missing leading zeros when using dd.mm.yyyy format +- Resolved [#4658](https://github.com/ExpressionEngine/ExpressionEngine/issues/4658) where it was not possible to deselect an entry category if multiple selection was not allowed +- Resolved [#4636](https://github.com/ExpressionEngine/ExpressionEngine/issues/4636) where it was impossible to delete Files in File Manager from mobile phone +- Resolved [#4393](https://github.com/ExpressionEngine/ExpressionEngine/issues/4393) where Low search settings were not saved when migrating to Pro search ## Version 7.5.6 (Release: December 10th, 2024)