Emergency contacts number 2 not displaying

Hi,

I’ve noticed that when we edit a student and put a value into the emergency contacts ‘number 2 field’ it doesn’t show on the emergency contact page. I tried numeric and text values but it refuses to display. We haven’t added any customisations. Any advice would be gratefully received .

Cheers,
John

I’ve edited modules/Students/student_view_details.php (lines 1149, 1151)

echo "<span style='font-size: 115%; font-weight: bold'>".__('Number 2').'</span><br/>';
if ($row['website'] != '') {
    echo $row['emergency1Number2'];
}

and commented out the if ($row[‘website’] != ‘’) { and closing brace with //

// if ($row['website'] != '') {
       echo $row['emergency1Number2'];
// }

which I think shows Number 2 now.

Nice one!!! Cheers!!