Changeset 1835
- Timestamp:
- 11/04/08 08:59:27 (5 years ago)
- Location:
- coldbox/trunk
- Files:
-
- 2 modified
-
system/extras/lightwire/BaseConfigObject.cfc (modified) (2 diffs)
-
testharness/views/coldboxfactory.cfm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/system/extras/lightwire/BaseConfigObject.cfc
r1834 r1835 436 436 var j = 1; 437 437 // find all constructor properties and dependencies 438 if( structKeyExists(server,"railo") ){ 439 /* Fix for railo issues. */ 440 children = XMLSearch(xmlParse(toString(bean)),arguments.childTagName); 441 } 442 else{ 443 children = XMLSearch(bean,arguments.childTagName); 444 } 438 children = XMLSearch(bean,arguments.childTagName); 445 439 446 440 for (i = 1; i lte ArrayLen(children); i = i + 1) … … 477 471 if (structKeyExists(children[i],"map")) 478 472 { 479 if( structKeyExists(server,"railo") ){ 480 /* Fix for railo issues. */ 481 entries = XMLSearch(xmlParse(toString(children[i])),'map/entry'); 482 } 483 else{ 484 entries = XMLSearch(children[i],'map/entry'); 485 } 473 entries = XMLSearch(children[i],'map/entry'); 474 486 475 hashMap = structNew(); 487 476 for (j = 1; j lte ArrayLen(entries); j = j + 1) -
coldbox/trunk/testharness/views/coldboxfactory.cfm
r1817 r1835 1 1 <cfoutput> 2 2 <h2>ColdBox Factory Tests</h2> 3 4 3 <table > 5 4 <tr> … … 86 85 </tr> 87 86 88 89 90 87 </table> 91 88
