Hmm, so I've been seeing this error from time to time when posting. Doesn't seem to break anything but curious if know the cause? Seems like the [path] is the issue, but not sure why it says that. I've got the path filled in, which is the root (/)
==
Warning: Missing argument 3 for wp_vb_check_get_class() in
[path]/news/wp-content/plugins/vbbridge/vbbridge.php on line
147
==
From the file these are the two areas with that function.
Quote:
add_action( 'http_api_debug', 'wp_vb_check_get_class', 5, 3 );
## Get the transport class
function wp_vb_check_get_class($response, $type, $the_class )
{
global $vb;
if ($type == 'response') { $vb->wp_vb_transportclass = $the_class; }
return $response;
}
|