From: Lo?c C. <lo...@us...> - 2001-05-24 14:27:32
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv15178/chat Modified Files: profile_edit.php3 Log Message: PHPMYMAILER order were inversed & display message about new password the same way than in profile_reg.php3 Index: profile_edit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** profile_edit.php3 2001/05/23 21:41:46 1.11 --- profile_edit.php3 2001/05/24 14:27:29 1.12 *************** *** 192,196 **** include('./lib/mailer.lib.' . C_EXTENSION); } ! $mailHandler = new PHPMYMAILER(C_REG_SENDER, C_REG_EMAIL); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); --- 192,196 ---- include('./lib/mailer.lib.' . C_EXTENSION); } ! $mailHandler = new PHPMYMAILER(C_REG_EMAIL, C_REG_SENDER); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); *************** *** 311,315 **** </tr> <tr> ! <th colspan="2"><?php if (!$isRegDone) echo(L_REG_37); ?></th> </tr> <tr><td> </td></tr> --- 311,315 ---- </tr> <tr> ! <th colspan="2"><?php if (!$isRegDone) echo(L_REG_37); else if (C_EMAIL_PASWD) echo(L_EMAIL_VAL_DONE); ?></th> </tr> <tr><td> </td></tr> *************** *** 351,363 **** <?php if (!$isRegDone) echo('<span class="error">*</span>'); ?> </td> - </tr> - <?php - } - else - { - echo("\n"); - ?> - <tr> - <td align="center" valign="middle" colspan="2"><i><?php echo(L_EMAIL_VAL_DONE); ?></i></td> </tr> <?php --- 351,354 ---- |