diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-11 23:12:31 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-11 23:12:31 -0400 |
commit | 1b5cbf56117116a6c87fe5d26144951f539f7f76 (patch) | |
tree | 474934acbd40e7f41ad56653b6407722291a6302 /app/Model/Notification.php | |
parent | 3f38d81f7965752a66049944d2ef13975d2e2ab4 (diff) |
Fix php error
Diffstat (limited to 'app/Model/Notification.php')
-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 18089122..02b4a3ed 100644 --- a/app/Model/Notification.php +++ b/app/Model/Notification.php @@ -105,7 +105,7 @@ class Notification extends Base $author = ''; if (Session::isOpen()) { - $author = e('%s via Kanboard', $this->user->getFullname($this->session['user'])); + $author = e('%s via Kanboard', $this->user->getFullname($_SESSION['user'])); } $mailer = Swift_Mailer::newInstance($this->container['mailer']); |