I'm using Grails 2.1.0 and have a save() action on a controller, with two parameters:
def save(String templateId, String action)
When I submit a form with a field called "action" with the vaule "xxxx", and I println action, I get "save".
The doc says that the current action name should be on the actionName variable **, but it seems Grails is also putting the action name on my "action" variable.
Anyone knows why is that happening? Is it a bug or an expected behavior?
** http://grails.github.io/grails-doc/2.1.0/ref/Controllers/actionName.html