All Topics
Fatal error: Call to undefined function cac_is_settings_screen()
Hi there,
Getting this error on this file:
Fatal error: Call to undefined function cac_is_settings_screen() in …/plugins/admin-columns-pro/classes/ms-user/storage_model/ms-user.php on line 60
When viewing all users in multisite network admin (http://blog.com/wp-admin/network/users.php)
Fixed it by changing
if ( cac_is_settings_screen() ) {
$columns = array_merge( get_column_headers( 'users' ), $columns );
}
to
if( function_exists('cac_is_settings_screen') ) {
if ( cac_is_settings_screen() ) {
$columns = array_merge( get_column_headers( 'users' ), $columns );
}
}
Any ideas as to why this has just started happening?
Recently updated to latest version
thanks
Tom
You must be logged in to reply to this topic.