Changeset 5317
- Timestamp:
- 11/28/07 11:45:34 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php
r5243 r5317 94 94 function addInclude($section, $incsection) { 95 95 $this->_includes[$section][] = $incsection; 96 } 97 98 function addExec($section, $incsection) { 99 $this->_exec[$section][] = $incsection; 96 100 } 97 101 … … 183 187 foreach ($this->_includes[$section] as $include) { 184 188 $output .= "include => ".$include."\n"; 189 } 190 } 191 192 //add requested #exec scripts for this context 193 if (isset($this->_exec[$section])) { 194 foreach ($this->_exec[$section] as $include) { 195 $output .= "#exec ".$include."\n"; 185 196 } 186 197 } freepbx/trunk/amp_conf/htdocs/admin/functions.inc.php
r5293 r5317 54 54 'DEVELRELOAD' => array('bool' , false), 55 55 'CUSTOMASERROR' => array('bool' , false), 56 'DYNAMICHINTS' => array('bool' , false), 56 57 ); 57 58
