Undefined index errors in node--article--teaser.tpl.php)

Hi,

My logging is getting flodded with errors of these types, i have these in the en, fr and nl.

Notice: Undefined index: en in include() (regel 88 van /path-to-theme/themes/jollyness/templates/node/node--article--teaser.tpl.php).

How can we fix these.

thx..

 

Hello 

Please go to line 88 of node--article--teaser.tpl.php and replace this line

 <i class="fa <?php print $node->field_type[$node->language][0]['value'];?>"></i>

by: 

 <i class="fa <?php if (isset( $node->field_type[$node->language])) print $node->field_type[$node->language][0]['value'];?>"></i>

 

Thank you.

Works like a charm...thx :)