liquid_feedback_frontend
annotate app/main/initiative/_action/remove_support.lua @ 11:77d58efe99fd
Version beta7
Important security fixes:
- Added missing HTML encoding to postal address of member
- Link to discussion URL only if it starts with http(s)://
Other bugfixes:
- Fixed wrong display of 2nd level delegating voters for an initiative
- Do not display invited initiators as initiators while voting
- Added missing translation
New features:
- Public message of the day
- Both direct and indirect supporter count is shown in tab heads
- Support shown in initiative lists
Language chooser at the login page has been added (again)
Important security fixes:
- Added missing HTML encoding to postal address of member
- Link to discussion URL only if it starts with http(s)://
Other bugfixes:
- Fixed wrong display of 2nd level delegating voters for an initiative
- Do not display invited initiators as initiators while voting
- Added missing translation
New features:
- Public message of the day
- Both direct and indirect supporter count is shown in tab heads
- Support shown in initiative lists
Language chooser at the login page has been added (again)
author | bsw |
---|---|
date | Fri Jan 22 12:00:00 2010 +0100 (2010-01-22) |
parents | afd9f769c7ae |
children | bde068b37608 |
rev | line source |
---|---|
bsw/jbe@0 | 1 local initiative = Initiative:new_selector():add_where{ "id = ?", param.get_id()}:single_object_mode():exec() |
bsw/jbe@0 | 2 |
bsw/jbe@5 | 3 -- TODO important m1 selectors returning result _SET_! |
bsw/jbe@5 | 4 local issue = initiative:get_reference_selector("issue"):for_share():single_object_mode():exec() |
bsw/jbe@5 | 5 |
bsw/jbe@5 | 6 if issue.closed then |
bsw/jbe@5 | 7 slot.put_into("error", _"This issue is already closed.") |
bsw/jbe@5 | 8 return false |
bsw/jbe@5 | 9 elseif issue.fully_frozen then |
bsw/jbe@5 | 10 slot.put_into("error", _"Voting for this issue has already begun.") |
bsw/jbe@5 | 11 return false |
bsw/jbe@5 | 12 end |
bsw/jbe@5 | 13 |
bsw/jbe@0 | 14 local member = app.session.member |
bsw/jbe@0 | 15 |
bsw/jbe@0 | 16 local supporter = Supporter:by_pk(initiative.id, member.id) |
bsw/jbe@0 | 17 |
bsw/jbe@0 | 18 if supporter then |
bsw/jbe@0 | 19 supporter:destroy() |
bsw/jbe@0 | 20 slot.put_into("notice", _"Your support has been removed from this initiative") |
bsw/jbe@0 | 21 else |
bsw/jbe@0 | 22 slot.put_into("notice", _"You are already not supporting this initiative") |
bsw/jbe@0 | 23 end |