Skip to content

Commit

Permalink
Merge branch 'xdebug_3_4'
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Jan 28, 2025
2 parents 63ab243 + e419d8c commit 115bac0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/develop/superglobals.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2022 Derick Rethans |
| Copyright (c) 2002-2025 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
Expand Down Expand Up @@ -198,7 +198,8 @@ PHP_FUNCTION(xdebug_dump_superglobals)

superglobal_info = xdebug_get_printable_superglobals(html);
if (superglobal_info) {
php_printf("%s", xdebug_get_printable_superglobals(html));
php_printf("%s", superglobal_info);
xdfree(superglobal_info);
} else {
php_printf("<tr><td><i>No information about superglobals is available or configured.</i></td></tr>\n");
}
Expand Down

0 comments on commit 115bac0

Please sign in to comment.