From 3814fe15a0d14e550a7884c99748290c90c04f0a Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 2 May 2017 15:55:46 -0400 Subject: [PATCH] fixing illegal offset issue with the obits list view issue seems to be with the javascript dynamic search, it was searching for a field that was non existent. removint this field should resolve the 502 --- views/admin/obits/list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/admin/obits/list.html b/views/admin/obits/list.html index 0d644c2..7c0af80 100644 --- a/views/admin/obits/list.html +++ b/views/admin/obits/list.html @@ -227,7 +227,7 @@ var availableTags = [ {foreach $namesList as $e} - { label: "{$e|replace:'"':"'"}", value: "{$e|replace:'"':"'"}", id: '{$e.id}' }, + { label: "{$e|replace:'"':"'"}", value: "{$e|replace:'"':"'"}" }, {/foreach} ]; -- 2.17.1