From: Michael Jerris Date: Thu, 21 Dec 2006 22:48:25 +0000 (+0000) Subject: fix it to say thousand for the hundred thousands place. X-Git-Tag: v1.0-beta1~1470 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7ee2c813860aa5a1e1573cdb24e7d0ca3165372;p=thirdparty%2Ffreeswitch.git 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 --- 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); }