by axew3 » Thu Oct 12, 2023 9:33 pm
So that if you change into wp_w3all.php
Code: Select all
add_action( 'wp_login', 'wp_w3all_phpbb_login', 10, 2);
into
Code: Select all
if (function_exists('wp_w3all_phpbb_login')) {
add_action( 'wp_login', 'wp_w3all_phpbb_login', 10, 2);
}
that maybe you have try already, but if not, what it happen, the flow result to be ok and the user correctly logged?
So that if you change into wp_w3all.php
[code] add_action( 'wp_login', 'wp_w3all_phpbb_login', 10, 2);[/code]
into
[code] if (function_exists('wp_w3all_phpbb_login')) {
add_action( 'wp_login', 'wp_w3all_phpbb_login', 10, 2);
}[/code]
that maybe you have try already, but if not, what it happen, the flow result to be ok and the user correctly logged?