[Phpslash-commit] CVS: phpslash-ft/class MailingList.class,1.6,1.7
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2002-01-07 15:55:32
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory usw-pr-cvs1:/tmp/cvs-serv27896/phpslash-ft/class Modified Files: MailingList.class Log Message: pslgetText typo Index: MailingList.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/MailingList.class,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MailingList.class 2001/12/19 20:00:41 1.6 --- MailingList.class 2002/01/07 15:44:20 1.7 *************** *** 205,213 **** if ($this->db->next_record()) { if ($this->db->Record["email"] != $email) { ! $this->message = sprintf(psgetText("The email address '%s' is not found"), $email); $ok = false; } } else { ! $this->message = sprintf(psgetText("Email: '%s' is not found"), $email); $ok = false; } --- 205,213 ---- if ($this->db->next_record()) { if ($this->db->Record["email"] != $email) { ! $this->message = sprintf(pslgetText("The email address '%s' is not found"), $email); $ok = false; } } else { ! $this->message = sprintf(pslgetText("Email: '%s' is not found"), $email); $ok = false; } *************** *** 220,224 **** WHERE id = '$id'"; $this->db->query($q); ! $this->message = sprintf(psgetText("Email: '%s' has been removed"), $email);; // send confirmation email --- 220,224 ---- WHERE id = '$id'"; $this->db->query($q); ! $this->message = sprintf(pslgetText("Email: '%s' has been removed"), $email);; // send confirmation email |