Created
July 18, 2012 14:26
-
-
Save orangexception/3136496 to your computer and use it in GitHub Desktop.
Reset Custom Tag Paths to ExpandPath( "/WEB-INF/cfusion/CustomTags" )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Reset Custom Tag Paths to ExpandPath( "/WEB-INF/cfusion/CustomTags" ) | |
| var oCFIDEExtensions= new CFIDE.adminapi.extensions(); | |
| var asCustomTagPaths= oCFIDEExtensions.getCustomTagPaths(); | |
| for( var sCustomTagPath in asCustomTagPaths ) { | |
| oCFIDEExtensions.deleteCustomTagPath( sCustomTagPath ); | |
| } | |
| oCFIDEExtensions.setCustomTagPath( ExpandPath( "/WEB-INF/cfusion/CustomTags" ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment