diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-13 22:55:01 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-13 22:55:01 -0400 |
commit | a785810f2d11ad14ab3497a51ca10a6780b758ad (patch) | |
tree | f00ef73737b122c426445dea28169bacbf4cef97 /app/Model | |
parent | a9f976153983f8e611df14aa8ffed85bea052e0f (diff) |
Show changes in task update notifications
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/Notification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Notification.php b/app/Model/Notification.php index 34500483..1ef6a88f 100644 --- a/app/Model/Notification.php +++ b/app/Model/Notification.php @@ -268,7 +268,7 @@ class Notification extends Base { return $this->template->render( 'notification/'.str_replace('.', '_', $event_name), - $event_data + array('application_url' => $this->config->get('application_url')) + $event_data + array('application_url' => $this->config->get('application_url'), 'colors_list' => $this->color->getList()) ); } |