Is my fusebox.head out of date or is this a live bug?


In the library fusebox.head:

method "_writeMetaTags"
        
        $key := current library name + ".meta"
        
        if (not(collection has(_request; $key)))
                return
        end if
        
        $col := _request{$key}
        
        for each ($col; $circuit)
                write('<!-- meta tags added by $circuit circuit -->\n')
                
                for each ($col{$circuit}; $tag)
                        write('<meta $tag />\n')
end for <---------------- line 314 ---------------------- missing "each", should read 'end for each'
                
                write('<!-- end $circuit circuit meta tags -->\n\n')
        end for each
        
end method


--
Bart Alcorn
National Service Center
800-500-6421 x 2360
AIM/iChat: balcornnsc



_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to