Commit c77ba794 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Don't use simplified fragment-only navigation if there is post data to send.

parent dec3a9c7
......@@ -1920,7 +1920,7 @@ HRESULT super_navigate(HTMLWindow *window, IUri *uri, const WCHAR *headers, BYTE
}
}
if(window->uri && compare_ignoring_frag(window->uri, uri)) {
if(window->uri && !post_data_size && compare_ignoring_frag(window->uri, uri)) {
TRACE("fragment navigate\n");
return navigate_fragment(window, uri);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment