record && $controller->record->canShow()) { $controller->pageHeader(); if ($controller->record->isOld()) { if (WT_USER_CAN_ACCEPT) { echo '
', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ WT_I18N::translate( 'This note has been deleted. You should review the deletion and then %1$s or %2$s it.', '' . WT_I18N::translate_c('You should review the deletion and then accept or reject it.', 'accept') . '', '' . WT_I18N::translate_c('You should review the deletion and then accept or reject it.', 'reject') . '' ), ' ', help_link('pending_changes'), '
'; } elseif (WT_USER_CAN_EDIT) { echo '', WT_I18N::translate('This note has been deleted. The deletion will need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '
'; } } elseif ($controller->record->isNew()) { if (WT_USER_CAN_ACCEPT) { echo '', /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */ WT_I18N::translate( 'This note has been edited. You should review the changes and then %1$s or %2$s them.', '' . WT_I18N::translate_c('You should review the changes and then accept or reject them.', 'accept') . '', '' . WT_I18N::translate_c('You should review the changes and then accept or reject them.', 'reject') . '' ), ' ', help_link('pending_changes'), '
'; } elseif (WT_USER_CAN_EDIT) { echo '', WT_I18N::translate('This note has been edited. The changes need to be reviewed by a moderator.'), ' ', help_link('pending_changes'), '
'; } } } else { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); $controller->pageHeader(); echo '', WT_I18N::translate('This note does not exist or you do not have permission to view it.'), '
'; exit; } $controller->addInlineJavascript(' jQuery("#note-tabs") .tabs({ create: function(e, ui){ jQuery(e.target).css("visibility", "visible"); // prevent FOUC } }); '); $linked_indi = $controller->record->linkedIndividuals('NOTE'); $linked_fam = $controller->record->linkedFamilies('NOTE'); $linked_obje = $controller->record->linkedMedia('NOTE'); $linked_sour = $controller->record->linkedSources('NOTE'); $facts = array(); foreach ($controller->record->getFacts() as $fact) { if ($fact->getTag() != 'CONT') { $facts[] = $fact; } } // Legacy formatting, created by the census assistant if (array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) { $text = GEDFact_assistant_WT_Module::formatCensusNote($controller->record); } else { $text = WT_Filter::formatText($controller->record->getNote(), $WT_TREE); } ?>