[Vtigercrm-commits] [vtiger-commits] r5496 - /vtigercrm/trunk/include/utils/export.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Thu Apr 27 11:08:00 EDT 2006


Author: saraj
Date: Thu Apr 27 09:07:54 2006
New Revision: 5496

Log:
log entries have been inserted in all functions

Modified:
    vtigercrm/trunk/include/utils/export.php

Modified: vtigercrm/trunk/include/utils/export.php
==============================================================================
--- vtigercrm/trunk/include/utils/export.php (original)
+++ vtigercrm/trunk/include/utils/export.php Thu Apr 27 09:07:54 2006
@@ -72,7 +72,10 @@
 */
 function br2nl_vt($str) 
 {
+	global $log;
+	$log->debug("Entering br2nl_vt(".$str.") method ...");
 	$str = preg_replace("/(\r\n)/", " ", $str);
+	$log->debug("Exiting br2nl_vt method ...");
 	return $str;
 }
 
@@ -82,6 +85,8 @@
 */
 function export_all($type)
 {
+	global $log;
+	$log->debug("Entering export_all(".$type.") method ...");
 	$contact_fields = Array();
 	$account_fields = Array();
 	global $adb;
@@ -173,6 +178,7 @@
 		$line .= "\"\r\n";
 		$content .= $line;
 	}
+	$log->debug("Exiting export_all method ...");
 	return $content;
 	
 }





More information about the vtigercrm-commits mailing list