Software /
code /
prosody-modules
Changeset
3577:f169d9a513c6
mod_http_index: Improve page title
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 05 May 2019 10:24:53 +0200 |
parents | 3576:1396ce148073 |
children | 3578:ea63dc0cc824 |
files | mod_http_index/mod_http_index.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;