Skip to content

Commit 36a8a98

Browse files
committed
[WebProfilerBundle] Fix JS error when evaluating scripts
1 parent 383dbd5 commit 36a8a98

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/base_js.html.twig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,9 @@ if (typeof Sfjs === 'undefined' || typeof Sfjs.loadToolbar === 'undefined') {
565565
/* Evaluate in global scope scripts embedded inside the toolbar */
566566
var i, scripts = [].slice.call(el.querySelectorAll('script'));
567567
for (i = 0; i < scripts.length; ++i) {
568-
eval.call({}, scripts[i].firstChild.nodeValue);
568+
if (scripts[i].firstChild) {
569+
eval.call({}, scripts[i].firstChild.nodeValue);
570+
}
569571
}
570572
571573
el.style.display = -1 !== xhr.responseText.indexOf('sf-toolbarreset') ? 'block' : 'none';

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy