HandlerPageView: Parse dynamically included pages recursively

このコミットが含まれているのは:
2022-03-28 21:25:37 +02:00
コミット 03c5646858
2個のファイルの変更4行の追加4行の削除

ファイルの表示

@@ -6,9 +6,7 @@ std::string DynamicContentIncludePage::render()
auto rev = revisionDao->getCurrentForPage(this->argument);
if(rev)
{
Parser parser;
auto result = parser.parse(*this->database->createPageDao(), *this->urlProvider, rev->content);
return result;
return rev->content;
}
return {};
}