aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 14:54:01 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 14:54:01 +0000
commit540d742798b07f07e21e6c1ac9adddb9e1fed523 (patch)
treeb3dae75849e630d7ba74f4aabb4643384325886a /apps
parentd64073e9e93533daed023666948d03b42042fa46 (diff)
Merged revisions 114027 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r114027 | file | 2008-04-10 11:53:19 -0300 (Thu, 10 Apr 2008) | 6 lines Don't hardcode ru into the digits filename so that languageprefix can work. (closes issue #12404) Reported by: IgorG Patches: voicemail_ru_hardcoded-v1.patch uploaded by IgorG (license 20) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@114028 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index a949856bd..6e8223874 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -6125,7 +6125,7 @@ static int vm_intro_ru(struct ast_channel *chan, struct vm_state *vms)
res = say_and_wait(chan, dcnum, chan->language);
if (!res && lastnum) {
if (lastnum == 1)
- res = ast_play_and_wait(chan, "digits/ru/odno");
+ res = ast_play_and_wait(chan, "digits/odno");
else
res = say_and_wait(chan, lastnum, chan->language);
}
@@ -6144,7 +6144,7 @@ static int vm_intro_ru(struct ast_channel *chan, struct vm_state *vms)
res = say_and_wait(chan, dcnum, chan->language);
if (!res && lastnum) {
if (lastnum == 1)
- res = ast_play_and_wait(chan, "digits/ru/odno");
+ res = ast_play_and_wait(chan, "digits/odno");
else
res = say_and_wait(chan, lastnum, chan->language);
}