function theme_modr8_note in modr8 6
Same name and namespace in other branches
- 5 modr8_admin.inc \theme_modr8_note()
- 7 modr8_admin.inc \theme_modr8_note()
1 theme call to theme_modr8_note()
File
- ./
modr8_admin.inc, line 470
Code
function theme_modr8_note($note) {
if ($note) {
// Do not filter here (use !) since this note is sanitized after e-mailing
$note = t("Note:\n !note", array(
'!note' => $note,
));
}
return $note;
}