We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c06f84 + e2ed766 commit 0872a21Copy full SHA for 0872a21
2 files changed
system/Debug/Toolbar/Views/toolbar.tpl.php
@@ -23,7 +23,7 @@
23
</style>
24
25
<script id="toolbar_js">
26
- var ciSiteURL = "<?= site_url() ?>"
+ var ciSiteURL = "<?= rtrim(site_url(), '/') ?>"
27
<?= file_get_contents(__DIR__ . '/toolbar.js') ?>
28
</script>
29
<div id="debug-icon" class="debug-bar-ndisplay">
system/HotReloader/HotReloader.php
@@ -18,6 +18,10 @@ final class HotReloader
18
{
19
public function run(): void
20
21
+ if (session_status() === PHP_SESSION_ACTIVE) {
22
+ session_write_close();
+ }
+
ini_set('zlib.output_compression', 'Off');
header('Cache-Control: no-store');
0 commit comments