-- Bug fix

-- DB add field 'videomode'
This commit is contained in:
PhantomVl 2020-04-22 14:01:26 +03:00 committed by Diederik de Groot
parent 6740aab4f2
commit 6c0d37e25a
No known key found for this signature in database
GPG key ID: AFA728250A1BECD6

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);
}