From 1e6925ae6ae77506f91c2228a25de20f004870a6 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 11 May 2015 15:05:05 +0100 Subject: [PATCH] Re-fix ACREP-30 in a way that works on production. The regular expression that recognises harvested targets now works correctly on either ZURL-style or UDB-style target identifiers. (The question of why we get the first on the production system and the second on my development system is a whole nother ball of wax.) --- src/templates/targets.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/targets.handlebars b/src/templates/targets.handlebars index 709885c..9402c83 100644 --- a/src/templates/targets.handlebars +++ b/src/templates/targets.handlebars @@ -26,7 +26,7 @@ data: {{{name}}} - {{#compare id 'matches' '^solr-'}} + {{#compare id 'matches' '^(solr-|lui.)'}} H {{else}} S -- 1.7.10.4