1
0
Fork 0

update source strings

This commit is contained in:
fabrixxm 2011-03-11 00:22:21 +01:00
commit 9f7878057f
18 changed files with 2458 additions and 46 deletions

View file

@ -53,7 +53,7 @@ function wall_upload_post(&$a) {
$maximagesize = get_config('system','maximagesize');
if(($maximagesize) && ($filesize > $maximagesize)) {
notice( t('Image exceeds size limit of ') . $maximagesize . EOL);
notice( sprintf(t('Image exceeds size limit of %d'), $maximagesize) . EOL);
@unlink($src);
return;
}