Добрый день!
dj-imageslider 4.5.1 на Joomla 4.3.4 php 8.0
при переводе на php 8.1 выходит ошибка Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in ....modules/mod_djimageslider/helper.php on line 352
сама функция
static function getSlideTarget($link) {
if(preg_match("/^http/",$link) && !preg_match("/^".str_replace(array('/','.','-'), array('\/','\.','\-'),JURI::base())."/",$link)) {
$target = '_blank';
} else {
$target = '_self';
}
return $target;
}
как исправить?