Changeset 1835

Show
Ignore:
Timestamp:
11/04/08 08:59:27 (5 years ago)
Author:
lmajano
Message:

Revert, railo fix.

Location:
coldbox/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/system/extras/lightwire/BaseConfigObject.cfc

    r1834 r1835  
    436436                        var j = 1; 
    437437                        // 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); 
    445439                         
    446440                        for (i = 1; i lte ArrayLen(children); i = i + 1) 
     
    477471                                if (structKeyExists(children[i],"map")) 
    478472                                { 
    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                                         
    486475                                        hashMap = structNew(); 
    487476                                        for (j = 1; j lte ArrayLen(entries); j = j + 1) 
  • coldbox/trunk/testharness/views/coldboxfactory.cfm

    r1817 r1835  
    11<cfoutput> 
    22<h2>ColdBox Factory Tests</h2> 
    3  
    43<table > 
    54        <tr> 
     
    8685        </tr> 
    8786         
    88          
    89          
    9087</table> 
    9188