View Single Post
02-08-2011, 06:21 PM   #34
freak99
Junior Member
 
Join Date: Feb 2011
Posts: 20
Rep Power: 0
freak99 is getting browny points
Quote:
Originally Posted by Jeff View Post
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?
freak99 is offline   Reply With Quote