From f89f21027b5e273408baed8541650d9bcfa98eb5 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Mon, 17 Mar 2014 13:07:17 -0400 Subject: [PATCH] CRM-14215 - add no-popup class to case links --- CRM/Contact/BAO/Relationship.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Contact/BAO/Relationship.php b/CRM/Contact/BAO/Relationship.php index 2d73a5ac83..d628f0067e 100644 --- a/CRM/Contact/BAO/Relationship.php +++ b/CRM/Contact/BAO/Relationship.php @@ -1094,6 +1094,7 @@ LEFT JOIN civicrm_country ON (civicrm_address.country_id = civicrm_country.id) // give access by copying to MAX_ACTION temporarily, otherwise leave at NONE which won't display $links[CRM_Core_Action::MAX_ACTION] = $links[CRM_Core_Action::NONE]; $links[CRM_Core_Action::MAX_ACTION]['name'] = ts('Manage Case #%1', array(1 => $values[$rid]['case_id'])); + $links[CRM_Core_Action::MAX_ACTION]['class'] = 'no-popup'; // Also make sure we have the right client cid since can get here from multiple relationship tabs. if ($values[$rid]['rtype'] == 'b_a') { -- 2.25.1