diff options
author | Jan Lehnardt <jan@php.net> | 2002-05-29 21:55:52 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@php.net> | 2002-05-29 21:55:52 +0000 |
commit | 5ec88a3b73fc8b48c61afb423649a48fce4a9bf9 (patch) | |
tree | c0638d8c3593643e9dc9d3b44010100975b83fb4 /pear/PEAR.php | |
parent | 998ef91cad581cedf63a91a788dedbaeb62ff990 (diff) | |
download | php-git-5ec88a3b73fc8b48c61afb423649a48fce4a9bf9.tar.gz |
- minor improvement of readability,
#thanks richy ;)
Diffstat (limited to 'pear/PEAR.php')
-rw-r--r-- | pear/PEAR.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php index 7df120b4db..3a6b206fd2 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -403,7 +403,7 @@ class PEAR $deleted = false; } } - return $deleted?true:PEAR::raiseError("The expected error you submitted does not exist"); // IMPROVE ME + return $deleted ? true : PEAR::raiseError("The expected error you submitted does not exist"); // IMPROVE ME } elseif (!empty($error_code)) { // $error_code comes alone, trying to unset it if ($this->_checkDelExpect($error_code)) { |