summaryrefslogtreecommitdiff
path: root/extlib/MIME
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/MIME')
-rw-r--r--extlib/MIME/Type.php4
-rw-r--r--extlib/MIME/Type/Extension.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php
index c335f8d92..8653362d3 100644
--- a/extlib/MIME/Type.php
+++ b/extlib/MIME/Type.php
@@ -478,7 +478,7 @@ class MIME_Type
// Don't return an empty string
if (!$type || !strlen($type)) {
- return PEAR::raiseError("Sorry, couldn't determine file type.");
+ return PEAR::raiseError("Sorry. Could not determine file type.");
}
// Strip parameters if present & requested
@@ -510,7 +510,7 @@ class MIME_Type
$fileCmd = PEAR::getStaticProperty('MIME_Type', 'fileCmd');
if (!$cmd->which($fileCmd)) {
unset($cmd);
- return PEAR::raiseError("Can't find file command \"{$fileCmd}\"");
+ return PEAR::raiseError("Cannot find file command \"{$fileCmd}\"");
}
$cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file));
diff --git a/extlib/MIME/Type/Extension.php b/extlib/MIME/Type/Extension.php
index 1987e2a10..2ffdee9a9 100644
--- a/extlib/MIME/Type/Extension.php
+++ b/extlib/MIME/Type/Extension.php
@@ -265,7 +265,7 @@ class MIME_Type_Extension
}
if (!isset($this->extensionToType[$extension])) {
- return PEAR::raiseError("Sorry, couldn't determine file type.");
+ return PEAR::raiseError("Sorry. Could not determine file type.");
}
return $this->extensionToType[$extension];
@@ -288,7 +288,7 @@ class MIME_Type_Extension
$extension = array_search($type, $this->extensionToType);
if ($extension === false) {
- return PEAR::raiseError("Sorry, couldn't determine extension.");
+ return PEAR::raiseError("Sorry. Could not determine extension.");
}
return $extension;
}