Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pathologic committed Apr 28, 2018
1 parent 3617e80 commit 1e16207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/snippets/DocLister/core/extender/tv.extender.inc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class tv_DL_Extender extends extDocLister
$TVkeys = array_keys($tvDef);
foreach ($out as $itemid => $item) {
foreach ($TVkeys as $name) {
if ($out[$itemid][$name] === '' || is_null($out[$itemid][$name])) {
if (!isset($out[$itemid][$name]) || $out[$itemid][$name] === '' || is_null($out[$itemid][$name])) {
$out[$itemid][$name] = $tvDef[$name]['default'];
}
if (in_array($name, $renderTV) || $renderTV == array("*")) {
Expand Down

0 comments on commit 1e16207

Please sign in to comment.