From f7ee2c813860aa5a1e1573cdb24e7d0ca3165372 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Thu, 21 Dec 2006 22:48:25 +0000 Subject: [PATCH] fix it to say thousand for the hundred thousands place. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3790 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/say/mod_say_en/mod_say_en.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/say/mod_say_en/mod_say_en.c b/src/mod/say/mod_say_en/mod_say_en.c index 14c6bd3b13..79e15837f6 100644 --- a/src/mod/say/mod_say_en/mod_say_en.c +++ b/src/mod/say/mod_say_en/mod_say_en.c @@ -96,7 +96,7 @@ static switch_status_t en_say(switch_core_session_t *session, switch_ivr_play_file(session, NULL, tmp, NULL, input_callback, buf, buflen); } - if (places[4] || places[3]) { + if (places[5] || places[4] || places[3]) { switch_ivr_play_file(session, NULL, "digits/thousand.wav", NULL, input_callback, buf, buflen); }