-- Bug fix

-- DB add field 'videomode'
This commit is contained in:
PhantomVl 2020-04-22 14:01:26 +03:00
parent 5be35cc0ae
commit e8e49a357d

View file

@ -2277,7 +2277,7 @@ class Sccp_manager extends \FreePBX_Helpers implements \BMO
if (is_array($needles)) {
foreach ($needles as $str) {
if (is_array($str)) {
$pos = strpos_array($haystack, $str);
$pos = $this->strpos_array($haystack, $str);
} else {
$pos = strpos($haystack, $str);
}