diff options
| author | Łukasz Wilenski <wooc@gazeta.pl> | 2011-10-26 15:07:40 +0000 |
|---|---|---|
| committer | Łukasz Wilenski <wooc@gazeta.pl> | 2011-10-26 15:07:40 +0000 |
| commit | a90f78dac3c8f3438b5800f1ea2cb3a1296478b5 (patch) | |
| tree | 636dfde063384c9b862e63180ae4c084c296f5b4 /includes | |
| parent | 8f7c1cd1e4bb19be35d0d5472584cfca9e5c707c (diff) | |
| download | webtrees-a90f78dac3c8f3438b5800f1ea2cb3a1296478b5.tar.gz webtrees-a90f78dac3c8f3438b5800f1ea2cb3a1296478b5.tar.bz2 webtrees-a90f78dac3c8f3438b5800f1ea2cb3a1296478b5.zip | |
fix: Undefined variable: tableid
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/functions/functions_print_lists.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index f336d1ee20..06dc48f22e 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -872,7 +872,7 @@ function print_fam_table($datalist, $legend='', $option='') { echo '<td> </td>'; echo '<td><fieldset class="given"><button type="button" id="GIVEN_SORT_F_'.$table_id.'" title="', WT_I18N::translate('Sort by given names'), '" >', WT_Gedcom_Tag::getLabel('GIVN'), '</button></fieldset></td>'; echo '<td colspan="8">'; - echo '<fieldset class="parents"><input id="cb_parents_', $tableid, '" type="button" onclick="toggleByClassName(\'DIV\', \'parents_'.$table_id.'\');" value="', WT_I18N::translate('Show parents'), '" title="', WT_I18N::translate('Show parents'), '"/></fieldset>'; + echo '<fieldset class="parents"><input id="cb_parents_', $table_id, '" type="button" onclick="toggleByClassName(\'DIV\', \'parents_'.$table_id.'\');" value="', WT_I18N::translate('Show parents'), '" title="', WT_I18N::translate('Show parents'), '"/></fieldset>'; echo '<fieldset class="charts"><input id="charts_fam_list_table" type="button" onclick="toggleByClassName(\'DIV\', \'fam_list_table-charts_'.$table_id.'\');" value="', WT_I18N::translate('Show statistics charts'), '" title="', WT_I18N::translate('Show statistics charts'), '"/></fieldset>'; echo '</td></tr></tfoot>'; echo '</table>'; |
