Version 2.4.2 fatal error
-
Hello,
The latest version of this plugin results in a fatal error in both the frontend and the backend.
The problem is in repeater-for-gravity-forms/repeater-for-gravity-forms.php:
function __construct(){
include_once SUPERADDONS_GF_REPEATER_PLUGIN_PATH.”yeekit/document.php”;
add_action( “yeeaddons_gf_repeater_settings”, array($this,”yeeaddons_gf_repeater_settings”),10);
add_action( ‘init’, array(‘load_textdomain’ ));
}Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, array callback must have exactly two members
I think it should have been:
add_action( ‘init’, array($this,’load_textdomain’ ));
The topic ‘Version 2.4.2 fatal error’ is closed to new replies.