diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-24 21:05:59 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-24 21:05:59 +0300 |
commit | bd7ac6b11d9282e40fe55a1e855e82f65b4385c1 (patch) | |
tree | a85399da75ff706e39fef8c8b17625dce8639cb2 /mod/mod-package-version-details.cxx | |
parent | 3ea79208de994a896397b3c027f398e4ecbcc59f (diff) |
Adjust layout of package version details page
Diffstat (limited to 'mod/mod-package-version-details.cxx')
-rw-r--r-- | mod/mod-package-version-details.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mod-package-version-details.cxx b/mod/mod-package-version-details.cxx index cbcc74c..30b2567 100644 --- a/mod/mod-package-version-details.cxx +++ b/mod/mod-package-version-details.cxx @@ -195,11 +195,11 @@ handle (request& rq, response& rs) const auto& pu (pkg->package_url); if (pu && *pu != pkg->url) - s << TR_URL (*pu, "pkg-url"); + s << TR_URL (*pu, "package-url"); const auto& pe (pkg->package_email); if (pe && *pe != em) - s << TR_EMAIL (*pe, "pkg-email"); + s << TR_EMAIL (*pe, "package-email"); const auto& be (pkg->build_email); if (be && ((pe && *be != *pe) || (!pe && *be != em))) |