Changeset 193
- Timestamp:
- 06/17/06 20:16:49 (3 years ago)
- Location:
- fusebox5/verbs
- Files:
-
- 2 modified
-
argument.cfm (modified) (1 diff)
-
instantiate.cfm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fusebox5/verbs/argument.cfm
r173 r193 69 69 } 70 70 } 71 if ( fb_.validParent) {71 if (not fb_.validParent) { 72 72 fb_throw("fusebox.badGrammar.argumentInvalidParent", 73 73 "Verb 'argument' has invalid parent verb", -
fusebox5/verbs/instantiate.cfm
r186 r193 55 55 // arguments - string default "" 56 56 if (not structKeyExists(fb_.verbInfo.attributes,"arguments")) { 57 fb_.verbInfo.attributes.arguments = "";58 57 // prepare to gather up <argument> tags, if any: 59 58 fb_.verbInfo.data.arguments = ""; … … 120 119 121 120 // update arguments if we had any child <argument> tags: 122 if ( structKeyExists(fb_.verbInfo,"data") and fb_.verbInfo.data.arguments is not "") {121 if (not structKeyExists(fb_.verbInfo.attributes,"arguments")) { 123 122 fb_.verbInfo.attributes.arguments = fb_.verbInfo.data.arguments; 124 123 }
