diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-27 21:45:37 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-28 08:40:27 -0500 |
commit | 32e4a932c801dfa6c52f6e8211a96bdb7849579d (patch) | |
tree | 895d519842c69369713eaf4d8e96b7a3a17c1f3d /app/Action/Base.php | |
parent | 320c7971f606a0c9caa4a20bcfcbc2fe2f6c9c00 (diff) |
Added automatic actions based on a daily event
Diffstat (limited to 'app/Action/Base.php')
-rw-r--r-- | app/Action/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Action/Base.php b/app/Action/Base.php index efc52f04..e8449d0c 100644 --- a/app/Action/Base.php +++ b/app/Action/Base.php @@ -125,7 +125,7 @@ abstract class Base extends \Kanboard\Core\Base $params[] = $key.'='.var_export($value, true); } - return $this->getName().'('.implode('|', $params).'])'; + return $this->getName().'('.implode('|', $params).')'; } /** |