瀏覽代碼

Made the profiler toolbar loading an XML HTTP request.

Florent Cailhol 14 年之前
父節點
當前提交
f052d2d439
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig

+ 1 - 0
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig

@@ -9,6 +9,7 @@
             xhr = new ActiveXObject('Microsoft.XMLHTTP');
         }
         xhr.open('GET', '{{ path("_wdt", { "token": token }) }}', false);
+        xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
         xhr.send('');
         wdt.innerHTML = xhr.responseText;
         wdt.style.display = 'block';