Changeset 6314
- Timestamp:
- 08/09/08 22:05:55 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php
r6210 r6314 190 190 if(isset($this->_globals) && is_array($this->_globals)){ 191 191 $output .= "[globals]\n"; 192 $output .= "#include globals_custom.conf\n";193 192 foreach (array_keys($this->_globals) as $global) { 194 193 $output .= $global." = ".$this->_globals[$global]."\n"; 195 194 } 196 $output .= "\n\n;end of [globals]\n\n\n"; 195 $output .= "#include globals_custom.conf\n"; 196 $output .= "\n;end of [globals]\n\n"; 197 197 } 198 198
