Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions corefiles/PathUtil.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<cfargument name="callerPath" type="string" required="true"
hint="I am FUSEBOX_CALLER_PATH." />

<cfset variables.approotdirectory = getCanonicalPath(normalizePartialPath(arguments.callerPath) & normalizePartialPath(arguments.appPath)) />
<cfset variables.approotdirectory = this.getCanonicalPath(normalizePartialPath(arguments.callerPath) & normalizePartialPath(arguments.appPath)) />
<cfset calculatePaths(variables.approotdirectory) />
<cfreturn this />
</cffunction>
Expand Down Expand Up @@ -134,8 +134,8 @@
hint="I deduce the dot-separated path to a CFC given its file system path (and a few heuristics).">
<cfargument name="filename" type="string" required="true" />

<cfset var cfcPath = getCanonicalPath(filename) />
<cfset var webRoot = getCanonicalPath(expandPath("/")) />
<cfset var cfcPath = this.getCanonicalPath(filename) />
<cfset var webRoot = this.getCanonicalPath(expandPath("/")) />
<cfset var lenWebRoot = len(webRoot) />
<cfset var lenAppRoot = len(getApplicationRoot()) />
<cfset var lenCfcPath = len(cfcPath) />
Expand Down