summaryrefslogtreecommitdiff
path: root/extlib/System
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/System
parentec6a38a62786c85e8ee30c5726ea81f82465b39d (diff)
Revert "* [Cc]an't -> [Cc]annot"
This reverts commit 0ab17f382b9993ada3d12d4cdace72cca53fb545.
Diffstat (limited to 'extlib/System')
-rw-r--r--extlib/System/Command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/extlib/System/Command.php b/extlib/System/Command.php
index d2001a975..f5c3ec6b9 100644
--- a/extlib/System/Command.php
+++ b/extlib/System/Command.php
@@ -376,7 +376,7 @@ class System_Command {
return $this->_initError;
}
- // if the command is empty or if the last element was a control operator, we cannot continue
+ // if the command is empty or if the last element was a control operator, we can't continue
if (is_null($this->previousElement) || $this->commandStatus == -1 || in_array($this->previousElement, $this->controlOperators)) {
return PEAR::raiseError(null, SYSTEM_COMMAND_INVALID_COMMAND, null, E_USER_WARNING, $this->systemCommand, 'System_Command_Error', true);
}