# HG changeset patch # User Trần H. Trung # Date 1693321546 -25200 # Node ID 8a607be2cdccd99e6400d52e5d404121225bad1c # Parent 5e7e609fae0c3f6caa09e0cce26003c7f37cc706 mod_invites_register_web: change config option from `invites_html_template` to `invites_template_html`. diff -r 5e7e609fae0c -r 8a607be2cdcc mod_invites_register_web/mod_invites_register_web.lua --- a/mod_invites_register_web/mod_invites_register_web.lua Tue Aug 01 01:27:45 2023 +0700 +++ b/mod_invites_register_web/mod_invites_register_web.lua Tue Aug 29 22:05:46 2023 +0700 @@ -34,7 +34,7 @@ local invites = module:depends("invites"); local invites_page = module:depends("invites_page"); -local templatePath = module:get_option_string("invites_html_template", "html"); +local templatePath = module:get_option_string("invites_template_html", "html"); function template_get(sTemplate, sLang) local template = sLang and templatePath.."/"..sTemplate.."."..sLang..".html" or templatePath.."/"..sTemplate..".html";