Author Topic: No email notification when closing task  (Read 2781 times)

mrova

  • Newbie
  • *
  • Posts: 3
    • View Profile
No email notification when closing task
« on: March 25, 2009, 02:04:37 pm »
Hi,
in file application/models/notifier/Notifier.class.php, line 134:
if ($closedBy instanceof User) return;

it should be ff:
if (!$closedBy instanceof User) return;

without negation no email is send on task completion.

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: No email notification when closing task
« Reply #1 on: March 25, 2009, 07:14:33 pm »
Great! Thanks!