function theme_diff_header_line in Diff 5.2
Same name and namespace in other branches
- 6.2 diff.theme.inc \theme_diff_header_line()
- 6 diff.module \theme_diff_header_line()
- 7.3 diff.theme.inc \theme_diff_header_line()
- 7.2 diff.theme.inc \theme_diff_header_line()
1 theme call to theme_diff_header_line()
File
- ./
DiffEngine.php, line 1160
Code
function theme_diff_header_line($lineno) {
return '<strong>' . t('Line %lineno', array(
'%lineno' => $lineno,
)) . '</strong>';
}