X-Git-Url: https://git.pterodactylus.net/?p=fms.git;a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fconfirmpage.h;fp=include%2Fhttp%2Fpages%2Fconfirmpage.h;h=5236d10c7023a997faedc4c7714e29d750bf1ac6;hp=aaf0c78f92d37f05d2b389118c9c385636eda79a;hb=59a5414ec47a2932a7802fcd1d98c4d80166564f;hpb=4e96d123460d6363cf7274e36bd9357768eb86ad diff --git a/include/http/pages/confirmpage.h b/include/http/pages/confirmpage.h index aaf0c78..5236d10 100644 --- a/include/http/pages/confirmpage.h +++ b/include/http/pages/confirmpage.h @@ -6,9 +6,9 @@ class ConfirmPage:public IPageHandler { public: - ConfirmPage(const std::string &templatestr):IPageHandler(templatestr,"confirm.htm") {} + ConfirmPage(SQLite3DB::DB *db, const std::string &templatestr):IPageHandler(db,templatestr,"confirm.htm") {} - IPageHandler *New() { return new ConfirmPage(m_template); } + IPageHandler *New() { return new ConfirmPage(m_db,m_template); } private: const bool WillHandleURI(const std::string &uri);