Show
Ignore:
Timestamp:
11/03/06 20:02:31 (2 years ago)
Author:
scorfield
Message:

Fixes #162 by testing template name and reverting to FB4.1 behavior if it contains #..#
i.e., it is dynamically evaluated. Added a test case for it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/skeleton/controller/circuit.xml.cfm

    r127 r253  
    4242        </fuseaction> 
    4343         
     44        <!-- 
     45                A number of test cases for bugs in Fusebox 5.0.0 that have been fixed 
     46        --> 
     47        <fuseaction name="ticket162"> 
     48                <set name="temp" value="NONEXISTENTFILE" /> 
     49                <!-- this works in FB4.x but throws an exception in FB5.0.0 --> 
     50                <include template="#temp#.cfm" required="false" /> 
     51                <do action="welcome" /> 
     52        </fuseaction> 
     53         
    4454</circuit>