diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-15 05:16:31 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-15 05:16:31 +0000 |
commit | d1dc60e83eef53da5368e18955acfa6c72be0374 (patch) | |
tree | 8fa25e7060719ea80c520d6e1f12bf53d4f4d920 | |
parent | 7c197db72eab03321e4f3e847054e13126520504 (diff) |
Fixed hidebans behavior to not always be on as well; there are probablyother issues here, see #243
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6674 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/xline.cpp | 40 |
1 files changed, 32 insertions, 8 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 343f4d504..b6721de09 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -684,7 +684,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_gline(u,true))) { snprintf(reason,MAXBUF,"G-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "G-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "G-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } @@ -693,7 +696,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_kline(u,true))) { snprintf(reason,MAXBUF,"K-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "K-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "K-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } @@ -702,7 +708,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_qline(u->nick,true))) { snprintf(reason,MAXBUF,"Q-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "Q-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "Q-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } @@ -711,7 +720,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_zline(u->GetIPString(),true))) { snprintf(reason,MAXBUF,"Z-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u,"Z-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "Z-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } } @@ -740,7 +752,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_gline(u))) { snprintf(reason,MAXBUF,"G-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "G-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "G-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } if ((What & APPLY_KLINES) && (klines.size() || pklines.size())) @@ -748,7 +763,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_kline(u))) { snprintf(reason,MAXBUF,"K-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "K-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "K-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } if ((What & APPLY_QLINES) && (qlines.size() || pqlines.size())) @@ -756,7 +774,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_qline(u->nick))) { snprintf(reason,MAXBUF,"Q-Lined: %s",check->reason); - ServerInstance->GlobalCulls.AddItem(u, "Q-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "Q-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } if ((What & APPLY_ZLINES) && (zlines.size() || pzlines.size())) @@ -764,7 +785,10 @@ void XLineManager::apply_lines(const int What) if ((check = matches_zline(u->GetIPString()))) { snprintf(reason,MAXBUF,"Z-Lined: %s", check->reason); - ServerInstance->GlobalCulls.AddItem(u, "Z-Lined", reason); + if (ServerInstance->Config->HideBans) + ServerInstance->GlobalCulls.AddItem(u, "Z-Lined", reason); + else + ServerInstance->GlobalCulls.AddItem(u, reason); } } } |