[Vtigercrm-commits] [vtiger-commits] r10810 - in /vtigercrm/branches/5.0.3: config.template.php install/4createConfigFile.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Sat Apr 28 08:18:46 EDT 2007


Author: richie
Date: Sat Apr 28 06:18:40 2007
New Revision: 10810

Log:
fix for installation error Parse error: syntax error, unexpected '@' in /home/bharathi/apache2/htdocs/Bharathi/builds/apr_28/vtigercrm/config.inc.php on line 34. --minnie

Modified:
    vtigercrm/branches/5.0.3/config.template.php
    vtigercrm/branches/5.0.3/install/4createConfigFile.php

Modified: vtigercrm/branches/5.0.3/config.template.php
==============================================================================
--- vtigercrm/branches/5.0.3/config.template.php (original)
+++ vtigercrm/branches/5.0.3/config.template.php Sat Apr 28 06:18:40 2007
@@ -31,7 +31,7 @@
 $PORTAL_URL = 'http://vtiger.com/customerportal';
 
 // helpdesk support email id and support name (Example: 'support at vtiger.com' and 'vtiger support')
-$HELPDESK_SUPPORT_EMAIL_ID = '_SUPPORT_EMAIL_';
+$HELPDESK_SUPPORT_EMAIL_ID = '_USER_SUPPORT_EMAIL_';
 $HELPDESK_SUPPORT_NAME = 'your-support name';
 
 /* database configuration

Modified: vtigercrm/branches/5.0.3/install/4createConfigFile.php
==============================================================================
--- vtigercrm/branches/5.0.3/install/4createConfigFile.php (original)
+++ vtigercrm/branches/5.0.3/install/4createConfigFile.php Sat Apr 28 06:18:40 2007
@@ -222,7 +222,7 @@
 						      	/* replace the application unique key variable */
 					      		$buffer = str_replace( "_VT_APP_UNIQKEY_", md5($root_directory), $buffer);
 							/* replace support email variable */
-							$buffer = str_replace( "_SUPPORT_EMAIL_", $admin_email, $buffer);
+							$buffer = str_replace( "_USER_SUPPORT_EMAIL_", $admin_email, $buffer);
 
 					      		fwrite($includeHandle, $buffer);
 					      		}





More information about the vtigercrm-commits mailing list