diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.DNS.MsDNS2012/DnsCommands.cs b/WebsitePanel/Sources/WebsitePanel.Providers.DNS.MsDNS2012/DnsCommands.cs index b03d3f58..41a71eca 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.DNS.MsDNS2012/DnsCommands.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.DNS.MsDNS2012/DnsCommands.cs @@ -55,7 +55,8 @@ namespace WebsitePanel.Providers.DNS /// Same command private static Command addParam( this Command cmd, string name ) { - cmd.Parameters.Add( name ); + // http://stackoverflow.com/a/10304080/126995 + cmd.Parameters.Add( name, true ); return cmd; }