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
This commit is contained in:
Michael Jerris 2006-12-21 22:48:25 +00:00
parent 431ae09c25
commit f7ee2c8138
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}