Index: user_wall.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/user_wall/user_wall.module,v
retrieving revision 1.1
diff -u -F^f -r1.1 user_wall.module
--- user_wall.module	24 Aug 2009 02:04:16 -0000	1.1
+++ user_wall.module	24 Aug 2009 20:34:24 -0000
@@ -29,7 +29,7 @@ function user_wall_menu() {
   $items['user/%/wall'] = array(
     'title' => 'Wall',
     'page callback' => 'theme',
-    'page arguments' => array('wall', 1),
+    'page arguments' => array('user_wall', 1),
     'access arguments' => array('view walls'),
     'type' => MENU_CALLBACK,
   );
@@ -272,17 +272,17 @@ function theme_user_wall($account = NULL
   
   // Find the wall posts.
   if ($account->uid) {
-    $posts = wall_get_posts($account->uid, $limit);
+    $posts = user_wall_get_posts($account->uid, $limit);
   }
   if ($node->nid) {
-    $posts = wall_get_posts(0, $node->nid, $limit);
+    $posts = user_wall_get_posts(0, $node->nid, $limit);
   }
   
   // Get posts for this wall and theme.
   if (count($posts)) {
     $output = '<ul>';
     foreach ($posts as $post) {
-      $output .= '<li>'. theme('wall_post', $post) .'</li>';
+      $output .= '<li>'. theme('user_wall_post', $post) .'</li>';
     }
     $output .= '</ul>';
     $output .= theme('pager');
@@ -294,7 +294,7 @@ function theme_user_wall($account = NULL
   // Bring in the post form.
   if (user_access('post on walls')) {
     if ($account->uid && $user->uid != $account->uid) {
-      $output .= drupal_get_form('wall_post_form', $account->uid); 
+      $output .= drupal_get_form('user_wall_post_form', $account->uid); 
     }
     else if ($node->nid) {
       $members = db_query(og_list_users_sql(1), $node->nid);
@@ -387,7 +387,7 @@ function user_wall_post_form($form_state
  */
 function user_wall_post_form_submit($form, $form_state) {
   global $user;
-  if (wall_save_post($user->uid, $form_state['values']['receiver'], $form_state['values']['message'], $form_state['values']['group'])) {
+  if (user_wall_save_post($user->uid, $form_state['values']['receiver'], $form_state['values']['message'], $form_state['values']['group'])) {
     drupal_set_message('Your message has been posted.');
   }
   return $form_values['group'] ? "og/wall/{$form_state['values']['group']}" : "user/{$form_state['values']['receiver']}/wall";
