From 7326b30210a1e867742fce1f8b3e26b966e62b80 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Thu, 21 Aug 2014 13:43:45 +0100 Subject: [PATCH] Fix invalad html in sort links --- CRM/Utils/Weight.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CRM/Utils/Weight.php b/CRM/Utils/Weight.php index df1f36efd3..28822142d0 100644 --- a/CRM/Utils/Weight.php +++ b/CRM/Utils/Weight.php @@ -379,14 +379,14 @@ class CRM_Utils_Weight { $nextID = $ids[$i + 1]; $links = array(); - $url = "{$baseURL}&src=$id"; + $url = "{$baseURL}&src=$id"; if ($prevID != 0) { $alt = ts('Move to top'); - $links[] = "\"$alt\""; + $links[] = "\"$alt\""; $alt = ts('Move up one row'); - $links[] = "\"$alt\""; + $links[] = "\"$alt\""; } else { $links[] = ""; @@ -395,10 +395,10 @@ class CRM_Utils_Weight { if ($nextID != 0) { $alt = ts('Move down one row'); - $links[] = "\"$alt\""; + $links[] = "\"$alt\""; $alt = ts('Move to bottom'); - $links[] = "\"$alt\""; + $links[] = "\"$alt\""; } else { $links[] = ""; -- 2.25.1