Changeset 1227
- Timestamp:
- 03/22/06 18:42:50 (7 years ago)
- Files:
-
- freepbx/branch/ivr-rewrite (modified) (1 prop)
- freepbx/branch/ivr-rewrite/amp_conf/agi-bin/dialparties.agi.php (copied) (copied from freepbx/trunk/amp_conf/agi-bin/dialparties.agi.php)
- freepbx/branch/ivr-rewrite/amp_conf/astetc/extensions.conf (modified) (2 diffs)
- freepbx/branch/ivr-rewrite/amp_conf/htdocs/admin/config.php (modified) (2 diffs)
- freepbx/branch/ivr-rewrite/amp_conf/htdocs/admin/modules/core/page.did.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branch/ivr-rewrite
- Property svnmerge-integrated changed from /freepbx/trunk:1-1206,1210,1212-1216 to /freepbx/trunk:1-1206,1210,1212-1226
freepbx/branch/ivr-rewrite/amp_conf/astetc/extensions.conf
r1212 r1227 188 188 ; arg1 = trunk number, arg2 = number, arg3 = route password 189 189 [macro-dialout-trunk] 190 exten => s,1,GotoIf($["${ARG3}" = ""]?3:2) ); arg3 is pattern password190 exten => s,1,GotoIf($["${ARG3}" = ""]?3:2) ; arg3 is pattern password 191 191 exten => s,2,Authenticate(${ARG3}) 192 192 exten => s,3,Macro(user-callerid) … … 194 194 exten => s,5,Macro(outbound-callerid,${ARG1}) 195 195 exten => s,6,Set(GROUP()=OUT_${ARG1}) 196 exten => s,7,GotoIf($[ ${GROUP_COUNT()} > ${OUTMAXCHANS_${ARG1} ]?108)196 exten => s,7,GotoIf($[ ${GROUP_COUNT()} > ${OUTMAXCHANS_${ARG1}} ]?108) 197 197 ; if we've used up the max channels, continue at (n+101) 198 198 exten => s,8,Set(DIAL_NUMBER=${ARG2}) freepbx/branch/ivr-rewrite/amp_conf/htdocs/admin/config.php
r1216 r1227 130 130 131 131 132 132 // add the APPLY Changes bar as a section, so it shows in the Administrators module 133 $amp_sections[99] = _("Apply Changes Bar"); 134 133 135 foreach ($amp_sections as $key=>$value) { 134 136 // check access … … 172 174 if (is_array($active_modules)) { 173 175 foreach ($active_modules as $modkey => $module) { 174 if (is_array( array_keys($module['items']))){176 if (is_array($module['items'])){ 175 177 foreach (array_keys($module['items']) as $item){ 176 178 if ($display == $item) { freepbx/branch/ivr-rewrite/amp_conf/htdocs/admin/modules/core/page.did.php
r1201 r1227 218 218 219 219 defaultEmptyOK = true; 220 if (!isInteger(theForm.extension.value)) 221 return warnInvalid(theForm.extension, msgInvalidDIDNumb); 220 // Note, DID's can contain *'s, #'s, strings, anything. VSP's are wierd like that. 221 // if (!isInteger(theForm.extension.value)) 222 // return warnInvalid(theForm.extension, msgInvalidDIDNumb); 222 223 223 224 if (!isInteger(theForm.cidnum.value))
