From 1c665758a45f8c736013365d34ac0ee4bc3e52cb Mon Sep 17 00:00:00 2001 From: "Ethan J. Brown" Date: Fri, 8 Mar 2013 13:53:27 -0500 Subject: [PATCH] FIX: JSON helper ConvertTo-DoubleEscapedQuotes Can't taken in $Name from the pipeline dummy! --- core/JsonHelpers.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/JsonHelpers.ps1 b/core/JsonHelpers.ps1 index 9ffcf38..dc46d7f 100644 --- a/core/JsonHelpers.ps1 +++ b/core/JsonHelpers.ps1 @@ -26,7 +26,7 @@ function ConvertTo-DoubleEscapedQuotes [String] $Text, - [Parameter(ValueFromPipeline=$true, Mandatory = $false)] + [Parameter(Mandatory = $false)] [String] $Name = '' )