diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:42:01 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:42:01 +0000 |
commit | 0318c8644d6c70deeb661c87c4cd8ed918497cdd (patch) | |
tree | 19166e73e0df8ab5bf5e87d860ee7602b9a9297f /plugins/mod_motd.lua | |
parent | c32601b14fb35115a64d977fcf8087bff572635e (diff) | |
parent | 74408ff9f5ed48bfd4125729e2bdada3f19356be (diff) | |
download | prosody-0318c8644d6c70deeb661c87c4cd8ed918497cdd.tar.gz prosody-0318c8644d6c70deeb661c87c4cd8ed918497cdd.zip |
Merge 0.8->trunk
Diffstat (limited to 'plugins/mod_motd.lua')
-rw-r--r-- | plugins/mod_motd.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_motd.lua b/plugins/mod_motd.lua index f323e606..462670e6 100644 --- a/plugins/mod_motd.lua +++ b/plugins/mod_motd.lua @@ -13,6 +13,8 @@ local motd_jid = module:get_option("motd_jid") or host; local st = require "util.stanza"; +motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n%s+", "\n"); -- Strip indentation from the config + module:hook("resource-bind", function (event) local session = event.session; |