[Freeswitch-svn] [commit] r3790 - freeswitch/trunk/src/mod/say/mod_say_en

Freeswitch SVN mikej at freeswitch.org
Thu Dec 21 17:48:26 EST 2006


Author: mikej
Date: Thu Dec 21 17:48:25 2006
New Revision: 3790

Modified:
   freeswitch/trunk/src/mod/say/mod_say_en/mod_say_en.c

Log:
fix it to say thousand for the hundred thousands place.

Modified: freeswitch/trunk/src/mod/say/mod_say_en/mod_say_en.c
==============================================================================
--- freeswitch/trunk/src/mod/say/mod_say_en/mod_say_en.c	(original)
+++ freeswitch/trunk/src/mod/say/mod_say_en/mod_say_en.c	Thu Dec 21 17:48:25 2006
@@ -96,7 +96,7 @@
 					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);
 				}
 



More information about the Freeswitch-svn mailing list