- Timestamp:
- 08/01/11 01:07:25 (2 years ago)
- Files:
-
- modules/branches/2.10/cdr/functions.inc.php (modified) (1 diff)
- modules/branches/2.10/cdr/module.xml (modified) (2 diffs)
- modules/branches/2.10/cdr/page.cdr.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.10/cdr/functions.inc.php
r12334 r12339 16 16 // 17 17 // cdr module for FreePBX 2.7+ 18 // Copyright (C) 2011 Igor Okunev n18 // Copyright (C) 2011 Igor Okunev 19 19 // Portions Copyright (C) 2011 Mikael Carlsson 20 20 // Portions Copyright (C) 2006 Seth Sargent, Steven Ward modules/branches/2.10/cdr/module.xml
r12336 r12339 4 4 <description>Call Data Record report tools for vieweing reports of your calls</description> 5 5 <name>CDR Viewer</name> 6 <version>2.10.0.alpha 5</version>6 <version>2.10.0.alpha6</version> 7 7 <publisher>Mikael Carlsson</publisher> 8 8 <license>GPLv2+</license> … … 13 13 </menuitems> 14 14 <changelog> 15 *2.10.0.alpha6* Bug fix in recordings settings 15 16 *2.10.0.alpha5* Added localization 16 17 *2.10.0.alpha4* Added csv export modules/branches/2.10/cdr/page.cdr.php
r12338 r12339 18 18 // 19 19 // cdr module for FreePBX 2.7+ 20 // Copyright (C) 2011 Igor Okunev n20 // Copyright (C) 2011 Igor Okunev 21 21 // Portions Copyright (C) Mikael Carlsson 22 22 … … 27 27 $db_name = !empty($amp_conf['CDRDBNAME'])?$amp_conf['CDRDBNAME']:"asteriskcdrdb"; 28 28 $db_table_name = !empty($amp_conf['CDRDBTABLENAME'])?$amp_conf['CDRTABLENAME']:"cdr"; 29 $system_monitor_dir = isset($amp_conf['ASTSPOOLDIR'])?$amp_conf['ASTSPOOLDIR'] :"/monitor";29 $system_monitor_dir = isset($amp_conf['ASTSPOOLDIR'])?$amp_conf['ASTSPOOLDIR']."/monitor":"/var/spool/asterisk/monitor"; 30 30 31 31 /* $system_fax_archive_dir is the directory where sent/received fax images are stored */
