Skip to content

Commit

Permalink
Fix for RAILO-1748
Browse files Browse the repository at this point in the history
  • Loading branch information
cybersonic committed Feb 4, 2012
1 parent 2f4f8dc commit 56ace9f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions railo-cfml/railo-admin/admin/extension/ExtensionManager.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,12 @@
<cfset stepItem=xmlConfig.XmlChildren[stepIndex]>
<cfset stepAttrs=xmlConfig.XmlChildren[stepIndex].xmlAttributes>

<!--- Ignore the info block in the config --->
<cfif stepItem.XMLName EQ "info">
<cfcontinue>
</cfif>


<cfif not StructKeyExists(stepAttrs,'label')><cfset stepAttrs.label=""></cfif>
<cfif not StructKeyExists(stepAttrs,'description')><cfset stepAttrs.description=""></cfif>
<cfset step=extForm.createStep(label:stepAttrs.label,description:stepAttrs.description)>
Expand Down

0 comments on commit 56ace9f

Please sign in to comment.