Quote:
Originally Posted by Jeff
Hmm, I never use those products but I am imagining this MIGHT work:
Open vbbridge.php and find this line:
Code:
if ( !preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN') ):
Change to:
Code:
if ( !preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN') or defined('XMLRPC_REQUEST')):
|
Jeff, the above code didn't work, but this seems to.
Code:
if (( !preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN')) and !defined('XMLRPC_REQUEST')):
Look ok to you?