Index: privatemsg.author-pane.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/privatemsg/privatemsg.author-pane.inc,v
retrieving revision 1.1.2.8
diff -u -p -r1.1.2.8 privatemsg.author-pane.inc
--- privatemsg.author-pane.inc	10 Aug 2010 19:54:18 -0000	1.1.2.8
+++ privatemsg.author-pane.inc	9 Nov 2010 17:55:52 -0000
@@ -9,7 +9,7 @@
 /**
  * Implements hook_preprocess_author_pane().
  */
-function privatemsg_preprocess_author_pane(&$variables) {
+function template_preprocess_author_pane(&$variables) {
   global $user;
   $account = $variables['account'];
   $account_id = $account->uid;
Index: privatemsg.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/privatemsg/privatemsg.module,v
retrieving revision 1.70.2.30.2.91.2.113
diff -u -p -r1.70.2.30.2.91.2.113 privatemsg.module
--- privatemsg.module	6 Sep 2010 17:47:17 -0000	1.70.2.30.2.91.2.113
+++ privatemsg.module	9 Nov 2010 17:55:53 -0000
@@ -598,7 +598,7 @@ function privatemsg_theme() {
   );
 }
 
-function privatemsg_preprocess_privatemsg_view(&$vars) {
+function template_preprocess_privatemsg_view(&$vars) {
 //  drupal_set_message('<pre>'. print_r($vars,1 ) . '</pre>');
 
   $message = $vars['message'];
@@ -631,7 +631,7 @@ function privatemsg_preprocess_privatems
   }
 }
 
-function privatemsg_preprocess_privatemsg_recipients(&$vars) {
+function template_preprocess_privatemsg_recipients(&$vars) {
   $vars['participants'] = ''; // assign a default empty value
   if (isset($vars['message']['participants'])) {
     $vars['participants'] = _privatemsg_format_participants($vars['message']['participants']);
@@ -2527,4 +2527,4 @@ function privatemsg_views_api() {
     'api' => 2,
     'path' => drupal_get_path('module', 'privatemsg') . '/views',
   );
-}
\ No newline at end of file
+}
