From 1c076aa97bf473f676309b813866cf72e6896119 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 1 Apr 2013 19:11:33 +0000 Subject: [PATCH] Pass proper types to exec to avoid errors --- notifications/inc/class.notifications_ajax.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/inc/class.notifications_ajax.inc.php b/notifications/inc/class.notifications_ajax.inc.php index f81bf7b113..6bf4617543 100644 --- a/notifications/inc/class.notifications_ajax.inc.php +++ b/notifications/inc/class.notifications_ajax.inc.php @@ -239,7 +239,7 @@ class notifications_ajax { // create etemplate $tpl = new etemplate(); $tpl->read('notifications.checkmailbox'); - $notification_message = $tpl->exec(false, $values, false, false, false, 1); + $notification_message = $tpl->exec(false, $values, array(), array(), array(), 1); // send notification $notification = new notifications();