You are here

function glossify_theme_registry_alter in Glossify 6.3

Implementation of hook_theme_registry_alter().

File

./glossify.module, line 164

Code

function glossify_theme_registry_alter(&$theme_registry) {
  if (!empty($theme_registry['comment_view'])) {
    $theme_registry['comment_view']['function'] = 'glossify_theme_comment_view';
  }
}