mod_welcome: Change $user to $username in default welcome message (thanks to chris for spotting)

This commit is contained in:
Waqas Hussain 2009-10-27 01:15:05 +05:00
parent c07ef005e8
commit c73ece03d8

View file

@ -7,7 +7,7 @@
--
local host = module:get_host();
local welcome_text = module:get_option("welcome_message") or "Hello $user, welcome to the $host IM server!";
local welcome_text = module:get_option("welcome_message") or "Hello $username, welcome to the $host IM server!";
local st = require "util.stanza";