summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTal Peer <tal@php.net>2002-07-28 17:06:28 +0000
committerTal Peer <tal@php.net>2002-07-28 17:06:28 +0000
commit90488714eebec80bf2249e00649a4ae6d827a1bd (patch)
treee953cd60b1b3aafbf548e9c2cdd224d344034493
parent46e76a451d8fd4382f152ec872ff1a7ec216428e (diff)
downloadphp-git-90488714eebec80bf2249e00649a4ae6d827a1bd.tar.gz
* Fixed E_NOTICE on pear -V
-rw-r--r--pear/scripts/pear.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/scripts/pear.in b/pear/scripts/pear.in
index 3ae9930792..6f59b6e09f 100644
--- a/pear/scripts/pear.in
+++ b/pear/scripts/pear.in
@@ -242,7 +242,7 @@ function cmdHelp($command)
return $ret;
} elseif ($command == "version") {
- return "PEAR Version: ".$GLOBALS[pear_package_version]."\nPHP Version: ".phpversion()."\nZend Engine Version: ".zend_version();
+ return "PEAR Version: ".$GLOBALS['pear_package_version']."\nPHP Version: ".phpversion()."\nZend Engine Version: ".zend_version();
} elseif ($help = PEAR_Command::getHelp($command)) {
if (is_string($help)) {