Action args case bug

  • Variables defined in action args are not forced to lowercase like they should be, which causes the variable to be inaccessible.
    The following code demonstrates this:

    Code
    <action name="testaction" scope="local" args="testA">	trace('testa=',get(testa));
    	trace('testA=',get(testA));
    </action>


    Console Log:

    Quote

    INFO:testa=null
    INFO:testA=null

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!