# HG changeset patch # User Kim Alvefur # Date 1557044693 -7200 # Node ID f169d9a513c6b8ed847eb7d490844d1e014f0971 # Parent 1396ce148073600692e02cfbaacb926b52cc1520 mod_http_index: Improve page title diff -r 1396ce148073 -r f169d9a513c6 mod_http_index/mod_http_index.lua --- a/mod_http_index/mod_http_index.lua Sun May 05 09:22:53 2019 +0200 +++ b/mod_http_index/mod_http_index.lua Sun May 05 10:24:53 2019 +0200 @@ -40,7 +40,7 @@ table.sort(http_apps, function (a, b) return a.name < b.name; end); event.response.headers.content_type = "text/html"; return render(base_template, { - title = "HTTP Apps"; + title = "Prosody IM - HTTP Services"; items = http_apps; prosody_version = prosody.version; mod_name = module.name;