Index: oauth_common.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/oauth_common/oauth_common.module,v
retrieving revision 1.9
diff -u -p -r1.9 oauth_common.module
--- oauth_common.module	20 Feb 2010 22:37:03 -0000	1.9
+++ oauth_common.module	24 Feb 2011 14:23:07 -0000
@@ -153,7 +153,7 @@ function oauth_common_menu() {
 
   $menu['oauth/authorize'] = array(
     'page callback' => 'drupal_get_form',
-    'page arguments' => array('_oauth_common_authorize'),
+    'page arguments' => array('oauth_common_authorize'),
   ) + $page_base;
 
   $menu['oauth/authorized'] = array(
@@ -493,7 +493,7 @@ function oauth_common_get_tokens($consum
 
 /**
  * Create a new context with defaults appropriately set from schema.
- * 
+ *
  * @return stdClass
  *  An context initialized with the default values.
  */
Index: oauth_common.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/oauth_common/oauth_common.pages.inc,v
retrieving revision 1.6
diff -u -p -r1.6 oauth_common.pages.inc
--- oauth_common.pages.inc	20 Feb 2010 22:37:03 -0000	1.6
+++ oauth_common.pages.inc	24 Feb 2011 14:23:07 -0000
@@ -48,7 +48,7 @@ function _oauth_common_authorized() {
 /**
  * Form for granting access to the consumer
  */
-function _oauth_common_authorize() {
+function oauth_common_authorize() {
   module_load_include('inc', 'oauth_common');
   $req = DrupalOAuthRequest::from_request();
   $context = oauth_common_context_from_request($req);
@@ -182,7 +182,7 @@ function _oauth_common_authorize() {
   }
 }
 
-function _oauth_common_authorize_validate($form, &$form_state) {
+function oauth_common_authorize_validate($form, &$form_state) {
   $values = $form_state['values'];
   $got_permission = FALSE;
 
@@ -203,7 +203,7 @@ function _oauth_common_authorize_validat
   }
 }
 
-function _oauth_common_authorize_submit(&$form, &$form_state) {
+function oauth_common_authorize_submit(&$form, &$form_state) {
   global $user;
   $values = $form_state['values'];
   // Unserialize the stored oauth parameters
@@ -742,4 +742,4 @@ function _oauth_common_user_applications
 
   drupal_set_message(t('Added the application @name', array('@name' => $v['name'])));
   drupal_goto(sprintf('user/%d/applications', $v['uid']));
-}
\ No newline at end of file
+}
