From 46ee5e1fe1e2c95a6742b84770db941f3d9ec3d0 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 25 May 2012 18:41:42 +0800 Subject: [PATCH] NotifySend.php --- NotifySend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NotifySend.php b/NotifySend.php index eac0c32e..dc9ff7fe 100644 --- a/NotifySend.php +++ b/NotifySend.php @@ -402,8 +402,8 @@ class Pman_Core_NotifySend extends Pman $m = 'notify'. $notify->evtype; var_dump($m); - if (!empty($notify->evtype) && method_exists($object,'notify'. $notify->evtype)) { - $object->$m($rcpt, $last_sent_date, $notify, $force); + if (!empty($notify->evtype) && method_exists($object,$m)) { + return $object->$m($rcpt, $last_sent_date, $notify, $force); } -- 2.39.2