Index: themes/modern-store/inc/js/form_manager.js IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- themes/modern-store/inc/js/form_manager.js (revision 15778) +++ themes/modern-store/inc/js/form_manager.js (revision ) @@ -248,11 +248,12 @@ } else if ( $data.do_refresh ) { // refresh whole page - window.location.href = window.location.href; + window.location.reload(true); } else if ( $data.redirect_to ) { // redirect to given page - window.location.href = $data.redirect_to; + window.location.replace($data.redirect_to); + window.location.reload(true); } } else { \ No newline at end of file Index: themes/advanced/platform/inc/form_manager.js IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- themes/advanced/platform/inc/form_manager.js (revision 15779) +++ themes/advanced/platform/inc/form_manager.js (revision ) @@ -219,11 +219,12 @@ } else if ( $data.do_refresh ) { // refresh whole page - window.location.href = window.location.href; + window.location.reload(true); } else if ( $data.redirect_to ) { // redirect to given page - window.location.href = $data.redirect_to; + window.location.replace($data.redirect_to); + window.location.reload(true); } } else {