|
From: <abe...@us...> - 2009-12-22 18:11:07
|
Revision: 3585
http://astlinux.svn.sourceforge.net/astlinux/?rev=3585&view=rev
Author: abelbeck
Date: 2009-12-22 18:10:53 +0000 (Tue, 22 Dec 2009)
Log Message:
-----------
Fix a CDR Log tab issue when the Master.csv ${CDR(lastdata)} field contains a comma ','
only an issue with asterisk 1.6
Modified Paths:
--------------
branches/0.7/package/webinterface/altweb/admin/cdrlog.php
branches/0.7/package/webinterface/altweb/common/version.php
Modified: branches/0.7/package/webinterface/altweb/admin/cdrlog.php
===================================================================
--- branches/0.7/package/webinterface/altweb/admin/cdrlog.php 2009-12-22 18:09:07 UTC (rev 3584)
+++ branches/0.7/package/webinterface/altweb/admin/cdrlog.php 2009-12-22 18:10:53 UTC (rev 3585)
@@ -81,7 +81,7 @@
if (($n = getMAPlast($default, $last)) !== FALSE) {
$map["$last"] = $n;
}
- $map['commasafe'] = 6;
+ $map['commasafe'] = 8;
} else {
$map['time'] = 9;
$map['cid'] = 4;
@@ -96,7 +96,7 @@
if (($n = getMAPlast($default, $last)) !== FALSE) {
$map["$last"] = $n;
}
- $map['commasafe'] = 7;
+ $map['commasafe'] = 9;
}
return($map);
}
Modified: branches/0.7/package/webinterface/altweb/common/version.php
===================================================================
--- branches/0.7/package/webinterface/altweb/common/version.php 2009-12-22 18:09:07 UTC (rev 3584)
+++ branches/0.7/package/webinterface/altweb/common/version.php 2009-12-22 18:10:53 UTC (rev 3585)
@@ -1,6 +1,6 @@
<?php
// version.php for AstLinux Alternate Web Interface
-$GUI_VERSION = '1.6.06';
+$GUI_VERSION = '1.6.07';
?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|