From: danieldg Date: Mon, 8 Feb 2010 15:07:29 +0000 (+0000) Subject: Allow to select an alternate MOTD file to display X-Git-Tag: v2.0.23~1107 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=f0a928a2f7de2ebde53dfb6cf25ead86a5e480d8;p=user%2Fhenk%2Fcode%2Finspircd.git Allow to select an alternate MOTD file to display git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12399 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/commands/cmd_motd.cpp b/src/commands/cmd_motd.cpp index b48c1c951..91ba5459f 100644 --- a/src/commands/cmd_motd.cpp +++ b/src/commands/cmd_motd.cpp @@ -46,7 +46,11 @@ CmdResult CommandMotd::Handle (const std::vector& parameters, User if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName) return CMD_SUCCESS; - ConfigFileCache::iterator motd = ServerInstance->Config->Files.find("motd"); + ConfigTag* tag = NULL; + if (IS_LOCAL(user)) + tag = user->GetClass()->config; + std::string motd_name = tag->getString("motd", "motd"); + ConfigFileCache::iterator motd = ServerInstance->Config->Files.find(motd_name); if (motd == ServerInstance->Config->Files.end()) { user->SendText(":%s %03d %s :Message of the day file is missing.",