https://bugzilla.wikimedia.org/show_bug.cgi?id=47434

       Web browser: ---
            Bug ID: 47434
           Summary: VisualEditor: No oldid is sent on POST to Parsoid
           Product: VisualEditor
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: Unprioritized
         Component: Initialisation and integration
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected]
    Classification: Unclassified
   Mobile Platform: ---

As the title says. The bug seems to be in postHTML:

array(
        'postData' => array( 'content' => $html ),
        'timeout' => $wgVisualEditorParsoidTimeout,
        'oldid' => $parserParams['oldid']
)


should be:

array(
        'postData' => array( 'content' => $html, 
                             'oldid' =>  $parserParams['oldid']),
        'timeout' => $wgVisualEditorParsoidTimeout
)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to