function rtf::nl2par in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/rtf/rtf_export.inc \rtf::nl2par()
- 7 modules/rtf/rtf_export.inc \rtf::nl2par()
- 7.2 modules/rtf/rtf_export.inc \rtf::nl2par()
1 call to rtf::nl2par()
File
- ./
class_rtf.php, line 170
Class
Code
function nl2par($text) {
$text = str_replace("\n", "\\par ", $text);
return $text;
}