fixing CS

git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@124989 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xavier Noguer Gallego 2003-04-28 21:12:09 +00:00
parent 54f0757e09
commit 1355ab654f
1 changed files with 4 additions and 4 deletions

View File

@ -1118,9 +1118,9 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
$this->_formula = $formula;
$this->_lookahead = $formula{1};
$this->_advance();
$this->_parse_tree = $this->_condition(); //$this->_expression();
if($this->isError($this->_parse_tree)) {
return($this->_parse_tree);
$this->_parse_tree = $this->_condition();
if ($this->isError($this->_parse_tree)) {
return $this->_parse_tree;
}
}