|
@@ 316-319 (lines=4) @@
|
| 313 |
|
</td> |
| 314 |
|
<td hidden><?php |
| 315 |
|
if ($husb->isDead() && $wife->isDead()) { echo 'Y'; } |
| 316 |
|
if ($husb->isDead() && !$wife->isDead()) { |
| 317 |
|
if ($wife->getSex() == 'F') { echo 'H'; } |
| 318 |
|
if ($wife->getSex() == 'M') { echo 'W'; } // male partners |
| 319 |
|
} |
| 320 |
|
if (!$husb->isDead() && $wife->isDead()) { |
| 321 |
|
if ($husb->getSex() == 'M') { echo 'W'; } |
| 322 |
|
if ($husb->getSex() == 'F') { echo 'H'; } // female partners |
|
@@ 320-323 (lines=4) @@
|
| 317 |
|
if ($wife->getSex() == 'F') { echo 'H'; } |
| 318 |
|
if ($wife->getSex() == 'M') { echo 'W'; } // male partners |
| 319 |
|
} |
| 320 |
|
if (!$husb->isDead() && $wife->isDead()) { |
| 321 |
|
if ($husb->getSex() == 'M') { echo 'W'; } |
| 322 |
|
if ($husb->getSex() == 'F') { echo 'H'; } // female partners |
| 323 |
|
} |
| 324 |
|
if (!$husb->isDead() && !$wife->isDead()) { echo 'N'; } ?> |
| 325 |
|
</td> |
| 326 |
|
<td hidden><?php |