diff options
| author | David Drury <ddrury@users.noreply.github.com> | 2016-05-09 20:59:23 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-05-09 20:59:23 +0100 |
| commit | 8593c473faa31f2615cc145c51982b372d724614 (patch) | |
| tree | 3f65825b8e08927f52bea780acc5493c6e22e1ee /app/Module/SourcesTabModule.php | |
| parent | 1788e52d4c2611fb9c1a9ccb3469ccf195536775 (diff) | |
| download | webtrees-8593c473faa31f2615cc145c51982b372d724614.tar.gz webtrees-8593c473faa31f2615cc145c51982b372d724614.tar.bz2 webtrees-8593c473faa31f2615cc145c51982b372d724614.zip | |
Suppress a few elements when printing (#927)
Diffstat (limited to 'app/Module/SourcesTabModule.php')
| -rw-r--r-- | app/Module/SourcesTabModule.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Module/SourcesTabModule.php b/app/Module/SourcesTabModule.php index fc7497b1a3..739f269d12 100644 --- a/app/Module/SourcesTabModule.php +++ b/app/Module/SourcesTabModule.php @@ -63,7 +63,7 @@ class SourcesTabModule extends AbstractModule implements ModuleTabInterface { ob_start(); ?> <table class="facts_table"> - <tr> + <tr class="noprint"> <td colspan="2" class="descriptionbox rela"> <input id="checkbox_sour2" type="checkbox" <?php echo $WT_TREE->getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_sour2').toggle();"> <label for="checkbox_sour2"><?php echo I18N::translate('Show all sources'); ?></label> @@ -84,7 +84,7 @@ class SourcesTabModule extends AbstractModule implements ModuleTabInterface { // New Source Link if ($controller->record->canEdit()) { ?> - <tr> + <tr class="noprint"> <td class="facts_label"> <?php echo GedcomTag::getLabel('SOUR'); ?> </td> |
