The function get_magic_quotes_runtime is deprecated in PHP 7.4 as per documantation.
This function has been DEPRECATED as of PHP 7.4.0. Relying on this function is highly discouraged.
How to replace it with a valid code with the same functionality?
A particular example PunBB v1.4.5, file: common.php line 18:
// Turn off magic_quotes_runtime
if (get_magic_quotes_runtime()) {
@ini_set('magic_quotes_runtime', false);
}