From 00e63f2acca367097662a2f8bb22bee8fb0ee1a0 Mon Sep 17 00:00:00 2001 From: khong Date: Thu, 23 Feb 2017 15:50:16 -0500 Subject: [PATCH] FREEPBX-14183 Registered OpenCNAM fails --- sources/source-OpenCNAM.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/source-OpenCNAM.module b/sources/source-OpenCNAM.module index 86fb4da2..81abbfbb 100644 --- a/sources/source-OpenCNAM.module +++ b/sources/source-OpenCNAM.module @@ -42,7 +42,7 @@ class OpenCNAM extends superfecta_base { if (strlen($sname) > 1) { // convert list of ignore keywords into array $key_words = array(); - $temp_array = explode(',',(isset($run_param['Ignore_Keywords'])?$run_param['Ignore_Keywords']:$source_param['Ignore_Keywords']['default'])); + $temp_array = explode(',',(isset($run_param['Ignore_Keywords'])?$run_param['Ignore_Keywords']:$this->source_param['Ignore_Keywords']['default'])); foreach($temp_array as $val) { $key_words[] = trim($val); }