Преглед на файлове

Merge remote branch 'ooflorent/patch-1'

* ooflorent/patch-1:
  Made the profiler toolbar loading an XML HTTP request.
Fabien Potencier преди 14 години
родител
ревизия
54329387fd
променени са 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';