From 8e00482f90996d51814f00ecf8f6fa49c8d463c1 Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 4 Apr 2005 13:53:55 +0000 Subject: [PATCH] using signed decimal (%d) instead of nonexistent variable type (%i) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9189 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 224409c9..0c529d4f 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(sprintf(_("Message %i deleted from remote server!"), $i)); + Mail_Fetch_Status(sprintf(_("Message %d deleted from remote server!"), $i)); } else { Mail_Fetch_Status(_("Delete failed:") . htmlspecialchars($pop3->ERROR) ); } -- 2.25.1