Changeset 429
- Timestamp:
- 1/27/2008 9:26:45 AM (4 months ago)
- Files:
-
- 1 modified
-
trunk/reactor/core/objectTranslator.cfc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/reactor/core/objectTranslator.cfc
r423 r429 65 65 <!--- write the file to disk ---> 66 66 <cflock type="exclusive" timeout="30"> 67 <cffile action="write" file="#arguments.outputPath#" output="#code#" />67 <cffile action="write" file="#arguments.outputPath#" output="#code#" mode="777" /> 68 68 </cflock> 69 69 </cfif> … … 130 130 <cfif toString(dictionaryXml) IS NOT toString(initialDictionaryXml)> 131 131 <cflock type="exclusive" timeout="30"> 132 <cffile action="write" file="#arguments.dictionaryXmlPath#" output="#formatXml(dictionaryXml)#" />132 <cffile action="write" file="#arguments.dictionaryXmlPath#" output="#formatXml(dictionaryXml)#" mode="777" /> 133 133 </cflock> 134 134 </cfif> … … 253 253 254 254 <cfif NOT DirectoryExists(directory)> 255 <cfdirectory action="create" directory="#getDirectoryFromPath(arguments.path)#" />255 <cfdirectory action="create" directory="#getDirectoryFromPath(arguments.path)#" mode="777" /> 256 256 </cfif> 257 257 </cffunction>

