mirror of
https://github.com/znc/znc.git
synced 2026-07-06 01:41:12 +02:00
Resolve #818: "Got ZNC?" is a little weird real name
This commit is contained in:
+4
-2
@@ -702,8 +702,10 @@ bool CZNC::WriteNewConfig(const CString& sConfigFile) {
|
||||
}
|
||||
CUtils::GetInput("Ident", sAnswer, sUser);
|
||||
vsLines.push_back("\tIdent = " + sAnswer);
|
||||
CUtils::GetInput("Real name", sAnswer, "Got ZNC?");
|
||||
vsLines.push_back("\tRealName = " + sAnswer);
|
||||
CUtils::GetInput("Real name", sAnswer, "", "optional");
|
||||
if (!sAnswer.empty()) {
|
||||
vsLines.push_back("\tRealName = " + sAnswer);
|
||||
}
|
||||
CUtils::GetInput("Bind host", sAnswer, "", "optional");
|
||||
if (!sAnswer.empty()) {
|
||||
vsLines.push_back("\tBindHost = " + sAnswer);
|
||||
|
||||
Reference in New Issue
Block a user