diff --git a/core/DataTable/Row.php b/core/DataTable/Row.php index 2137da256fa..1c161f318cf 100644 --- a/core/DataTable/Row.php +++ b/core/DataTable/Row.php @@ -578,8 +578,8 @@ protected function sumRowArray($thisColumnValue, $columnToSumValue) } else if ($columnToSumValue === false) { return $thisColumnValue; } else { - throw new Exception("Trying to add two strings values in DataTable\Row::sumRowArray: " - . "'$thisColumnValue' + '$columnToSumValue'"); + throw new Exception("Trying to add two strings in DataTable\Row::sumRowArray: " + . "'$thisColumnValue' + '$columnToSumValue'" . " for row " . $this->__toString()); } }