Backwards comptability for these channel variables
- vm_say_caller_id_number - vm_say_date_time
This commit is contained in:
parent
4c29c3c4cf
commit
9ef904fed1
|
|
@ -187,9 +187,7 @@
|
|||
if (settings['voicemail']['message_caller_id_number']['text'] ~= nil) then
|
||||
vm_say_caller_id_number = settings['voicemail']['message_caller_id_number']['text'];
|
||||
end
|
||||
end
|
||||
else
|
||||
vm_say_caller_id_number = "before";
|
||||
end;
|
||||
end
|
||||
|
||||
if (not vm_say_date_time) then
|
||||
|
|
@ -198,7 +196,13 @@
|
|||
vm_say_date_time = settings['voicemail']['message_date_time']['text'];
|
||||
end
|
||||
end
|
||||
else
|
||||
end
|
||||
|
||||
if (not vm_say_caller_id_number) then
|
||||
vm_say_caller_id_number = "before";
|
||||
end
|
||||
|
||||
if (not vm_say_date_time) then
|
||||
vm_say_date_time = "before";
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue