@@ -55,7 +55,7 @@ component extends="coldbox.system.RestHandler" {
55
55
setting showdebugoutput = false ;
56
56
// Return the debugger layout+view
57
57
// We pass in all the variables needed, to avoid prc/rc conflicts
58
- return renderLayout (
58
+ return layout (
59
59
layout : isVisualizer ? " Monitor" : " Main" ,
60
60
module : " cbdebugger" ,
61
61
view : " main/debugger" ,
@@ -95,7 +95,7 @@ component extends="coldbox.system.RestHandler" {
95
95
* This action renders out the caching panel only
96
96
*/
97
97
function renderCacheMonitor ( event , rc , prc ){
98
- return renderView (
98
+ return view (
99
99
view : " main/panels/cacheBoxPanel" ,
100
100
module : " cbdebugger" ,
101
101
args : { debuggerConfig : variables .debuggerConfig }
@@ -114,7 +114,7 @@ component extends="coldbox.system.RestHandler" {
114
114
* Get the profilers via ajax
115
115
*/
116
116
function renderProfilers ( event , rc , prc ){
117
- return paramSorting ( rc ).renderView (
117
+ return paramSorting ( rc ).view (
118
118
view : " main/partials/profilers" ,
119
119
module : " cbdebugger" ,
120
120
args : {
@@ -148,7 +148,7 @@ component extends="coldbox.system.RestHandler" {
148
148
return " <h3 class='cbd-text-red cbd-bg-light-red'>Profiler Id: #encodeForHTML ( rc .id ) # doesn't exist</h3>" ;
149
149
}
150
150
151
- return renderView (
151
+ return view (
152
152
view : " main/partials/profilerReport" ,
153
153
module : " cbdebugger" ,
154
154
args : {
0 commit comments