mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Small bugfix
This commit is contained in:
@@ -17,7 +17,7 @@ class AmountComma extends BasicConverter implements ConverterInterface
|
|||||||
*/
|
*/
|
||||||
public function convert()
|
public function convert()
|
||||||
{
|
{
|
||||||
$value = str_replace(',', '.', str_val($this->value));
|
$value = str_replace(',', '.', strval($this->value));
|
||||||
|
|
||||||
if (is_numeric($value)) {
|
if (is_numeric($value)) {
|
||||||
return strval($value);
|
return strval($value);
|
||||||
|
|||||||
Reference in New Issue
Block a user