Skip to content

Commit ad5c5e9

Browse files
authored
Update index.php
Change the `xdebug.trace_output_dir` to `xdebug.output_dir` so that it's compatible with Xdebug 3. https://xdebug.org/docs/all_settings#output_dir
1 parent 55f8ad3 commit ad5c5e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<label for="file">File:</label>
1313
<select name="file" id="file">
1414
<?php
15-
$dir = ini_get('xdebug.trace_output_dir');
15+
$dir = ini_get('xdebug.output_dir');
1616
if (!$dir) {
1717
$dir = '/tmp/';
1818
}
@@ -26,7 +26,7 @@
2626
<button type="submit">Load</button>
2727
<br/>
2828

29-
<p>Files are read from <code>xdebug.trace_output_dir = <?php echo htmlspecialchars($dir) ?></code></p>
29+
<p>Files are read from <code>xdebug.output_dir = <?php echo htmlspecialchars($dir) ?></code></p>
3030
</form>
3131

3232
<ul class="help">

0 commit comments

Comments
 (0)