diff options
author | stuebinm | 2021-04-12 16:21:53 +0200 |
---|---|---|
committer | stuebinm | 2021-04-12 16:21:53 +0200 |
commit | f02af23dd7f478a86c0522d1f4c3d924df06f3f0 (patch) | |
tree | f5431b9fbb8f8c933b823728070c89f25dc48678 /site/index.html | |
parent | 1c5b1e38820f411563efb265b18c4cba6c518074 (diff) |
site: fix locale detection
(it mistakenly set the locale to undefined before)
Diffstat (limited to 'site/index.html')
-rw-r--r-- | site/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/index.html b/site/index.html index c2ac9c9..4034787 100644 --- a/site/index.html +++ b/site/index.html @@ -251,7 +251,7 @@ mkElement("p", msg, "error"), appendChildren( mkElement("p",_("attempted path:"),"error"), - [mkElement("tt", surveyUrl,"error")] + [mkElement("tt"," "+surveyUrl,"error")] ) ]); } |