function _coder_review_style_xhtml_warning in Coder 7
Define the warning callbacks.
1 string reference to '_coder_review_style_xhtml_warning'
- coder_review_style_reviews in coder_review/
includes/ coder_review_style.inc - Implements hook_reviews().
File
- coder_review/
includes/ coder_review_style.inc, line 247 - This include file implements coder functionality for Drupal Standards.
Code
function _coder_review_style_xhtml_warning() {
return t('use lowercase html tags to comply with <a href="@xhtml">XHTML</a>', array(
'@xhtml' => 'http://www.w3.org/TR/xhtml1/#h-4.2',
));
}