[svn-commits] tilghman: trunk r38762 - in /trunk: ./
apps/app_voicemail.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Wed Aug 2 22:24:43 MST 2006
Author: tilghman
Date: Thu Aug 3 00:24:43 2006
New Revision: 38762
URL: http://svn.digium.com/view/asterisk?rev=38762&view=rev
Log:
Merged revisions 38761 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r38761 | tilghman | 2006-08-03 00:22:19 -0500 (Thu, 03 Aug 2006) | 2 lines
Bug 7648 - Checking wrong count for plurality on new messages for Dutch language
........
Modified:
trunk/ (props changed)
trunk/apps/app_voicemail.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?rev=38762&r1=38761&r2=38762&view=diff
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Thu Aug 3 00:24:43 2006
@@ -4546,7 +4546,7 @@
if (vms->newmessages) {
res = say_and_wait(chan, vms->newmessages, chan->language);
if (!res) {
- if (vms->oldmessages == 1)
+ if (vms->newmessages == 1)
res = ast_play_and_wait(chan, "vm-INBOXs");
else
res = ast_play_and_wait(chan, "vm-INBOX");
More information about the svn-commits
mailing list