liquid_feedback_frontend
diff app/main/issue/show.lua @ 548:8af806af86a0
Added issue related preloading to issue show and initiative view
author | bsw |
---|---|
date | Tue May 29 20:45:58 2012 +0200 (2012-05-29) |
parents | 4cee33ad5e16 |
children | 17a33bd0d48a |
line diff
1.1 --- a/app/main/issue/show.lua Tue May 29 20:43:27 2012 +0200 1.2 +++ b/app/main/issue/show.lua Tue May 29 20:45:58 2012 +0200 1.3 @@ -1,4 +1,7 @@ 1.4 local issue = Issue:by_id(param.get_id()) 1.5 +if app.session.member_id then 1.6 + issue:load_everything_for_member_id(app.session.member_id) 1.7 +end 1.8 1.9 if not app.html_title.title then 1.10 app.html_title.title = _("Issue ##{id}", { id = issue.id })