Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Aug 1, 2017
2 parents 9cd2b41 + 8ebfc1f commit 5949af6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion source/Core/Extensions/NameValueCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Binary file modified source/VersionAssemblyInfo.cs
Binary file not shown.

0 comments on commit 5949af6

Please sign in to comment.