Skip to content

Commit 5cc6300

Browse files
authored
Merge pull request #123 from Frisle/patch-15
REFACTOR: changed letters case of the parameter Filters
2 parents bbd9ebb + a59b8b7 commit 5cc6300

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

MDX2JSON/REST.cls

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,15 @@ ClassMethod KPIExecute() As %Status
292292

293293
if (Drillthrough = 1){
294294
set SortOrder = $$$R("SortOrder")
295-
set Filters = $$$R("Filters")
295+
296+
if %request.Content.FILTERS
297+
{
298+
set Filters = $$$R("FILTERS")
299+
300+
}else{
301+
set Filters = $$$R("Filters")
302+
}
303+
296304
set SortColumn = $$$R("SortColumn")
297305
set pSelection = SortColumn _ "," _ SortOrder
298306

0 commit comments

Comments
 (0)