diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2011-11-10 02:52:22 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2011-11-10 02:52:22 +0000 |
| commit | f226cf6ed9cbf670f5fb9e6c34075cd6eeb1466a (patch) | |
| tree | b5e7ad8ea535960fbe53b6c8359b017f090b9ccf | |
| parent | c78841fde35780c72f8a352b28a1e89bf4ac524f (diff) | |
| download | webtrees-f226cf6ed9cbf670f5fb9e6c34075cd6eeb1466a.tar.gz webtrees-f226cf6ed9cbf670f5fb9e6c34075cd6eeb1466a.tar.bz2 webtrees-f226cf6ed9cbf670f5fb9e6c34075cd6eeb1466a.zip | |
Minor typos in comments
| -rw-r--r-- | includes/functions/functions_print_lists.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index 70f416ef73..94b5cba64c 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -1665,9 +1665,9 @@ function print_events_table($startjd, $endjd, $events='BIRT MARR DEAT', $only_li $return .= '<table id="'.$table_id.'" class="width100" style="visibility:hidden;">'; $return .= '<thead><tr>'; $return .= '<th>'.WT_I18N::translate('Record').'</th>'; - $return .= '<th>NAME</th>'; //hidden by datables code + $return .= '<th>NAME</th>'; //hidden by datatables code $return .= '<th>'.WT_Gedcom_Tag::getLabel('DATE').'</th>'; - $return .= '<th>DATE</th>'; //hidden by datables code + $return .= '<th>DATE</th>'; //hidden by datatables code $return .= '<th><img src="'.$WT_IMAGES["reminder"].'" alt="'.WT_I18N::translate('Anniversary').'" title="'.WT_I18N::translate('Anniversary').'" border="0" /></th>'; $return .= '<th>'.WT_Gedcom_Tag::getLabel('EVEN').'</th>'; $return .= '</tr></thead><tbody>'."\n"; @@ -1694,7 +1694,7 @@ function print_events_table($startjd, $endjd, $events='BIRT MARR DEAT', $only_li } $return .= '</td>'; //-- NAME - $return .= '<td>'; //hidden by datables code + $return .= '<td>'; //hidden by datatables code $return .= $value['record']->getSortName(); $return .= '</td>'; //-- Event date @@ -1702,7 +1702,7 @@ function print_events_table($startjd, $endjd, $events='BIRT MARR DEAT', $only_li $return .= $value['date']->Display(empty($SEARCH_SPIDER)); $return .= '</td>'; //-- Event date (sortable) - $return .= '<td>'; //hidden by datables code + $return .= '<td>'; //hidden by datatables code $return .= $n; $return .= '</td>'; //-- Anniversary |
