Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

7.5.7 changlog and few other changes live #931

Merged
merged 13 commits into from
Jan 23, 2025
4 changes: 2 additions & 2 deletions docs/development/services/csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down
15 changes: 15 additions & 0 deletions docs/general/system-configuration-overrides.md
Original file line number Diff line number Diff line change
Expand Up @@ -1298,8 +1298,23 @@ 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.

| Value | Behavior |
Expand Down
24 changes: 24 additions & 0 deletions docs/installation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,30 @@
-->
# ExpressionEngine v7 Change Log

## Version 7.5.7
(Release: January 23nd, 2025)

<div class="max-w-7xl mx-autotext-center">
<div class="space-y-8 sm:space-y-12">
<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">
<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>
<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>
<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>
</ul>
</div>
</div>

**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)

Expand Down
21 changes: 19 additions & 2 deletions docs/templates/globals/single-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. --}
<span>DRAFT: Verify before publishing.</span>
{/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}`
Expand Down Expand Up @@ -382,4 +399,4 @@ This variable pair is useful for displaying all errors at once, for example, in
</ul>
{if:else}
<!-- No errors, or form not submitted yet -->
{/if}
{/if}
2 changes: 2 additions & 0 deletions docs/templates/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading