diff --git a/devel_themer.module b/devel_themer.module index 5aaf70ee3ddee8eb938555eee8560854d1949dfa..deffeaedb676c5774bab73c823e2255cbc6a3e58 100644 --- a/devel_themer.module +++ b/devel_themer.module @@ -440,7 +440,7 @@ function devel_themer_theme_twin() { // call_user_func_array. $args = array(&$variables, $hook); foreach ($info['preprocess functions'] as $preprocess_function) { - if (drupal_function_exists($preprocess_function)) { + if (function_exists($preprocess_function)) { call_user_func_array($preprocess_function, $args); } } @@ -491,7 +491,7 @@ function devel_themer_exit() { $GLOBALS['devel_theme_calls']['request_id'] = $request_id; $GLOBALS['devel_theme_calls']['devel_themer_uri'] = url("devel_themer/variables/$request_id"); - print '\n"; + print '\n"; } }