diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-15 22:07:31 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-15 22:07:31 +0000 |
commit | 7fb57614491db05660e8952634aeac67d4ff22f5 (patch) | |
tree | 7b6610c92a94309e6094f406c1bf67c68ca91936 | |
parent | f2bca1da103f2c790fff5825c24381aa1e313153 (diff) | |
download | prosody-7fb57614491db05660e8952634aeac67d4ff22f5.tar.gz prosody-7fb57614491db05660e8952634aeac67d4ff22f5.zip |
Small fix for mod_version
-rw-r--r-- | plugins/mod_version.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index 552480e0..ff8f7539 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -11,7 +11,7 @@ local function handle_version_request(session, stanza) session.send(st.reply(stanza):query(xmlns_version) :tag("name"):text("lxmppd"):up() :tag("version"):text("pre-alpha"):up() - :tag("os"):text("The best one")); + :tag("os"):text("the best operating system ever!")); end end |