mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-23 04:18:50 +00:00
Fix #2510
This commit is contained in:
@@ -61,7 +61,7 @@ class TransactionGroupFactory
|
||||
$title = '' === $title ? null : $title;
|
||||
|
||||
if (null !== $title) {
|
||||
$title = substr($title, 0, 255);
|
||||
$title = substr($title, 0, 1000);
|
||||
}
|
||||
|
||||
$group = new TransactionGroup;
|
||||
|
@@ -287,7 +287,7 @@ class TransactionJournalFactory
|
||||
'transaction_type_id' => $type->id,
|
||||
'bill_id' => $billId,
|
||||
'transaction_currency_id' => $currency->id,
|
||||
'description' => $description,
|
||||
'description' => substr($description,0,1000),
|
||||
'date' => $carbon->format('Y-m-d H:i:s'),
|
||||
'order' => $order,
|
||||
'tag_count' => 0,
|
||||
|
Reference in New Issue
Block a user