is available through the Asterisk-CVS mailing list hosted
at http://lists.digium.com.
+ -- chan_zap
+ -- Asterisk will now also look in the regular context for the fax extension while
+ executing a macro. Previously, for this to work, the fax extension would have
+ to be included in the macro definition.
+ -- general
+ -- A problem has been fixed with saying the date in Spanish.
+
Asterisk 1.0.7
-- chan_sip
case 'H':
case 'k':
/* 24-Hour */
- res = ast_say_number(chan, -tm.tm_hour, ints, lang, NULL);
- if (!res) {
- if (tm.tm_hour != 0) {
- int remainder = tm.tm_hour;
- if (tm.tm_hour > 20) {
- res = wait_file(chan,ints, "digits/20",lang);
- remainder -= 20;
- }
- if (!res) {
- snprintf(nextmsg,sizeof(nextmsg), "digits/%d", remainder);
- res = wait_file(chan,ints,nextmsg,lang);
- }
- }
- }
+ res = ast_say_number(chan, tm.tm_hour, ints, lang, NULL);
break;
case 'M':
/* Minute */