aboutsummaryrefslogtreecommitdiff
path: root/brep/repository-details.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'brep/repository-details.cxx')
-rw-r--r--brep/repository-details.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/brep/repository-details.cxx b/brep/repository-details.cxx
index 4302c15..b8a2e5b 100644
--- a/brep/repository-details.cxx
+++ b/brep/repository-details.cxx
@@ -77,14 +77,16 @@ namespace brep
<< A(HREF="#" + web::mime_url_encode (id)) << r.name << ~A
<< ~H1;
- if (r.email)
- s << A << HREF << "mailto:" << *r.email << ~HREF << *r.email << ~A;
-
if (r.summary)
s << H2 << *r.summary << ~H2;
if (r.description)
s << P_DESCRIPTION (*r.description, false);
+
+ if (r.email)
+ s << P
+ << A << HREF << "mailto:" << *r.email << ~HREF << *r.email << ~A
+ << ~P;
}
t.commit ();