Software /
code /
prosody-modules
Changeset
3283:97b8b07ae1d1
mod_http_muc_log: Close unclosed <p/> tag in template.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 25 Aug 2018 17:39:41 +0200 |
parents | 3282:9346ed926842 |
children | 3284:29a4d8b63fb1 |
files | mod_http_muc_log/mod_http_muc_log.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_http_muc_log/mod_http_muc_log.lua Sat Aug 25 17:39:01 2018 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sat Aug 25 17:39:41 2018 +0200 @@ -39,7 +39,7 @@ end if not template then module:log("error", "Error loading template: %s", err); - template = render("<h1>mod_{module} could not read the template</h1><p>Tried to open <b>{filename}</b><pre>{error}</pre>", + template = render("<h1>mod_{module} could not read the template</h1><p>Tried to open <b>{filename}</b></p><pre>{error}</pre>", { module = module.name, filename = template_filename, error = err }); end end