@@ -65,8 +65,9 @@ discard block |
||
65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
66 | 66 | if($ctrlIndi){ |
67 | 67 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
68 | - if ($dindi->canDisplayIsSourced()) |
|
69 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
68 | + if ($dindi->canDisplayIsSourced()) { |
|
69 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
70 | + } |
|
70 | 71 | } |
71 | 72 | return ''; |
72 | 73 | } |
@@ -99,8 +100,9 @@ discard block |
||
99 | 100 | $dindi = new Individual($grec); |
100 | 101 | $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
101 | 102 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
102 | - if($grec->isDead()) |
|
103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
103 | + if($grec->isDead()) { |
|
104 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
105 | + } |
|
104 | 106 | } |
105 | 107 | return $html; |
106 | 108 | } |
@@ -173,12 +175,13 @@ discard block |
||
173 | 175 | </tr>'; |
174 | 176 | } |
175 | 177 | |
176 | - if( $root->isDead() ) |
|
177 | - echo ' |
|
178 | + if( $root->isDead() ) { |
|
179 | + echo ' |
|
178 | 180 | <tr> |
179 | 181 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
180 | 182 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
181 | 183 | </tr>'; |
184 | + } |
|
182 | 185 | |
183 | 186 | echo '</table>'; |
184 | 187 | } |