Update of /cvsroot/magicajax/magicajax/Core/UI/Controls
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10817/magicajax/Core/UI/Controls
Modified Files:
AjaxPanel.cs
Log Message:
reverted line of code that was commented out erroneously
Index: AjaxPanel.cs
===================================================================
RCS file: /cvsroot/magicajax/magicajax/Core/UI/Controls/AjaxPanel.cs,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** AjaxPanel.cs 24 Jan 2006 22:25:05 -0000 1.54
--- AjaxPanel.cs 25 Jan 2006 09:19:07 -0000 1.55
***************
*** 1354,1359 ****
if (HttpContext.Current.Request.Form[panelKey] != serializedPanelFingerprints)
{
! //NOTE: reflecting hidden hields is done elsewhere
! //AjaxCallHelper.WriteSetFieldScript(panelKey, serializedPanelFingerprints);
}
}
--- 1354,1358 ----
if (HttpContext.Current.Request.Form[panelKey] != serializedPanelFingerprints)
{
! AjaxCallHelper.WriteSetFieldScript(panelKey, serializedPanelFingerprints);
}
}
|