Changeset 4291
- Timestamp:
- 07/01/07 07:16:51 (1 year ago)
- Files:
-
- modules/branches/2.3/core/agi-bin/directory (modified) (2 diffs)
- modules/branches/2.3/core/agi-bin/fixlocalprefix (modified) (2 diffs)
- modules/branches/2.3/core/agi-bin/list-item-remove.php (modified) (1 diff)
- modules/branches/2.3/core/agi-bin/recordingcheck (modified) (1 diff)
- modules/branches/2.3/core/module.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3/core/agi-bin/directory
r4275 r4291 25 25 */ 26 26 27 define("AGIBIN_DIR", dirname(__FILE__)); 27 // TODO: These are all hardcoded, means we are going to have to parse! 28 // or maybe retrieve_conf can special handle them at cp time. 29 // 30 28 31 define("DIRECTORY_FILE", "/etc/asterisk/voicemail.conf"); 29 32 … … 62 65 define("D_STAR",42); 63 66 64 include( AGIBIN_DIR."/phpagi.php");67 include("phpagi.php"); 65 68 66 69 function output(&$var) { modules/branches/2.3/core/agi-bin/fixlocalprefix
r4275 r4291 20 20 * If you modify it, you must change it to write only, in the agi-bin directory, 21 21 * to keep it from getting changed. 22 */23 22 24 23 … … 77 76 */ 78 77 79 define("AGIBIN_DIR", "/var/lib/asterisk/agi-bin"); 78 // TODO: Hardcoded path, this needs removing (means we need to parse amprotal.conf or change where these are stored! 79 // or maybe retrieve_conf can special handle them at install time. 80 // 80 81 define("LOCALPREFIX_FILE", "/etc/asterisk/localprefixes.conf"); 81 82 82 include( AGIBIN_DIR."/phpagi.php");83 include("phpagi.php"); 83 84 84 85 function parse_conf($filename, &$conf, &$section) { modules/branches/2.3/core/agi-bin/list-item-remove.php
r4275 r4291 20 20 */ 21 21 22 define("AGIBIN_DIR", dirname(__FILE__)); 23 24 include(AGIBIN_DIR."/phpagi.php"); 22 include("phpagi.php"); 25 23 26 24 $agi = new AGI; modules/branches/2.3/core/agi-bin/recordingcheck
r4275 r4291 25 25 */ 26 26 27 define("AGIBIN_DIR", "/var/lib/asterisk/agi-bin");28 27 29 include( AGIBIN_DIR."/phpagi.php");28 include("phpagi.php"); 30 29 31 30 modules/branches/2.3/core/module.xml
r4280 r4291 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.3.0beta1. 4</version>6 <version>2.3.0beta1.5</version> 7 7 <candisable>no</candisable> 8 8 <changelog> 9 *2.3.0beta1.5* #2041, fix typo introduced in 2.3.0beta1.4 resultingin fixlocalprefix breaking 9 10 *2.3.0beta1.4* #1522 DeadAGI back to AGI, fixed Trunk Dial Rules tooltip, added wanrnings comments to agi-bin scripts 10 11 *2.3.0beta1.3* #1633 proper display after deleting, #1747 add South Africa to indications.conf, #2024 can't edit exten with directdid set
