Skip to content

Commit 635b48d

Browse files
committed
Update to 1.3.13
- Fix mapping the url to request parameters in some configurations
1 parent 0e41123 commit 635b48d

8 files changed

Lines changed: 16 additions & 10 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.12",
6+
"version": "1.3.13",
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.12",
4+
"version": "1.3.13",
55
"authors": [
66
{
77
"name": "Thomas Jakobi",

core/components/customrequest/composer.lock

Lines changed: 1 addition & 1 deletion
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: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ 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.13] - 2025-11-21
9+
10+
### Fixed
11+
12+
- Fix mapping the url to request parameters in some configurations
13+
814
## [1.3.12] - 2025-11-19
915

1016
### Added
1117

12-
- Find resources with the container suffix and the MODX HTML content type suffix.
18+
- Find resources with the container suffix and the MODX HTML content type suffix
1319

1420
### Fixed
1521

core/components/customrequest/src/CustomRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class CustomRequest
4242
* The version
4343
* @var string $version
4444
*/
45-
public $version = '1.3.12';
45+
public $version = '1.3.13';
4646

4747
/**
4848
* The class options
@@ -347,7 +347,7 @@ public function setRequest()
347347
array_shift($matches);
348348
$params = $matches;
349349
} else {
350-
$params = explode('/', rtrim($params, '/'));
350+
$params = explode('/', trim($params, '/'));
351351
}
352352
if (count($params) >= 1) {
353353
$setting = $this->requests[$this->found['contextKey'] . ':' . $this->found['alias']];

0 commit comments

Comments
 (0)