From 30b335f13717b055a0cfc710a041dc81b16e6271 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Wed, 5 Mar 2014 17:23:36 -0800 Subject: [PATCH] Fix notice in Relationship.php postProcess caused by typo, $this->action s/b $this->_action --- CRM/Contact/Form/Relationship.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/Form/Relationship.php b/CRM/Contact/Form/Relationship.php index 45b27742af..31d725ec25 100644 --- a/CRM/Contact/Form/Relationship.php +++ b/CRM/Contact/Form/Relationship.php @@ -482,7 +482,7 @@ class CRM_Contact_Form_Relationship extends CRM_Core_Form { } // Save notes - if ($this->action & CRM_Core_Action::UPDATE || $params['note']) { + if ($this->_action & CRM_Core_Action::UPDATE || $params['note']) { foreach ($relationshipIds as $id) { $noteParams = array( 'entity_id' => $id, -- 2.25.1