diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-03-22 13:36:39 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-03-22 13:37:43 +0300 |
commit | f7327a0b3cd6723cb289819bad1d664cfd5d6618 (patch) | |
tree | 1345a9cdbc3c96d760a75e0bc785a5dfdcf00714 /mod/mod-build-configs.cxx | |
parent | 783a28514bc13901f39d23e3a64c3869e796a3db (diff) |
Fix Build Configurations page to add tenant to links
Diffstat (limited to 'mod/mod-build-configs.cxx')
-rw-r--r-- | mod/mod-build-configs.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mod-build-configs.cxx b/mod/mod-build-configs.cxx index 6731b28..126c1d8 100644 --- a/mod/mod-build-configs.cxx +++ b/mod/mod-build-configs.cxx @@ -89,9 +89,9 @@ handle (request& rq, response& rs) << DIV_HEADER (options_->logo (), options_->menu (), root, tenant) << DIV(ID="content"); - auto url = [&root] (const string& cls) + auto url = [&root, this] (const string& cls) { - string r (root.string () + "?build-configs"); + string r (tenant_dir (root, tenant).string () + "?build-configs"); if (cls != "all") { |