diff options
author | Zach Copley <zach@status.net> | 2009-11-05 05:59:46 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-05 05:59:46 +0000 |
commit | 40bf174c0175df2d2de604f6887b90760faab74e (patch) | |
tree | cbe776bd9b64f2b0d17edb001827f89158cbb3b0 | |
parent | 527427d3e0752a371b1b6421dabec5cc1c7e19ad (diff) |
Revert a OS X-specific change to PEAR MIME_Type that I accidentally commited.
-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 e0e9c9ee6..c335f8d92 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); |