The PHP-function create_function() has been deprecated as of PHP 7.2.0 (https://wiki.php.net/rfc/deprecations_php_7_2#create_function), but is still used in GeSHI:
library/geshi/geshi.php: //$list = preg_replace_callback('#(?<=^|\:|\|)\w+?(\w+)(?:\|.+\1)+(?=\|)#', create_function(
library/geshi/geshi.php: $callback_2 = create_function('$matches', 'return "[" . str_replace("|", "", $matches[1]) . "]";');
Hello,
We have the same in my enterprise. Here is the warning:
Hello,
a simple fix reads
regards
Micha