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

Alexandre Julliard julliard at winehq.org
Thu Jan 26 14:49:24 CST 2012


Module: wine
Branch: master
Commit: c77ba794b7042611d6500a37fdd4263f04cab8a9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c77ba794b7042611d6500a37fdd4263f04cab8a9

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Jan 26 15:15:39 2012 +0100

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

---

 dlls/mshtml/navigate.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c
index 9b650f4..9950511 100644
--- a/dlls/mshtml/navigate.c
+++ b/dlls/mshtml/navigate.c
@@ -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);
     }




More information about the wine-cvs mailing list