# HG changeset patch # User Kim Alvefur # Date 1520711392 -3600 # Node ID 4b5a00fffb22c7e3637e9e8ca8ac4d68f0d6bd56 # Parent b23da88b350701a3ef6e2bb7902c07efc02cefa7# Parent 4e475ef4b569384f35b82e32b468a4ef32a4996d Merge 0.9->0.10 diff -r b23da88b3507 -r 4b5a00fffb22 .hgtags --- a/.hgtags Fri Mar 09 21:51:06 2018 +0100 +++ b/.hgtags Sat Mar 10 20:49:52 2018 +0100 @@ -61,3 +61,4 @@ 8613086779fa9276615c2af066d2a10c38d0c86e 0.9.11 2a7b52437167a5c7b6c8a5bc79f4463afe092fd5 0.9.12 39966cbc29f46d7ae9660edca8683d5121c82edf 0.10.0 +082d127286451eb55420c36424dd321e8d9bceee 0.9.13 diff -r b23da88b3507 -r 4b5a00fffb22 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Fri Mar 09 21:51:06 2018 +0100 +++ b/plugins/mod_admin_telnet.lua Sat Mar 10 20:49:52 2018 +0100 @@ -1114,7 +1114,7 @@ local http_host = module:context(host):get_option_string("http_host"); print("HTTP endpoints on "..host..(http_host and (" (using "..http_host.."):") or ":")); for _, provider in ipairs(http_apps) do - local url = module:context(host):http_url(provider.name); + local url = module:context(host):http_url(provider.name, provider.default_path); print("", url); end print(""); diff -r b23da88b3507 -r 4b5a00fffb22 plugins/muc/muc.lib.lua