aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-repository-details.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-12-25 08:37:54 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-12-28 14:42:17 +0300
commitbfec6fffb4acd9673ecf066a0e4f1b4baf2dd831 (patch)
treeca85d9db6ddeeaf1b89c488b9ed629511003566a /mod/mod-repository-details.cxx
parent21d9f67600a53af44d0f7365074de5312a829193 (diff)
Make use of butl url encode() and decode() functions
Diffstat (limited to 'mod/mod-repository-details.cxx')
-rw-r--r--mod/mod-repository-details.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/mod-repository-details.cxx b/mod/mod-repository-details.cxx
index 177f49d..53cd3aa 100644
--- a/mod/mod-repository-details.cxx
+++ b/mod/mod-repository-details.cxx
@@ -99,7 +99,9 @@ handle (request& rq, response& rs)
//
string id (html_id (r.name));
s << H1(ID=id)
- << A(HREF="#" + web::mime_url_encode (id)) << r.display_name << ~A
+ << A(HREF="#" + web::mime_url_encode (id, false))
+ << r.display_name
+ << ~A
<< ~H1;
if (r.summary)