Changeset 22d9643ba8d951cde698749cf25dbe905e197a4f for http/markread.cc
- Timestamp:
- 08/23/10 11:38:46 (21 months ago)
- Children:
- d3efc818ad12f25b70157a80a98888a3fbaac544
- Parents:
- 050d01b46d7ee14f1bfef6a452898e0928dea949
- git-committer:
- Antti-Juhani Kaijanaho <ajk@…> (08/23/10 11:38:46)
- Files:
-
- 1 modified
-
http/markread.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
http/markread.cc
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)
