![Picture of Scott Lucas Picture of Scott Lucas](/graphics/unknown.gif)
Scott Lucas - 2017-02-20 12:12:39
Hello,
There is a line in oauth_client.php which needs moving inside the foreach loop. On the version I am using it is line 1622. At the moment if multiple files are uploaded, only the last one is removed from the $post_values array.
Eg:
$post_files[$name] = $file;
}
UnSet($parameters[$name]);
Becomes:
$post_files[$name] = $file;
UnSet($parameters[$name]);
}
Thanks again for the great class,
Kind Regards
Scott