Changeset 22d9643ba8d951cde698749cf25dbe905e197a4f
- Timestamp:
- 08/23/10 11:38:46 (18 months ago)
- Author:
- Antti-Juhani Kaijanaho <ajk@…>
- Children:
- d3efc818ad12f25b70157a80a98888a3fbaac544
- Parents:
- 050d01b46d7ee14f1bfef6a452898e0928dea949
- git-committer:
- Antti-Juhani Kaijanaho <ajk@…> (08/23/10 11:38:46)
- Message:
-
[http::markread] Use form parsing that works with POST
Signed-off-by: Antti-Juhani Kaijanaho <ajk@…>
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r563ece2
|
r22d9643
|
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | | bool value = req->get_query_param("undo") != "yes"; |
| 62 | | std::string msgid = req->get_query_param("msgid"); |
| 63 | | std::string redir = req->get_query_param("redir"); |
| | 61 | std::multimap<std::string,std::string> fd = req->get_form_data(); |
| | 62 | bool value = lookup(fd, "undo") != "yes"; |
| | 63 | std::string msgid = lookup(fd, "msgid"); |
| | 64 | std::string redir = lookup(fd, "redir"); |
| 64 | 65 | |
| 65 | 66 | if (value) |