From 733bde56bab21dd7702c27a8ca93301547b7e0e0 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 671edec..b4010ef 100644 --- a/src/templates/targets.handlebars +++ b/src/templates/targets.handlebars @@ -27,7 +27,7 @@ data: {{{name}}} - {{#compare id 'matches' '^solr-'}} + {{#compare id 'matches' '^(solr-|lui.)'}} H {{else}} S -- 1.7.10.4