Follow/Unfollow now works from OStatus.

This commit is contained in:
Michael Vogel 2015-07-13 23:50:33 +02:00
commit 2b3ebb9c3e
3 changed files with 15 additions and 7 deletions

View file

@ -119,6 +119,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
$maximagesize = get_config('system','maximagesize');
if(($maximagesize) && ($filesize > $maximagesize)) {
logger("Image exceeds size limit of ".$maximagesize);
echo sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL;
@unlink($src);
killme();