Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 1.3.4
-
Fix Version/s: 1.3.5
-
Component/s: View technologies
-
Labels:None
-
Environment:Ubuntu 9.10, 64 bit, JDK 1.6
Description
In grails 1.3.2, I can access all parameters in params in layout (and taglib called from layout).
However, when upgraded to 1.3.4, when access params in layout, there are only controller, action and id. Params contains complete paameter when access from view.
Sample:
URL: http://localhost:8080/app/cnt/act/3?other=Y&this=that
params in view: [controller: 'app', action: 'act', id: '3', other: 'Y', this: 'that']
params in layout: [controller: 'app', action: 'act', id: '3']
It's worse: The params are also incomplete in taglibs.