From 8aa23b4170aeef0b1137bdb95fcedc5d07284ddc Mon Sep 17 00:00:00 2001 From: ruslan Date: Wed, 15 Aug 2012 12:33:09 +0300 Subject: [PATCH] reverting back to 'Path' argument name, with 'path' does not work :( --- .../Sources/WebsitePanel.Server/WindowsServer.asmx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebsitePanel/Sources/WebsitePanel.Server/WindowsServer.asmx.cs b/WebsitePanel/Sources/WebsitePanel.Server/WindowsServer.asmx.cs index 5686914c..01827978 100644 --- a/WebsitePanel/Sources/WebsitePanel.Server/WindowsServer.asmx.cs +++ b/WebsitePanel/Sources/WebsitePanel.Server/WindowsServer.asmx.cs @@ -755,7 +755,7 @@ namespace WebsitePanel.Server } [WebMethod] - public SettingPair[] WpiGetLogsInDirectory(string path) + public SettingPair[] WpiGetLogsInDirectory(string Path) { try { @@ -763,7 +763,7 @@ namespace WebsitePanel.Server ArrayList result = new ArrayList(); - string[] filePaths = Directory.GetFiles(path); + string[] filePaths = Directory.GetFiles(Path); foreach (string filePath in filePaths) { using (StreamReader streamReader = new StreamReader(filePath))