Skip to content

Commit

Permalink
[asp.net] Fix for bug #643298. A typo prevented the EnableViewStateMa…
Browse files Browse the repository at this point in the history
…c from being recognized in the Page directive.
  • Loading branch information
grendello committed Oct 5, 2010
1 parent 57dae7a commit 577dfd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcs/class/System.Web/System.Web.UI/PageParser.cs
Expand Up @@ -432,7 +432,7 @@ internal override void ProcessMainAttributes (IDictionary atts)
enable_event_validation = GetBool (atts, "EnableEventValidation", enable_event_validation);
maintainScrollPositionOnPostBack = GetBool (atts, "MaintainScrollPositionOnPostBack", maintainScrollPositionOnPostBack);

if (atts.Contains ("EnableViewState")) {
if (atts.Contains ("EnableViewStateMac")) {
enableViewStateMac = GetBool (atts, "EnableViewStateMac", enableViewStateMac);
enableViewStateMacSet = true;
}
Expand Down

0 comments on commit 577dfd5

Please sign in to comment.