Skip to content

Commit f625fd7

Browse files
authored
Merge pull request #931 from ExpressionEngine/7.dev
7.5.7 changlog and few other changes live
2 parents a053884 + 8a82586 commit f625fd7

File tree

5 files changed

+62
-4
lines changed

5 files changed

+62
-4
lines changed

docs/development/services/csv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ lang: php
1717

1818
## Simple Example
1919

20-
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:
20+
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:
2121

2222
$csv = ee('CSV');
2323
$csv->addRow(array(
@@ -51,7 +51,7 @@ Add a row of data to the CSV instance.
5151

5252
| Parameter | Type | Description |
5353
| --------- | -------------- | ---------------------------------------------------------------------- |
54-
| \$rowData | `Array/object` | A single row of data passed in as an object or as an associaitve array |
54+
| \$rowData | `Array/object` | A single row of data passed in as an object or as an associative array |
5555
| Returns | `Object` | `$this`, the CSV object itself so you can chain `->addRow()` and |
5656

5757
$csv->addRow(array(

docs/general/system-configuration-overrides.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,8 +1298,23 @@ Example Usage:
12981298

12991299
**Also found in CP:** `Settings --> Tracking`: [Enable Template Hit Tracking](control-panel/settings/hit-tracking.md#enable-template-hit-tracking)
13001300

1301+
1302+
## `enable_mfa`
1303+
1304+
If enabled, the Multi-factor authentication (MFA) options will become available for member roles.
1305+
1306+
| Value | Behavior |
1307+
| ----- | -------------------------------------- |
1308+
| y | Enable Multi-factor authentication |
1309+
| n | Disable Multi-factor authentication (default) |
1310+
1311+
Example Usage:
1312+
1313+
$config['enable_mfa'] = 'y';
1314+
13011315
## `enable_online_user_tracking`
13021316

1317+
13031318
If enabled, online user statistics are tracked and the user-based variables in the [Statistics](add-ons/statistics.md) module are available for use.
13041319

13051320
| Value | Behavior |

docs/installation/changelog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,30 @@
88
-->
99
# ExpressionEngine v7 Change Log
1010

11+
## Version 7.5.7
12+
(Release: January 23nd, 2025)
13+
14+
<div class="max-w-7xl mx-autotext-center">
15+
<div class="space-y-8 sm:space-y-12">
16+
<ul role="list" class="mx-auto grid grid-cols-2 gap-x-4 gap-y-1 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-1 xl:grid-cols-5">
17+
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/752126?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Yuri Salimovskiy</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=intoeetive" target="_BLANK">@intoeetive</a></p></div></div></div></li>
18+
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/23382425?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Yulya Lebed</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=Yulyaswan" target="_BLANK">@Yulyaswan</a></p></div></div></div></li>
19+
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/563996?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Bryan Nielsen</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=bryannielsen" target="_BLANK">@bryannielsen</a></p></div></div></div></li>
20+
</ul>
21+
</div>
22+
</div>
23+
24+
**Bug Fixes** 💃🐛
25+
26+
- 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
27+
- Resolved [#4634](https://github.com/ExpressionEngine/ExpressionEngine/issues/4634) where Member Template Generator was missing some templates
28+
- Resolved [#4637](https://github.com/ExpressionEngine/ExpressionEngine/issues/4637) where Pro Search permissions were not displayed correctly
29+
- Resolved [#4657](https://github.com/ExpressionEngine/ExpressionEngine/issues/4657) where automatic URL titles were not generated for entries with non-ASCII titles
30+
- Resolved issue where dates were missing leading zeros when using dd.mm.yyyy format
31+
- 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
32+
- Resolved [#4636](https://github.com/ExpressionEngine/ExpressionEngine/issues/4636) where it was impossible to delete Files in File Manager from mobile phone
33+
- Resolved [#4393](https://github.com/ExpressionEngine/ExpressionEngine/issues/4393) where Low search settings were not saved when migrating to Pro search
34+
1135
## Version 7.5.6
1236
(Release: December 10th, 2024)
1337

docs/templates/globals/single-variables.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,24 @@ Boolean (TRUE/FALSE) variable representing whether or not the template is being
128128
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:
129129

130130
{if is_live_preview_request}
131-
{!-- include sample rendering of a social share, Twitter card, FB post, etc. --}
131+
<span>DRAFT: Verify before publishing.</span>
132+
{/if}
133+
134+
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:
135+
136+
{if is_live_preview_request}
137+
{exp:channel:entries
138+
channel="events"
139+
limit="1"
140+
{if is_live_preview_request}
141+
status="open|archive|draft" show_future_entries="yes" show_expired="yes"
142+
{if:else}
143+
status="open"
144+
{/if}
145+
disable="category_fields|member_data|pagination"
146+
}
147+
{title}
148+
{/exp:channel:entries}
132149
{/if}
133150

134151
### `{lang}`
@@ -382,4 +399,4 @@ This variable pair is useful for displaying all errors at once, for example, in
382399
</ul>
383400
{if:else}
384401
<!-- No errors, or form not submitted yet -->
385-
{/if}
402+
{/if}

docs/templates/pagination.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ The second method is a more traditional "next page" / "previous page" output:
2323

2424
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.
2525

26+
NOTE: **Note:** If there is not enough content for more than one page, nothing will be output by these tags.
27+
2628
## Example Code
2729

2830
Here are two basic code examples, one for each of the methods mentioned above. Information about the variables and parameters are covered later.

0 commit comments

Comments
 (0)