From: tokul Date: Mon, 4 Apr 2005 13:53:55 +0000 (+0000) Subject: using signed decimal (%d) instead of nonexistent variable type (%i) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8e00482f90996d51814f00ecf8f6fa49c8d463c1;p=squirrelmail.git 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 --- 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) ); }