From: Lo?c C. <lo...@us...> - 2001-05-24 14:26:35
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv14983/chat Modified Files: profile_remind.php3 profile_reg.php3 Log Message: PHPMYMAILER order were inversed Index: profile_remind.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_remind.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** profile_remind.php3 2001/05/16 20:54:32 1.1 --- profile_remind.php3 2001/05/24 14:26:32 1.2 *************** *** 132,136 **** include('./lib/mailer.lib.' . C_EXTENSION); } ! $mailHandler = new PHPMYMAILER(C_REG_SENDER, C_REG_EMAIL); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); --- 132,136 ---- include('./lib/mailer.lib.' . C_EXTENSION); } ! $mailHandler = new PHPMYMAILER(C_REG_EMAIL, C_REG_SENDER); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); Index: profile_reg.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** profile_reg.php3 2001/05/22 20:40:34 1.13 --- profile_reg.php3 2001/05/24 14:26:32 1.14 *************** *** 192,196 **** if (!defined('_LIB_PHPMYMAILER_LOADED')) include('./lib/mailer.lib.' . C_EXTENSION); ! $mailHandler = new PHPMYMAILER(C_REG_SENDER, C_REG_EMAIL); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); --- 192,196 ---- if (!defined('_LIB_PHPMYMAILER_LOADED')) include('./lib/mailer.lib.' . C_EXTENSION); ! $mailHandler = new PHPMYMAILER(C_REG_EMAIL, C_REG_SENDER); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); |