bracks iThemes security checks
-
This plugin doesn’t allow for admin_post_nopriv_{$action} action call as it blocks the loading of admin-post.php
I feel this file should be whitelisted
This patch will do it/** * Dashboard Redirect. * * @since 0.1 * * @see wp_redirect() Used to redirect disallowed users to chosen URL. */ function dashboard_redirect() { /** @global string $pagenow */ global $pagenow; if( 'admin-post.php' === $pagenow ){ return; } if ( 'profile.php' != $pagenow || ! $this->settings['enable_profile'] ) { wp_redirect( $this->settings['redirect_url'] ); exit; } }The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘bracks iThemes security checks’ is closed to new replies.