By gábor hojtsy on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
Comment object language codes used 'language' in Drupal 7, and as part of a standardization effort to change to 'langcode' where the data is not a language object, the comment object was changed as well.
Drupal 7:
// Figure out the comment language.
$comment = comment_load($cid);
return $comment->language;
Drupal 8:
// Figure out the comment language.
$comment = comment_load($cid);
return $comment->langcode;
Impacts:
Module developers