Skip to content

Commit 0e41123

Browse files
committed
Update to 1.3.12
- Find resources with the container suffix and the MODX HTML content type suffix. - Fix wrong check of regular expressions
1 parent 14d2aae commit 0e41123

9 files changed

Lines changed: 44 additions & 27 deletions

File tree

_build/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"lowCaseName": "customrequest",
44
"description": "Use friendly URLs everywhere",
55
"author": "Thomas Jakobi",
6-
"version": "1.3.11",
6+
"version": "1.3.12",
77
"package": {
88
"menus": [
99
{
117 KB
Binary file not shown.

assets/components/customrequest/css/mgr/customrequest.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/components/customrequest/js/mgr/customrequest.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/components/customrequest/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "treehillstudio/customrequest",
33
"description": "Use friendly URLs everywhere",
4-
"version": "1.3.11",
4+
"version": "1.3.12",
55
"authors": [
66
{
77
"name": "Thomas Jakobi",

core/components/customrequest/composer.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/components/customrequest/docs/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.12] - 2025-11-19
9+
10+
### Added
11+
12+
- Find resources with the container suffix and the MODX HTML content type suffix.
13+
14+
### Fixed
15+
16+
- Fix wrong check of regular expressions
17+
818
## [1.3.11] - 2025-08-08
919

1020
### Fixed

core/components/customrequest/processors/mgr/configs/getlist.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function prepareRow(xPDOObject $object)
3535
$ta['context'] = ($context->get('name')) ? $context->get('name') . ' (' . $resource->get('context_key') . ')' : $resource->get('context_key');
3636
} else {
3737
$ta['resourceid'] = '';
38-
if (!$this->customrequest->isRegularExpression($ta['alias'])) {
38+
if ($this->customrequest->isRegularExpression($ta['alias'])) {
3939
$ta['alias_gen'] = '<span class="blue" title="' . $this->modx->lexicon('customrequest.configs_alias_regex') . '">' . $ta['alias'] . '</span>';
4040
}
4141
}

0 commit comments

Comments
 (0)