From: Anthony Talarico Date: Tue, 2 May 2017 19:55:46 +0000 (-0400) Subject: fixing illegal offset issue with the obits list view X-Git-Tag: v1.0.0^2~2 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=3814fe15a0d14e550a7884c99748290c90c04f0a;p=WP-Plugins%2Fglm-member-db-obits.git 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 --- 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} ];