From: Anthony Minessale Date: Wed, 28 Aug 2013 16:25:35 +0000 (+0500) Subject: FS-5734 documentation will need to be updated to request languages instead of phrases X-Git-Tag: v1.5.5~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b8a1337d6d4177dcff99b7f3ec0581b8666a034;p=thirdparty%2Ffreeswitch.git FS-5734 documentation will need to be updated to request languages instead of phrases --- diff --git a/src/include/switch_types.h b/src/include/switch_types.h index 04bec8c27a..006050bdc8 100644 --- a/src/include/switch_types.h +++ b/src/include/switch_types.h @@ -538,7 +538,7 @@ typedef enum { SWITCH_XML_SECTION_CONFIG = (1 << 0), SWITCH_XML_SECTION_DIRECTORY = (1 << 1), SWITCH_XML_SECTION_DIALPLAN = (1 << 2), - SWITCH_XML_SECTION_PHRASES = (1 << 3), + SWITCH_XML_SECTION_LANGUAGES = (1 << 3), SWITCH_XML_SECTION_CHATPLAN = (1 << 4), /* Nothing after this line */ diff --git a/src/switch_xml.c b/src/switch_xml.c index fcb98dcb74..d82435dd3f 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -200,7 +200,7 @@ static struct xml_section_t SECTIONS[] = { {"config", SWITCH_XML_SECTION_CONFIG}, {"directory", SWITCH_XML_SECTION_DIRECTORY}, {"dialplan", SWITCH_XML_SECTION_DIALPLAN}, - {"phrases", SWITCH_XML_SECTION_PHRASES}, + {"languages", SWITCH_XML_SECTION_LANGUAGES}, {"chatplan", SWITCH_XML_SECTION_CHATPLAN}, {NULL, 0} };