To be compatible with php 7.2+, this change needs to be made to options/debug.php: line 62: `while (list($key, $value) = each($variable_dump)) { ?>` becomes `foreach( $variable_dump as $key => $value ) { ?>`
To be compatible with php 7.2+, this change needs to be made to options/debug.php:
line 62:
while (list($key, $value) = each($variable_dump)) { ?>becomes
foreach( $variable_dump as $key => $value ) { ?>