diff options
author | Zach Copley <zach@status.net> | 2009-11-04 21:00:26 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-04 21:00:26 -0800 |
commit | 527427d3e0752a371b1b6421dabec5cc1c7e19ad (patch) | |
tree | b93f82742b41a7de053151a26957388b2eb5dd37 /extlib/MIME | |
parent | eb42ad5635c65dd7c25ea57bd5b6e56114054ae0 (diff) |
Implement update avatar via API (/api/account/update_profile_image.format)
Diffstat (limited to 'extlib/MIME')
-rw-r--r-- | extlib/MIME/Type.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php index c335f8d92..e0e9c9ee6 100644 --- a/extlib/MIME/Type.php +++ b/extlib/MIME/Type.php @@ -513,7 +513,7 @@ class MIME_Type return PEAR::raiseError("Can't find file command \"{$fileCmd}\""); } - $cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file)); + $cmd->pushCommand($fileCmd, "-bI " . escapeshellarg($file)); $res = $cmd->execute(); unset($cmd); |