diff options
author | Peter Kozak <spag@golwen.net> | 2013-03-18 01:56:10 -0400 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-03-18 01:56:10 -0400 |
commit | 6ea53a212b27c204f200f107838c85c610b2138f (patch) | |
tree | 46582506c4e03c38ea0bf48ecc959e44c23c2172 /misc/freeswitch | |
parent | b22b802c80649fb9ee1925cc9ab5a2a959fc89ab (diff) |
typo
Diffstat (limited to 'misc/freeswitch')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/functions.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/dialplan/functions.lua b/misc/freeswitch/scripts/dialplan/functions.lua index 88eba2c..773e481 100644 --- a/misc/freeswitch/scripts/dialplan/functions.lua +++ b/misc/freeswitch/scripts/dialplan/functions.lua @@ -164,7 +164,7 @@ function Functions.intercept_any_number(self, caller, destination_number) local phone_numberable = common.object.Object:new{ log = self.log, database = self.database}:find{class = phone_number.record.phone_numberable_type, id = phone_number.record.phone_numberable_id}; if not phone_numberable then - self.log:notice('FUNCTION_INTERCEPT_ANY_NUMBER - numberable not found: ', dphone_number.record.phone_numberable_type, '=', phone_number.record.phone_numberable_id); + self.log:notice('FUNCTION_INTERCEPT_ANY_NUMBER - numberable not found: ', phone_number.record.phone_numberable_type, '=', phone_number.record.phone_numberable_id); return { continue = false, code = 404, phrase = 'Destination not found', no_cdr = true }; end |