• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.
Resource icon

XenScripts: Replace Deprecated WordPress Hook

The function xf_swf_post_params needs to be replaced. The hook swfupload_post_params is deprecated.

PHP:
function xf_swf_post_params($params)
{
    $params['auth_cookie'] = $_COOKIE[xf_session];
    return $params;
}

// add_filter('swfupload_post_params', 'xf_swf_post_params');
add_filter('upload_post_params', 'xf_swf_post_params');

The function is located in the xf_replacement_cookie_functions.php file.
Author
LPH
Views
429
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from LPH

Top