Index: zen-internals/template.theme-registry.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/zen/zen-internals/template.theme-registry.inc,v
retrieving revision 1.7
diff -u -p -r1.7 template.theme-registry.inc
--- zen-internals/template.theme-registry.inc	3 Nov 2009 18:27:44 -0000	1.7
+++ zen-internals/template.theme-registry.inc	20 Jan 2010 20:26:12 -0000
@@ -48,7 +48,7 @@ function _zen_theme(&$existing, $type, $
       if (function_exists($theme . '_preprocess_' . $hook)) {
         $existing[$hook]['preprocess functions'][] = $theme . '_preprocess_' . $hook;
       }
-      // Now add the process functions.
+      // Add base theme process functions.
       foreach ($base_themes as $base_theme) {
         if (function_exists($base_theme . '_process')) {
           $existing[$hook]['preprocess functions'][] = $base_theme . '_process';
@@ -57,6 +57,13 @@ function _zen_theme(&$existing, $type, $
           $existing[$hook]['preprocess functions'][] = $base_theme . '_process_' . $hook;
         }
       }
+      // Add the theme process functions.
+      if (function_exists($theme . '_process')) {
+        $existing[$hook]['preprocess functions'][] = $theme . '_process';
+      }
+      if (function_exists($theme . '_process_' . $hook)) {
+        $existing[$hook]['preprocess functions'][] = $theme . '_process_' . $hook;
+      }
     }
   }
 
