diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-28 21:28:39 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-28 21:28:39 +0200 |
commit | 42d125f1b9e44914972e490fe0c92b74d0a74cf2 (patch) | |
tree | ad543053f860fd700f073af242474c0f03ccee5c /plugins | |
parent | 095c82585f2e4a9963c33c0988d453b0278bc0c7 (diff) |
Fix path
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/weblog/weblog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/weblog/weblog.cpp b/plugins/weblog/weblog.cpp index a69fdb6..d0ef811 100644 --- a/plugins/weblog/weblog.cpp +++ b/plugins/weblog/weblog.cpp @@ -280,7 +280,7 @@ namespace { try { HtmlPage htmlPage{GetRequestParam, "<h1>"s + GetRequestParam("WEBLOG_NAME") + "</h1>"s}; - fs::path link{ GetRequestParam("rel_target")}; + fs::path link{ GetRequestParam("plugin_path")}; auto list{getArticleList(path, page)}; if (list.empty()) |