]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
move enum to the bottom of default.
authorBrian West <brian@freeswitch.org>
Wed, 8 Sep 2010 16:57:57 +0000 (11:57 -0500)
committerBrian West <brian@freeswitch.org>
Wed, 8 Sep 2010 16:57:57 +0000 (11:57 -0500)
conf/dialplan/default.xml
conf/dialplan/default/99999_enum.xml [deleted file]

index 9862eed711225d7fdbb041e21e33350c4d90f16c..8abb8d834845b1e938bd52986a9684ea32833ee1 100644 (file)
     -->
     <X-PRE-PROCESS cmd="include" data="default/*.xml"/>
     
-    <!--
-       WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
-       
-       Anything you put below this line will usually get ignored due to the file in 
-       default/99999_enum.xml as it will transfer the call to the enum dialplan.
-
-       WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
-    -->
-
     <!--
     <extension name="refer">
       <condition field="${sip_refer_to}">
     </extension>
     -->
 
-    <!-- SEE WARNING ABOVE IF YOU ARE TRYING TO ADD EXTENSIONS HERE! -->
+    <extension name="enum">
+      <condition field="${module_exists(mod_enum)}" expression="true"/>
+      <condition field="destination_number" expression="^(.*)$">
+       <action application="transfer" data="$1 enum"/>
+      </condition>
+    </extension>
 
   </context>
 </include>
diff --git a/conf/dialplan/default/99999_enum.xml b/conf/dialplan/default/99999_enum.xml
deleted file mode 100644 (file)
index 6fd2151..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<include>
-  <extension name="enum">
-    <condition field="${module_exists(mod_enum)}" expression="true"/>
-    <condition field="destination_number" expression="^(.*)$">
-      <action application="transfer" data="$1 enum"/>
-    </condition>
-  </extension>
-</include>