From: Art Cancro Date: Tue, 3 Jul 2012 14:53:42 +0000 (-0400) Subject: Clarified an unclear warning message X-Git-Tag: v8.13~24^2 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=18fe146b44d5c852e81b9c0d41a33650fc215689 Clarified an unclear warning message --- diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 8625ba89d..a16d9cfe8 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -251,8 +251,9 @@ void load_siteconfig(void) Buf = NewStrBuf(); } else { - if (j == 0) - AppendImportantMessage(_("WARNING: Failed to parse Server Config; do you run a to new citserver?"), -1); + if (j == 0) { + syslog(LOG_WARNING, "The server sent more configuration data than this version of webcit is capable of changing. Unknown configuration values will remain unchanged."); + } j++; } }