php-markdown icon indicating copy to clipboard operation
php-markdown copied to clipboard

PHP82 deprecated error in MarkdownExtra doExtraAttributes

Open jerry1970 opened this issue 1 year ago • 0 comments

PHP Deprecated: preg_match_all(): Passing null to parameter 2 ($subject) of type string is deprecated in /var/www/dprp/vendor/michelf/php-markdown/Michelf/MarkdownExtra.php on line 232

Line 227 checks for empty $attr && no default ID value && empty classes, but line 232 still tries to match on $attr, which could be null.

Using $attr ?? "" on line 232 probably solves that.

jerry1970 avatar Jun 02 '23 07:06 jerry1970