mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-05-03 20:56:21 +00:00
These are the first commits that make FF require php 7.
This commit is contained in:
@@ -56,7 +56,7 @@ class Tag extends Model
|
||||
}
|
||||
// create it!
|
||||
$fields['tagMode'] = 'nothing';
|
||||
$fields['description'] = isset($fields['description']) && !is_null($fields['description']) ? $fields['description'] : '';
|
||||
$fields['description'] = $fields['description'] ?? '';
|
||||
$tag = Tag::create($fields);
|
||||
|
||||
return $tag;
|
||||
|
||||
Reference in New Issue
Block a user