You are here

function theme_comment_og_edit_msg in Comment OG 6

Theme function that adds HTML to the "Edited by" message

Parameters

msg: "Edited by" message defined by the user

Return value

themed message

1 theme call to theme_comment_og_edit_msg()
comment_og_admin_edit_msg in ./comment_og.module
Helper function that builds the "Edited by" message when a group administrator edits a message

File

./comment_og.module, line 412

Code

function theme_comment_og_edit_msg($message) {
  return $message ? "\n\n" . '<p class="edit-msg">' . $message . '</p>' : '';
}