Update of /cvsroot/magicajax/magicajax/Core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25940/Core
Modified Files:
AjaxCallHelper.cs
Log Message:
Fixed a bug of the HandleHeader method. It was sending lowercased data and was creating problems with stylesheets.
Index: AjaxCallHelper.cs
===================================================================
RCS file: /cvsroot/magicajax/magicajax/Core/AjaxCallHelper.cs,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** AjaxCallHelper.cs 24 Jan 2006 22:25:04 -0000 1.23
--- AjaxCallHelper.cs 25 Jan 2006 03:12:56 -0000 1.24
***************
*** 794,798 ****
{
string tagName = match.Groups["tag"].Value.ToLower(CultureInfo.InvariantCulture);
! string innerText = match.Groups["inner"].Success ? match.Groups["inner"].Value.ToLower(CultureInfo.InvariantCulture) : String.Empty;
NameValueCollection attrNameValues = new NameValueCollection();
--- 794,798 ----
{
string tagName = match.Groups["tag"].Value.ToLower(CultureInfo.InvariantCulture);
! string innerText = match.Groups["inner"].Success ? match.Groups["inner"].Value : String.Empty;
NameValueCollection attrNameValues = new NameValueCollection();
|