mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Remove rule title
This commit is contained in:
@@ -288,7 +288,7 @@ class RuleRepository implements RuleRepositoryInterface
|
|||||||
$rule->active = array_key_exists('active', $data) ? $data['active'] : true;
|
$rule->active = array_key_exists('active', $data) ? $data['active'] : true;
|
||||||
$rule->strict = array_key_exists('strict', $data) ? $data['strict'] : false;
|
$rule->strict = array_key_exists('strict', $data) ? $data['strict'] : false;
|
||||||
$rule->stop_processing = array_key_exists('stop_processing', $data) ? $data['stop_processing'] : false;
|
$rule->stop_processing = array_key_exists('stop_processing', $data) ? $data['stop_processing'] : false;
|
||||||
$rule->title = array_key_exists('title', $data) ? $data['title'] : 'Untitled';
|
$rule->title = array_key_exists('title', $data) ? $data['title'] : '';
|
||||||
$rule->description = array_key_exists('description', $data) ? $data['description'] : '';
|
$rule->description = array_key_exists('description', $data) ? $data['description'] : '';
|
||||||
$rule->save();
|
$rule->save();
|
||||||
$rule->refresh();
|
$rule->refresh();
|
||||||
|
Reference in New Issue
Block a user