Skip to content

Commit 3ba11d9

Browse files
committed
filename cases don't match fix #5 on certain includes
1 parent e333b69 commit 3ba11d9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

modules/cbdebugger/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ CHANGELOG
44
* Fix unscoped currentrow which was throwing an error when debugging was enabled.
55
* Removed reference to missing images in CSS
66
* Updated build scripts
7+
* How to turn off debugger for tests, it does this automatically now.
8+
* filename cases don't match #5 on certain includes
79

810
##1.1.0
911
* https://ortussolutions.atlassian.net/browse/CCM-14 Issue with unloading modules

modules/cbdebugger/includes/panels/profilerPanel.cfm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Description :
2727
<meta http-equiv="refresh" content="#url.frequency#">
2828
</cfif>
2929
<!--- Include Header --->
30-
<cfinclude template="/cbdebugger/includes/DebugHeader.cfm">
30+
<cfinclude template="/cbdebugger/includes/debugHeader.cfm">
3131
</head>
3232
<body>
3333

@@ -36,7 +36,7 @@ Description :
3636
<!--- **************************************************************--->
3737
<!--- TRACER STACK--->
3838
<!--- **************************************************************--->
39-
<cfinclude template="/cbdebugger/includes/panels/TracersPanel.cfm">
39+
<cfinclude template="/cbdebugger/includes/panels/tracersPanel.cfm">
4040

4141
<!--- Start Rendering the Execution Profiler panel --->
4242
<div class="fw_titles">&nbsp;ColdBox Execution Profiler Report</div>

modules/cbdebugger/models/DebuggerService.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Description :
226226
<cfset controller.getInterceptorService().processState( "beforeDebuggerPanel" )>
227227

228228
<!--- Render debuglog --->
229-
<cfsavecontent variable="renderedDebugging"><cfinclude template="/cbdebugger/includes/Debug.cfm"></cfsavecontent>
229+
<cfsavecontent variable="renderedDebugging"><cfinclude template="/cbdebugger/includes/debug.cfm"></cfsavecontent>
230230

231231
<!--- Post Panel --->
232232
<cfset controller.getInterceptorService().processState( "afterDebuggerPanel" )>
@@ -250,7 +250,7 @@ Description :
250250
<cfset URLBase = listlast(cgi.script_name,"/")>
251251
</cfif>
252252

253-
<cfsavecontent variable="profilerContents"><cfinclude template="/cbdebugger/includes/panels/ProfilerPanel.cfm"></cfsavecontent>
253+
<cfsavecontent variable="profilerContents"><cfinclude template="/cbdebugger/includes/panels/profilerPanel.cfm"></cfsavecontent>
254254

255255
<cfreturn profilerContents>
256256
</cffunction>

0 commit comments

Comments
 (0)