summaryrefslogtreecommitdiff
path: root/extlib/MIME/Type/Extension.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-08 23:28:51 +0100
committerBrion Vibber <brion@pobox.com>2009-11-08 23:28:51 +0100
commitfc5002015b2a9e16a3c6b9992d55b45c73a8d2fb (patch)
tree15174fb81ee17b7d9117d009fd3cc5572168bf51 /extlib/MIME/Type/Extension.php
parentec6a38a62786c85e8ee30c5726ea81f82465b39d (diff)
Revert "* [Cc]an't -> [Cc]annot"
This reverts commit 0ab17f382b9993ada3d12d4cdace72cca53fb545.
Diffstat (limited to 'extlib/MIME/Type/Extension.php')
-rw-r--r--extlib/MIME/Type/Extension.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/extlib/MIME/Type/Extension.php b/extlib/MIME/Type/Extension.php
index 2ffdee9a9..1987e2a10 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. Could not determine file type.");
+ return PEAR::raiseError("Sorry, couldn't 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. Could not determine extension.");
+ return PEAR::raiseError("Sorry, couldn't determine extension.");
}
return $extension;
}