Fix incorrect variable
authorColeman Watts <coleman@civicrm.org>
Thu, 13 Mar 2014 01:07:38 +0000 (21:07 -0400)
committerColeman Watts <coleman@civicrm.org>
Thu, 13 Mar 2014 01:07:38 +0000 (21:07 -0400)
CRM/Member/Page/Tab.php

index c844868419ce8dc3518254e7e0c29051281f89e0..c5ba428bd0d42a85372f5627cc8103272cbaee54 100644 (file)
@@ -392,7 +392,7 @@ class CRM_Member_Page_Tab extends CRM_Core_Page {
         $urlString = 'civicrm/contact/search/custom';
         if ($action == CRM_Core_Action::UPDATE) {
           if ($form->_contactId) {
-            $urlParams .= '&cid=' . $this->_contactId;
+            $urlParams .= '&cid=' . $form->_contactId;
           }
           $keyName = '&key';
           $urlParams .= '&context=fulltext&action=view';