Show
Ignore:
Timestamp:
08/24/10 21:31:46 (21 months ago)
Author:
Antti-Juhani Kaijanaho <antti-juhani@…>
Children:
7eb42bed950e3f81ef9f0d39432e07c55f12cc22
Parents:
ec0da3f87768820f9ca9e8065c7998e9d825bd4c
git-committer:
Antti-Juhani Kaijanaho <antti-juhani@…> (08/24/10 21:31:46)
Message:

[http::request] Cleanup

Signed-off-by: Antti-Juhani Kaijanaho <antti-juhani@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • http/markread.cc

    rec0da3f r751fac6  
    5050                } 
    5151 
    52                 std::multimap<std::string,std::string> fd = req->get_form_data(); 
    53                 std::string ajax = lookup(fd, "ajax"); 
    54                 bool value = lookup(fd, "undo") != "yes"; 
    55                 std::string msgid = lookup(fd, "msgid"); 
    56                 ::uri redir = lookup(fd, "redir"); 
     52                std::string ajax = req->get_form_field("ajax"); 
     53                bool value = req->get_form_field("undo") != "yes"; 
     54                std::string msgid = req->get_form_field("msgid"); 
     55                ::uri redir = req->get_form_field("redir"); 
    5756                redir.replace_query_param("markread","no"); 
    5857