[asterisk-commits] qwell: branch 1.2 r72924 - /branches/1.2/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 2 12:58:26 CDT 2007
Author: qwell
Date: Mon Jul 2 12:58:25 2007
New Revision: 72924
URL: http://svn.digium.com/view/asterisk?view=rev&rev=72924
Log:
Fix an issue with playing "oclock" multiple times in French with 24 hour time format.
Issue 10101
Modified:
branches/1.2/say.c
Modified: branches/1.2/say.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/say.c?view=diff&rev=72924&r1=72923&r2=72924
==============================================================================
--- branches/1.2/say.c (original)
+++ branches/1.2/say.c Mon Jul 2 12:58:25 2007
@@ -4081,11 +4081,6 @@
case 'k':
/* 24-Hour */
res = ast_say_number(chan, tm.tm_hour, ints, lang, (char * ) NULL);
- if (!res) {
- if (format[offset] == 'H') {
- res = wait_file(chan,ints, "digits/oclock",lang);
- }
- }
if (!res)
res = wait_file(chan,ints, "digits/oclock",lang);
break;
More information about the asterisk-commits
mailing list