From 6ad173485a7e7da1e300666f59e594eceba33dfb Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 27 Jul 2009 17:03:12 +0000 Subject: [PATCH] add min of day to time rules git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14379 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c index 39b454039a..c5c3bb4950 100644 --- a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c +++ b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c @@ -74,7 +74,7 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t * const char *xwday = switch_xml_attr(xcond, "wday"); const char *xhour = switch_xml_attr(xcond, "hour"); const char *xminute = switch_xml_attr(xcond, "minute"); - const char *xminday = switch_xml_attr(xcond, "minute_of_day"); + const char *xminday = switch_xml_attr(xcond, "minute-of-day"); switch_time_t ts = switch_micro_time_now(); int time_match = -1; switch_time_exp_t tm;