diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-12 11:49:56 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-12 11:50:35 -0400 |
commit | e57386a18393e85f073cccff70699ad9afc19119 (patch) | |
tree | c66968991251c5115cbc756a039706f30842b9a5 /app/Controller | |
parent | 23826592b85f3573bb55cf3ee4336fbb46bfa18f (diff) | |
parent | 6c021baa8d9867ff2720c19e93bad4c8db0696e9 (diff) |
Merge pull-request #1350
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Customfilter.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Controller/Customfilter.php b/app/Controller/Customfilter.php index c403cb4b..80d18a17 100644 --- a/app/Controller/Customfilter.php +++ b/app/Controller/Customfilter.php @@ -115,6 +115,10 @@ class Customfilter extends Base if (! isset($values['is_shared'])) { $values += array('is_shared' => 0); } + + if (! isset($values['append'])) { + $values += array('append' => 0); + } list($valid, $errors) = $this->customFilter->validateModification($values); |