diff --git a/default.ps1 b/default.ps1 index 1e7785b14..f20c57db5 100644 --- a/default.ps1 +++ b/default.ps1 @@ -11,7 +11,7 @@ properties { $nuget_path = "$base_directory\nuget.exe" $buildNumber = 0; - $version = "2.6.0.0" + $version = "2.6.1.0" $preRelease = $null } diff --git a/source/Core/Extensions/NameValueCollectionExtensions.cs b/source/Core/Extensions/NameValueCollectionExtensions.cs index 3b29b2a7d..a8bbbea39 100644 --- a/source/Core/Extensions/NameValueCollectionExtensions.cs +++ b/source/Core/Extensions/NameValueCollectionExtensions.cs @@ -56,7 +56,7 @@ public static string ToQueryString(this NameValueCollection collection) public static string ToFormPost(this NameValueCollection collection) { var builder = new StringBuilder(128); - const string inputFieldFormat = "<input type=\"hidden\" name=\"{0}\" value=\"{1}\" />\n"; + const string inputFieldFormat = "<input type=\"hidden\" name=\"{0}\" value=\"{1}\" ng-non-bindable />\n"; foreach (string name in collection) { diff --git a/source/Core/Services/DefaultViewService/PageAssets/authorizeresponse.html b/source/Core/Services/DefaultViewService/PageAssets/authorizeresponse.html index 442fafc66..98507f122 100644 --- a/source/Core/Services/DefaultViewService/PageAssets/authorizeresponse.html +++ b/source/Core/Services/DefaultViewService/PageAssets/authorizeresponse.html @@ -4,7 +4,7 @@ <h1>Please wait...</h1> <div class="row"> <div class="col-md-6 col-sm-6"> - <form method="post" action="{responseUri}"> + <form method="post" action="{responseUri}" ng-non-bindable> {responseFields} </form> </div> diff --git a/source/VersionAssemblyInfo.cs b/source/VersionAssemblyInfo.cs index f92f27652..923304a43 100644 Binary files a/source/VersionAssemblyInfo.cs and b/source/VersionAssemblyInfo.cs differ