diff --git a/flowplayer/flowplayer.module b/flowplayer/flowplayer.module
index 13e3019..a33da50 100644
--- a/flowplayer/flowplayer.module
+++ b/flowplayer/flowplayer.module
@@ -76,7 +76,7 @@ function flowplayer_menu() {
  * Implementation of swftools_flashvars hook.
  * Return an array of flashvars.
  */
-function flowplayer_swftools_flashvars($action, &$methods, &$vars) {
+function flowplayer_swftools_flashvars($action, $methods, $vars) {
 
   // Pad out the user parameters (like those passed through swf(), with our
   // configured defaults, allowing the user parameters to dominate.
diff --git a/flowplayer3/flowplayer3.module b/flowplayer3/flowplayer3.module
index b30a9a7..fc92cec 100644
--- a/flowplayer3/flowplayer3.module
+++ b/flowplayer3/flowplayer3.module
@@ -101,7 +101,7 @@ function flowplayer3_menu() {
  * @return
  *   Return an array of flashvars needed to allow the player to work.
  */
-function flowplayer3_swftools_flashvars($action, &$methods, &$vars) {
+function flowplayer3_swftools_flashvars($action, $methods, $vars) {
   
   // Initialise array of FlowPlayer3 configuration settings
   $flowplayer = array();
diff --git a/genericplayers.module b/genericplayers.module
index 090c86e..fbd1986 100644
--- a/genericplayers.module
+++ b/genericplayers.module
@@ -105,7 +105,7 @@ function swftools_admin_generic_form() {
  * Implementation of swftools_flashvars hook.
  *
  */
-function genericplayers_swftools_flashvars($action, &$methods, &$vars) {
+function genericplayers_swftools_flashvars($action, $methods, $vars) {
   // All we need to do is assign the 'file_url' variable to our preferred place on the flashvars array.
   if ($vars->othervars['file_url']) {
     $vars->flashvars['file_url'] = $vars->othervars['file_url'];
diff --git a/imagerotator/imagerotator.module b/imagerotator/imagerotator.module
index 079a648..74aec87 100644
--- a/imagerotator/imagerotator.module
+++ b/imagerotator/imagerotator.module
@@ -116,7 +116,7 @@ function _imagerotator_settings($player) {
  * Implementation of swftools_flashvars hook.
  * Return an array of flashvars.
  */
-function imagerotator_swftools_flashvars($action, &$methods, &$vars) {
+function imagerotator_swftools_flashvars($action, $methods, $vars) {
 
   // Pad out the user parameters (like those passed through swf(), with our
   // configured defaults, allowing the user parameters to dominate.
diff --git a/onepixelout/onepixelout.module b/onepixelout/onepixelout.module
index fc9e27e..4569121 100755
--- a/onepixelout/onepixelout.module
+++ b/onepixelout/onepixelout.module
@@ -92,7 +92,7 @@ function _onepixelout_settings() {
  * Implementation of swftools_flashvars hook.
  * Return an array of flashvars.
  */
-function onepixelout_swftools_flashvars($action, &$methods, &$vars) {
+function onepixelout_swftools_flashvars($action, $methods, $vars) {
   
   // Generate sequential player ids
   static $player_id = 1;
diff --git a/simpleviewer/simpleviewer.module b/simpleviewer/simpleviewer.module
index fe03cb3..4a538a3 100644
--- a/simpleviewer/simpleviewer.module
+++ b/simpleviewer/simpleviewer.module
@@ -66,7 +66,7 @@ function simpleviewer_menu() {
  * Other arrays can also be modified.
  *
  */
-function simpleviewer_swftools_flashvars($action, &$methods, &$vars) {
+function simpleviewer_swftools_flashvars($action, $methods, $vars) {
   $sv_vars = _simpleviewer_vars();
 
   // Here we only assign 'other' settings to othervars, and return 'swf' settings
diff --git a/wijering/wijering.module b/wijering/wijering.module
index c565eb8..8c710f5 100644
--- a/wijering/wijering.module
+++ b/wijering/wijering.module
@@ -140,7 +140,7 @@ function _wijering_settings($player) {
  * Implementation of swftools_flashvars hook.
  * Return an array of flashvars.
  */
-function wijering_swftools_flashvars($action, &$methods, &$vars) {
+function wijering_swftools_flashvars($action, $methods, $vars) {
 
   // Pad out the user parameters (like those passed through swf(), with our
   // configured defaults, allowing the user parameters to dominate.
diff --git a/wijering4/wijering4.module b/wijering4/wijering4.module
index 8cde54f..0195cc8 100644
--- a/wijering4/wijering4.module
+++ b/wijering4/wijering4.module
@@ -159,7 +159,7 @@ function _wijering4_settings($player) {
  * Implementation of swftools_flashvars hook.
  * Return an array of flashvars.
  */
-function wijering4_swftools_flashvars($action, &$methods, &$vars) {
+function wijering4_swftools_flashvars($action, $methods, $vars) {
 
   // Pad out the user parameters (like those passed through swf(), with our
   // configured defaults, allowing the user parameters to dominate.
