You are here

function support_theme_registry_alter in Support Ticketing System 6

Implementation of hook_theme_registry_alter().

File

./support.module, line 310
support.module

Code

function support_theme_registry_alter(&$theme_registry) {
  if (!empty($theme_registry['comment_wrapper'])) {
    $theme_registry['comment_wrapper']['function'] = 'support_comment_wrapper';
  }
}