Fix php error

This commit is contained in:
Frederic Guillot 2015-04-11 23:12:31 -04:00
parent 3f38d81f79
commit 1b5cbf5611
1 changed files with 1 additions and 1 deletions

View File

@ -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']);