diff options
Diffstat (limited to 'src/doc_reform/io_out/paths_output.d')
-rw-r--r-- | src/doc_reform/io_out/paths_output.d | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/doc_reform/io_out/paths_output.d b/src/doc_reform/io_out/paths_output.d index c7148a6..56cc40c 100644 --- a/src/doc_reform/io_out/paths_output.d +++ b/src/doc_reform/io_out/paths_output.d @@ -601,7 +601,10 @@ template spinePathsSQLiteCGI() { return ("src/".chainPath(base_filename(cgi_search_form_d)).asNormalizedPath).array; } string search_form_path_out() { - return (src.chainPath((cgi_search_form_d)).asNormalizedPath).array; + return (src.chainPath(cgi_search_form_d).asNormalizedPath).array; + } + string cgi_d_path_out() { + return (src.chainPath("cgi.d").asNormalizedPath).array; } } return _PathsStruct(); |