aboutsummaryrefslogtreecommitdiffstats
path: root/say.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-02 17:58:25 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-02 17:58:25 +0000
commitd161ae4af94e1e8112643e14b7d658b407e15299 (patch)
tree11160024e5f0d7fc5c5bd28b30b096ac6386a977 /say.c
parent02d86bad977559c9a644599fd030bce2de0b5f6d (diff)
Fix an issue with playing "oclock" multiple times in French with 24 hour time format.
Issue 10101 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@72924 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'say.c')
-rw-r--r--say.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/say.c b/say.c
index a20e325af..a82720cf7 100644
--- a/say.c
+++ b/say.c
@@ -4081,11 +4081,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;