[thirdparty-commits] russell: mantis/trunk r135 - /mantis/trunk/core/license_api.php
SVN commits to the Digium third-party software repository
thirdparty-commits at lists.digium.com
Fri Oct 2 17:10:35 CDT 2009
Author: russell
Date: Fri Oct 2 17:10:31 2009
New Revision: 135
URL: http://svnview.digium.com/svn/thirdparty?view=rev&rev=135
Log:
quote csv data
Modified:
mantis/trunk/core/license_api.php
Modified: mantis/trunk/core/license_api.php
URL: http://svnview.digium.com/svn/thirdparty/mantis/trunk/core/license_api.php?view=diff&rev=135&r1=134&r2=135
==============================================================================
--- mantis/trunk/core/license_api.php (original)
+++ mantis/trunk/core/license_api.php Fri Oct 2 17:10:31 2009
@@ -270,7 +270,7 @@
foreach($t_all as $t_row) {
for($i = 0; $i < $t_loops; $i++) {
- echo $t_row[$i] . $t_sep;
+ echo '"' . $t_row[$i] . '"' . $t_sep;
}
echo $t_row[$i++]; # last element without trailing comma
echo $t_nl;
More information about the thirdparty-commits
mailing list