? .git
? tokenauth.985624.patch
Index: tokenauth.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/tokenauth/Attic/tokenauth.module,v
retrieving revision 1.11.4.31
diff -u -p -r1.11.4.31 tokenauth.module
--- tokenauth.module	2 Nov 2010 06:04:48 -0000	1.11.4.31
+++ tokenauth.module	15 Dec 2010 16:03:25 -0000
@@ -134,8 +134,11 @@ function tokenauth_url_outbound_alter(&$
     if (is_array($options['query'])) {
       $options['query']['token'] = $token;
     }
+    elseif (!$options['query']) {
+      $options['query'] = 'token=' . $token;
+    }
     else {
-      $options['query'] .= 'token=' . $token;
+      $options['query'] .= '&token=' . $token;
     }
   }
 }
