Changeset 20136 in webkit


Ignore:
Timestamp:
Mar 12, 2007 8:52:09 PM (17 years ago)
Author:
ddkilzer
Message:

WebCore:

Reviewed by Darin.

  • html/HTMLFormElement.cpp: (WebCore::getUniqueBoundaryString): Speculative fix: remove dashes from the boundary prefix that appear after non-dash characters.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r20135 r20136  
     12007-03-12  David Kilzer  <ddkilzer@kilzer.net>
     2
     3        Reviewed by Darin.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=13045
     6          REGRESSION: Blackboard CourseWare Error with Nightlies after Mar 8
     7
     8        * html/HTMLFormElement.cpp:
     9        (WebCore::getUniqueBoundaryString): Speculative fix: remove dashes from
     10        the boundary prefix that appear after non-dash characters.
     11
    1122007-03-12  Mitz Pettel  <mitz@webkit.org>
    213
  • trunk/WebCore/html/HTMLFormElement.cpp

    r20084 r20136  
    365365{
    366366    // Start with an informative prefix.
    367     const char boundaryPrefix[] = "----WebKit-form-boundary-";
     367    const char boundaryPrefix[] = "----WebKitFormBoundary";
    368368    boundary.append(boundaryPrefix, strlen(boundaryPrefix));
    369369
Note: See TracChangeset for help on using the changeset viewer.