aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-12-03 13:02:23 +0000
committerMatthew Wild <mwild1@gmail.com>2008-12-03 13:02:23 +0000
commitdde71f594106e0d575d0c4ac390bf24bb1bc2275 (patch)
tree3cd80392dec00ddd80b1d229de2c82e1b9c9500d /plugins/mod_version.lua
parent83492949889032e73dee35facb246feae8cc807c (diff)
downloadprosody-dde71f594106e0d575d0c4ac390bf24bb1bc2275.tar.gz
prosody-dde71f594106e0d575d0c4ac390bf24bb1bc2275.zip
lxmppd -> Prosody
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r--plugins/mod_version.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua
index 11278a53..3c0d045a 100644
--- a/plugins/mod_version.lua
+++ b/plugins/mod_version.lua
@@ -10,8 +10,8 @@ require "core.discomanager".set("version", xmlns_version);
local function handle_version_request(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza):query(xmlns_version)
- :tag("name"):text("lxmppd"):up()
- :tag("version"):text("pre-alpha"):up()
+ :tag("name"):text("Prosody"):up()
+ :tag("version"):text("0.1"):up()
:tag("os"):text("the best operating system ever!"));
end
end