🤖 Auto commit for release 'develop' on 2026-04-03

This commit is contained in:
JC5
2026-04-03 07:31:27 +02:00
parent 4435231ffb
commit ecab686ac9
62 changed files with 268 additions and 791 deletions

View File

@@ -45,11 +45,7 @@ class PrependDescription implements ActionInterface
{
$before = $journal['description'];
$after = sprintf('%s%s', $this->action->getValue($journal), $journal['description']);
DB::table('transaction_journals')
->where('id', $journal['transaction_journal_id'])
->limit(1)
->update(['description' => $after])
;
DB::table('transaction_journals')->where('id', $journal['transaction_journal_id'])->limit(1)->update(['description' => $after]);
// journal
/** @var TransactionJournal $object */