function theme_diff_header_line in Diff 6
Same name and namespace in other branches
- 5.2 DiffEngine.php \theme_diff_header_line()
- 6.2 diff.theme.inc \theme_diff_header_line()
- 7.3 diff.theme.inc \theme_diff_header_line()
- 7.2 diff.theme.inc \theme_diff_header_line()
Theme function for a header line in the diff.
1 theme call to theme_diff_header_line()
File
- ./
diff.module, line 738 - Provides functionality to show a diff between two node revisions.
Code
function theme_diff_header_line($lineno) {
return '<strong>' . t('Line %lineno', array(
'%lineno' => $lineno,
)) . '</strong>';
}