diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-03-11 00:22:21 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-03-11 00:22:21 +0100 |
commit | 9f7878057f356ba785de26877a660bb025cae31d (patch) | |
tree | 8682db6a66be0e5c663a279e6e2adb5f5765c022 /mod/wall_upload.php | |
parent | 89781ba428f553e8eb4f415832e7e575adf141e0 (diff) | |
download | volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.gz volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.bz2 volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.zip |
update source strings
Diffstat (limited to 'mod/wall_upload.php')
-rw-r--r-- | mod/wall_upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php index b5725311d..f7638b730 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -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; } |