Update of /cvsroot/phpslash/phpslash-ft/class
In directory usw-pr-cvs1:/tmp/cvs-serv31506/phpslash-ft/class
Modified Files:
MailingList.class functions.inc
Log Message:
functions.inc - pslgetText spits out HTMLed strings, several files changed to support this feature
Index: MailingList.class
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/class/MailingList.class,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MailingList.class 2001/12/14 12:33:39 1.5
--- MailingList.class 2001/12/19 20:00:41 1.6
***************
*** 188,192 ****
$this->message = pslgetText("Thank you. You will receive a confirmation email soon to verify your subscription.");
} else {
! $this->message = pslgetText("You have been successfully subscribed, but there was a problem sending your confirmation email.<br>You should, however receive your newsletter soon.");
}
}
--- 188,192 ----
$this->message = pslgetText("Thank you. You will receive a confirmation email soon to verify your subscription.");
} else {
! $this->message = pslgetText("You have been successfully subscribed, but there was a problem sending your confirmation email. You should, however receive your newsletter soon.");
}
}
***************
*** 226,230 ****
$this->message = pslgetText("Thank you. for your subscription to our site. If there is anything we can do to improve our service, please let us know!");
} else {
! $this->message = pslgetText("You've been removed from the mailing list, but there was a problem sending out the <B>final</B> email.");
} // end confirmation if
} // end 'ok' if
--- 226,230 ----
$this->message = pslgetText("Thank you. for your subscription to our site. If there is anything we can do to improve our service, please let us know!");
} else {
! $this->message = pslgetText("You've been removed from the mailing list, but there was a problem sending out the final email.");
} // end confirmation if
} // end 'ok' if
Index: functions.inc
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** functions.inc 2001/12/14 14:14:23 1.85
--- functions.inc 2001/12/19 20:00:41 1.86
***************
*** 817,821 ****
}
if( $pslstrings[$string]) {
! $string = $pslstrings[$string];
} elseif (($_PSL[debug]) AND ($pslstrings)) {
$string = message( $string, "messageStrike");
--- 817,821 ----
}
if( $pslstrings[$string]) {
! $string = htmlentities($pslstrings[$string]);
} elseif (($_PSL[debug]) AND ($pslstrings)) {
$string = message( $string, "messageStrike");
|