You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Direction
We use github issues to track bugs, not for support.
If you have a support question, or a feature request, raise these as threads on our forum.
Describe the bug
The debug bar scripts are been inserted in the page before the <head> tag
CodeIgniter 4 version
CodeIgniter 4 RC4
Affected module(s)
Everywhere using the Debug
Expected behavior, and steps to reproduce if appropriate
Change the Debug/Toolbar.php line 396 with the code:
str_replace("<head>", $script . "<head>", $response->getBody())
from: $script . "<head>" to: "<head>".$script
(the $script should come after the head tag)
Context
OS: Linux Fedora 30
Web server: Nginx 1.16.1
PHP version: 7.3.14
The text was updated successfully, but these errors were encountered:
zehferrari
added
the
bug
Verified issues on the current code behavior or pull requests that will fix them
label
Feb 13, 2020
zehferrari
changed the title
Bug:
Bug: Debug Bar showing before the head tag
Feb 13, 2020
Direction
We use github issues to track bugs, not for support.
If you have a support question, or a feature request, raise these as threads on our
forum.
Describe the bug
The debug bar scripts are been inserted in the page before the <head> tag
CodeIgniter 4 version
CodeIgniter 4 RC4
Affected module(s)
Everywhere using the Debug
Expected behavior, and steps to reproduce if appropriate
Change the Debug/Toolbar.php line 396 with the code:
str_replace("<head>", $script . "<head>", $response->getBody())
from: $script . "<head>"
to: "<head>".$script
(the $script should come after the head tag)
Context
The text was updated successfully, but these errors were encountered: