diff options
Diffstat (limited to 'mod')
-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") { |