Review sprintf
remove more sprintf calls
This commit is contained in:
@@ -109,7 +109,7 @@ function wall_attach_post(App $a) {
|
||||
}
|
||||
|
||||
if(($maxfilesize) && ($filesize > $maxfilesize)) {
|
||||
$msg = sprintf(L10n::t('File exceeds size limit of %s'), formatBytes($maxfilesize));
|
||||
$msg = L10n::t('File exceeds size limit of %s', formatBytes($maxfilesize));
|
||||
if ($r_json) {
|
||||
echo json_encode(['error'=>$msg]);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user