Skip to content

Commit

Permalink
fix: loghandlers now optional and saving an existing flow should work
Browse files Browse the repository at this point in the history
Resolves #829
  • Loading branch information
keevan committed Aug 24, 2023
1 parent e425bbd commit 11837bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/dataflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected static function define_properties(): array {
'enabled' => ['type' => PARAM_BOOL, 'default' => false],
'concurrencyenabled' => ['type' => PARAM_BOOL, 'default' => false],
'vars' => ['type' => PARAM_TEXT, 'default' => ''],
'loghandlers' => ['type' => PARAM_TEXT, 'default' => ''],
'loghandlers' => ['type' => PARAM_TEXT, 'default' => '', 'null' => NULL_ALLOWED],
'timecreated' => ['type' => PARAM_INT, 'default' => 0],
'userid' => ['type' => PARAM_INT, 'default' => 0],
'timemodified' => ['type' => PARAM_INT, 'default' => 0],
Expand Down

0 comments on commit 11837bb

Please sign in to comment.