Skip to content

Commit f52815e

Browse files
committed
- ColdBoxProxy typo on getting page context length
1 parent c243902 commit f52815e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ColdBox Platform Development Framework",
3-
"version":"8.1.0",
3+
"version":"8.0.5",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox/@build.version@/coldbox-@build.version@.zip",
55
"author":"Ortus Solutions <info@ortussolutions.com>",
66
"slug":"coldbox",

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- ColdBoxProxy typo on getting page context length
15+
1216
## [8.0.4] - 2025-11-06
1317

1418
### Fixed

system/remote/ColdboxProxy.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ component serializable="false" accessors="true" {
374374

375375
// Find the path of the proxy component being called
376376
// replace the context root at the beginning of the script
377-
var componentPath = len( getContextRoot ) ? replaceNoCase( scriptName, getContextRoot(), "", "one" ) : scriptName;
377+
var componentPath = len( getContextRoot() ) ? replaceNoCase( scriptName, getContextRoot(), "", "one" ) : scriptName;
378378
// remove the extension, if any
379379
componentPath = reReplaceNoCase( componentPath, "\..+$", "", "one" );
380380
// replace all slashes with dots

0 commit comments

Comments
 (0)