From bfa045d3d871600c3d735bc34ad8bb75594f5cdd Mon Sep 17 00:00:00 2001 From: kink Date: Sat, 2 Apr 2005 13:29:15 +0000 Subject: [PATCH] missing sprintf around string git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9178 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/mail_fetch/fetch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mail_fetch/fetch.php b/plugins/mail_fetch/fetch.php index 451159b1..c375b1ed 100644 --- a/plugins/mail_fetch/fetch.php +++ b/plugins/mail_fetch/fetch.php @@ -289,7 +289,7 @@ sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); if ($mailfetch_lmos != 'on') { if( $pop3->delete($i) ) { - Mail_Fetch_Status(_("Message %i deleted from remote server!"), $i); + Mail_Fetch_Status(sprintf(_("Message %i deleted from remote server!"), $i)); } else { Mail_Fetch_Status(_("Delete failed:") . htmlspecialchars($pop3->ERROR) ); } -- 2.25.1