Skip to content

Commit

Permalink
Merge pull request #430 from Dessimat0r/webadmin1
Browse files Browse the repository at this point in the history
Added SSL (+) and port in networks list for connected servers
  • Loading branch information
DarthGandalf committed Nov 21, 2013
2 parents 1790778 + 054e873 commit 5d74720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/webadmin.cpp
Expand Up @@ -1099,7 +1099,7 @@ class CWebAdminMod : public CModule {
l["IRCNick"] = vNetworks[a]->GetIRCNick().GetNick();
CServer* pServer = vNetworks[a]->GetCurrentServer();
if (pServer) {
l["Server"] = pServer->GetName();
l["Server"] = pServer->GetName() + ":" + (pServer->IsSSL() ? "+" : "") + CString(pServer->GetPort());
}
}

Expand Down

0 comments on commit 5d74720

Please sign in to comment.