We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5efaf4 commit 8bc7cb0Copy full SHA for 8bc7cb0
models/FileUpload.cfc
@@ -111,14 +111,14 @@ component {
111
/**
112
* Returns the path to the temp directory (mockable in tests)
113
*/
114
- function getTempDirectory(){
+ function getUploadTempDirectory(){
115
return getCanonicalPath( variables.moduleSettings.moduleRootPath & "models/tmp" );
116
}
117
118
119
* Returns the full path to the metadata file (mockable in tests)
120
121
function getMetaPath(){
122
- return getCanonicalPath( getTempDirectory() & "/#variables.uuid#.json" );
+ return getCanonicalPath( getUploadTempDirectory() & "/#variables.uuid#.json" );
123
124
0 commit comments