From: Siebrand Mazeland Date: Wed, 28 Jul 2010 20:17:54 +0000 (+0200) Subject: Number parameters X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e694da24a9b6ec242fd49b5ce6e012d0a2a28679;p=quix0rs-gnu-social.git Number parameters --- diff --git a/classes/File.php b/classes/File.php index 0f230a6ee5..ba8cea9d96 100644 --- a/classes/File.php +++ b/classes/File.php @@ -182,8 +182,8 @@ class File extends Memcached_DataObject function isRespectsQuota($user,$fileSize) { if ($fileSize > common_config('attachments', 'file_quota')) { - return sprintf(_('No file may be larger than %d bytes ' . - 'and the file you sent was %d bytes. Try to upload a smaller version.'), + return sprintf(_('No file may be larger than %1$d bytes ' . + 'and the file you sent was %2$d bytes. Try to upload a smaller version.'), common_config('attachments', 'file_quota'), $fileSize); }