fixing bug #417
git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@146373 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d1c255193b
commit
b543ca7927
|
|
@ -1587,7 +1587,7 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
|
|||
$result = $this->_func();
|
||||
return $result;
|
||||
}
|
||||
return $this->raiseError("Sintactic error: ".$this->_current_token.
|
||||
return $this->raiseError("Syntax error: ".$this->_current_token.
|
||||
", lookahead: ".$this->_lookahead.
|
||||
", current char: ".$this->_current_char);
|
||||
}
|
||||
|
|
@ -1615,7 +1615,7 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
|
|||
$this->_advance(); // eat the "," or ";"
|
||||
}
|
||||
else {
|
||||
return $this->raiseError("Sintactic error: coma expected in ".
|
||||
return $this->raiseError("Syntax error: coma expected in ".
|
||||
"function $function, arg #{$num_args}");
|
||||
}
|
||||
$result2 = $this->_condition();
|
||||
|
|
|
|||
Loading…
Reference in New Issue