function htmltidy_filter_tips in HTML Tidy 6
File
- ./
htmltidy.module, line 184 - The theme system, which controls the output of Drupal. The htmltidy module uses Tidy (http://tidy.sf.net) to properly format HTML for saving and display.
Code
function htmltidy_filter_tips($delta, $format, $long = FALSE) {
switch ($delta) {
case 0:
if ($long) {
return t('Submitted HTML will be sanitized and cleaned for compliance automatically before output.');
}
else {
return t('Submitted HTML will be sanitized and cleaned for compliance automatically before output.');
}
break;
}
}