# HG changeset patch # User Kim Alvefur # Date 1670193009 -3600 # Node ID 650d04984e0be40e107a7ea77585142d52178d8c # Parent 21170bf1e76b2aa49d70e4034bbee85c25d867c3 mod_http_muc_log: Fix syntax error in timestamp adjusting script Put the } on the wrong line. Praise the Lua `end` ! diff -r 21170bf1e76b -r 650d04984e0b mod_http_muc_log/static/timestamps.js --- a/mod_http_muc_log/static/timestamps.js Sun Dec 04 23:16:34 2022 +0100 +++ b/mod_http_muc_log/static/timestamps.js Sun Dec 04 23:30:09 2022 +0100 @@ -15,7 +15,7 @@ if(document.forms.length>0){ document.forms[0].elements.p.addEventListener("change", function() { document.forms[0].submit(); +}); } -}); })();