Fix "o'clock" from being said twice in French. #6900 (casper)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24640 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
BJ Weschke 2006-05-03 22:53:38 +00:00
parent 8ce9bec4ce
commit 326c82e1c4
1 changed files with 0 additions and 5 deletions

5
say.c
View File

@ -4082,11 +4082,6 @@ int ast_say_date_with_format_fr(struct ast_channel *chan, time_t time, const cha
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;