diff options
| author | Tal Peer <tal@php.net> | 2002-07-28 17:06:28 +0000 |
|---|---|---|
| committer | Tal Peer <tal@php.net> | 2002-07-28 17:06:28 +0000 |
| commit | 90488714eebec80bf2249e00649a4ae6d827a1bd (patch) | |
| tree | e953cd60b1b3aafbf548e9c2cdd224d344034493 | |
| parent | 46e76a451d8fd4382f152ec872ff1a7ec216428e (diff) | |
| download | php-git-90488714eebec80bf2249e00649a4ae6d827a1bd.tar.gz | |
* Fixed E_NOTICE on pear -V
| -rw-r--r-- | pear/scripts/pear.in | 2 |
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)) { |
