projects
/
WP-Plugins
/
glm-member-db-obits.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11dcd30
)
fixing illegal offset issue with the obits list view
author
Anthony Talarico
<talarico@gaslightmedia.com>
Tue, 2 May 2017 19:55:46 +0000
(15:55 -0400)
committer
Anthony Talarico
<talarico@gaslightmedia.com>
Tue, 2 May 2017 19:55:46 +0000
(15:55 -0400)
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
patch
|
blob
|
history
diff --git
a/views/admin/obits/list.html
b/views/admin/obits/list.html
index
0d644c2
..
7c0af80
100644
(file)
--- 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}
];