this shows up in dashboard:
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /home/serenitycreams/public_html/wp-includes/functions.php on line 3570
line 3560-3580:
/**
* Filter whether to trigger an error for deprecated arguments.
*
* @since 3.0.0
*
* @param bool $trigger Whether to trigger the error for deprecated arguments. Default true.
*/
if ( WP_DEBUG && apply_filters( ‘deprecated_argument_trigger_error’, true ) ) {
if ( function_exists( ‘__’ ) ) {
if ( ! is_null( $message ) )
trigger_error( sprintf( __(‘%1$s was called with an argument that is deprecated since version %2$s! %3$s’), $function, $version, $message ) );
else
trigger_error( sprintf( __(‘%1$s was called with an argument that is deprecated since version %2$s with no alternative available.’), $function, $version ) );
} else {
if ( ! is_null( $message ) )
trigger_error( sprintf( ‘%1$s was called with an argument that is deprecated since version %2$s! %3$s’, $function, $version, $message ) );
else
trigger_error( sprintf( ‘%1$s was called with an argument that is deprecated since version %2$s with no alternative available.’, $function, $version ) );
}
}
}
thanks…