mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
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:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user