Skip to content

Commit

Permalink
Fix for GRAILS-5902 (support link fragment attribute in paginate tag)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Sep 1, 2010
1 parent 3cb34cd commit ad0b2c0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,9 @@ class RenderTagLib implements RequestConstants {
if (attrs.id!=null) {
linkTagAttrs.id = attrs.id
}
if (attrs.fragment!=null) {
linkTagAttrs.fragment = attrs.fragment
}
linkTagAttrs.params = linkParams

// determine paging variables
Expand Down

0 comments on commit ad0b2c0

Please sign in to comment.