Dir Sir and Madam,
I receive following messages multiple times
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wordpress/wp-content/plugins/chronoforms6/cegcore2/gcloader.php on line 63
In PHP 7.0 get_magic_quotes_gpc() is not maintend and included anymore. It is posible to remove this block from cegcore2/gcloader.php ?
Warning: Creating default object from empty value in /var/www/html/wordpress/wp-content/plugins/chronoforms6/cegcore2/libs/helper.php on line 22
cegcore2/libs/helper.php on line 22 could maybe fixed with
is it posible to add this to the plugin?
I receive following messages multiple times
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wordpress/wp-content/plugins/chronoforms6/cegcore2/gcloader.php on line 63
In PHP 7.0 get_magic_quotes_gpc() is not maintend and included anymore. It is posible to remove this block from cegcore2/gcloader.php ?
if(get_magic_quotes_gpc()){
function stripslashes_gpc(&$value){
$value = stripslashes($value);
}
array_walk_recursive($_GET, 'stripslashes_gpc');
array_walk_recursive($_POST, 'stripslashes_gpc');
array_walk_recursive($_COOKIE, 'stripslashes_gpc');
array_walk_recursive($_REQUEST, 'stripslashes_gpc');
}
Warning: Creating default object from empty value in /var/www/html/wordpress/wp-content/plugins/chronoforms6/cegcore2/libs/helper.php on line 22
cegcore2/libs/helper.php on line 22 could maybe fixed with
$this->_vars ="";
if(isset($view->_vars ) && $view->_vars != ""){
$this->_vars = &$view->_vars;
}
$this->data = "";
if(isset($view->data ) && $view->data!= ""){
$this->_vars = &$view->data;
}
is it posible to add this to the plugin?