Webadmin: Remove the special rule for CVS and ignore .svn instead

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1043 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-05-08 13:45:16 +00:00
parent 8cf12e8931
commit 8c24ebb641

View File

@@ -564,7 +564,9 @@ bool CWebAdminSock::SettingsPage(CString& sPageRet) {
for (unsigned int d = 0; d < Dir.size(); d++) {
const CFile& SubDir = *Dir[d];
if (SubDir.IsDir() && SubDir.GetShortName() != "CVS" && SubDir.GetShortName() != "default") {
if (SubDir.IsDir() &&
SubDir.GetShortName() != ".svn" &&
SubDir.GetShortName() != "default") {
CTemplate& l = m_Template.AddRow("SkinLoop");
l["Name"] = SubDir.GetShortName();