Thread: WP User<vB User
View Single Post
03-23-2011, 04:38 PM   #12
Jeff
Administrator
 
Jeff's Avatar
 
Join Date: Jul 2010
Posts: 402
Rep Power: 10
Jeff is getting browny points
This might fix your issue. Change this code in vbbridge.php

Code:
if ( (!preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN') and !defined('XMLRPC_REQUEST') and !$_GET['preview'] and !$install) or (defined('USE_ADMINCP_BRIDGE') and !$install)):
to:

Code:
if ( (!preg_match('#wp-admin#', $_POST['redirect_to']) and !preg_match('#dashboard#', $_POST['redirect_to']) and !defined('WP_ADMIN') and !defined('XMLRPC_REQUEST') and !$_GET['preview'] and !$install) or (defined('USE_ADMINCP_BRIDGE') and !$install)):
Let me know if that fixes it for you.
Jeff is offline   Reply With Quote