diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-02-11 19:07:19 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-02-11 19:07:19 +0000 |
| commit | 4a2bab5f5b247cd9a3f521b9ed63bc77904e4907 (patch) | |
| tree | 713f65328ab464367d481339735908893db92e41 | |
| parent | 26494c28b5990487aa95a3aac31781b9c0874e23 (diff) | |
| download | webtrees-4a2bab5f5b247cd9a3f521b9ed63bc77904e4907.tar.gz webtrees-4a2bab5f5b247cd9a3f521b9ed63bc77904e4907.tar.bz2 webtrees-4a2bab5f5b247cd9a3f521b9ed63bc77904e4907.zip | |
Undefined variable
| -rw-r--r-- | modules_v3/todo/module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules_v3/todo/module.php b/modules_v3/todo/module.php index 6a271f1050..0268612247 100644 --- a/modules_v3/todo/module.php +++ b/modules_v3/todo/module.php @@ -108,7 +108,7 @@ class todo_WT_Module extends Module implements ModuleBlockInterface { $content .= '<td>'; //hidden by datables code $content .= $fact->getDate()->JD(); $content .= '</td>'; - $content .= '<td class="wrap">' . $fact->getDate()->display(empty($SEARCH_SPIDER)) . '</td>'; + $content .= '<td class="wrap">' . $fact->getDate()->display() . '</td>'; $content .= '<td class="wrap"><a href="' . $record->getHtmlUrl() . '">' . $record->getFullName() . '</a></td>'; if ($show_unassigned || $show_other) { $content .= '<td class="wrap">' . $user_name . '</td>'; |
