Skip to content

Commit

Permalink
Fixed issue #16315: Undefined variable $sSeparator #1423
Browse files Browse the repository at this point in the history
  • Loading branch information
elie-g committed May 20, 2020
1 parent a977829 commit ae8027a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -236,7 +236,7 @@ public function getRows()

if (strpos($sValue, ".")) {
$sValue = rtrim(rtrim($sValue, "0"), ".");
$sValue = str_replace('.', $sSeparator, $sValue);
$sValue = str_replace('.', $this->sSeparator, $sValue);
}

$aRows[] = array_merge(
Expand Down

0 comments on commit ae8027a

Please sign in to comment.