From 5708d2e925c1d9ad56701cadae6a7e61a7206739 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 14 Apr 2008 10:11:50 +0000 Subject: - removed strrstr() definition as it was needed only for php4 git-svn-id: https://svn.roundcube.net/trunk@1301 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/mail/compose.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/steps') diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc index aaeca24dd..878cf8634 100644 --- a/roundcubemail/program/steps/mail/compose.inc +++ b/roundcubemail/program/steps/mail/compose.inc @@ -499,7 +499,7 @@ function rcmail_create_reply_body($body, $bodyIsHtml) $IMAP->decode_header($MESSAGE['headers']->from)); // try to remove the signature - if ($sp = strrstr($body, '-- ')) + if ($sp = strrpos($body, '-- ')) { if ($body{$sp+3}==' ' || $body{$sp+3}=="\n" || $body{$sp+3}=="\r") $body = substr($body, 0, $sp-1); -- cgit v1.2.3