[Vtigercrm-commits] [vtiger-commits] r10378 - in /vtigercrm/branches/5.0.3: cron/class.phpmailer.php modules/Emails/class.phpmailer.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Wed Mar 7 04:45:10 EST 2007
Author: saraj
Date: Wed Mar 7 02:45:01 2007
New Revision: 10378
Log:
fix for unexpected T_VARIABLE at line no 37 --Minnie
Modified:
vtigercrm/branches/5.0.3/cron/class.phpmailer.php
vtigercrm/branches/5.0.3/modules/Emails/class.phpmailer.php
Modified: vtigercrm/branches/5.0.3/cron/class.phpmailer.php
==============================================================================
--- vtigercrm/branches/5.0.3/cron/class.phpmailer.php (original)
+++ vtigercrm/branches/5.0.3/cron/class.phpmailer.php Wed Mar 7 02:45:01 2007
@@ -17,7 +17,6 @@
* @author Brent R. Matzelle
* @copyright 2001 - 2003 Brent R. Matzelle
*/
-global $app_strings;
class PHPMailer
{
/////////////////////////////////////////////////
@@ -34,7 +33,7 @@
* Sets the CharSet of the message.
* @var string
*/
- var $CharSet = $app_strings['LBL_CHARSET'];
+ var $CharSet = "iso-8859-1";
/**
* Sets the Content-type of the message.
Modified: vtigercrm/branches/5.0.3/modules/Emails/class.phpmailer.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Emails/class.phpmailer.php (original)
+++ vtigercrm/branches/5.0.3/modules/Emails/class.phpmailer.php Wed Mar 7 02:45:01 2007
@@ -17,7 +17,6 @@
* @author Brent R. Matzelle
* @copyright 2001 - 2003 Brent R. Matzelle
*/
-global $app_strings;
class PHPMailer
{
/////////////////////////////////////////////////
@@ -34,7 +33,7 @@
* Sets the CharSet of the message.
* @var string
*/
- var $CharSet = $app_strings['LBL_CHARSET'];
+ var $CharSet = "iso-8859-1";
/**
* Sets the Content-type of the message.
More information about the vtigercrm-commits
mailing list