[Vtigercrm-commits] [vtiger-commits] r4071 - /vtigercrm/trunk/modules/Dashboard/display_charts.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed Mar 8 01:19:55 EST 2006


Author: saraj
Date: Tue Mar  7 23:19:46 2006
New Revision: 4071

Log:
parse error has been fixed

Modified:
    vtigercrm/trunk/modules/Dashboard/display_charts.php

Modified: vtigercrm/trunk/modules/Dashboard/display_charts.php
==============================================================================
--- vtigercrm/trunk/modules/Dashboard/display_charts.php (original)
+++ vtigercrm/trunk/modules/Dashboard/display_charts.php Tue Mar  7 23:19:46 2006
@@ -348,11 +348,11 @@
 {
 
 	//Checks whether the cached image is present or not
-	if(file_exists($cahce_file_name)
+	if(file_exists($cahce_file_name))
 	{
 		unlink($cache_file_name);
 	}
-	if(file_exists($cache_file_name.'.map')
+	if(file_exists($cache_file_name.'.map'))
 	{
 		unlink($cache_file_name.'.map');
 	}	





More information about the vtigercrm-commits mailing list