Remove debug cruft. Props ocean90. fixes #21315

git-svn-id: https://develop.svn.wordpress.org/trunk@21349 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2012-07-26 15:01:44 +00:00
parent 1f5a10a0aa
commit c2651f05f8

View File

@ -1233,14 +1233,12 @@ function get_settings_errors( $setting = '', $sanitize = false ) {
}
// Check global in case errors have been added on this pageload
if ( ! count( $wp_settings_errors ) ) {
if ( ! count( $wp_settings_errors ) )
return array();
}
// Filter the results to those of a specific setting if one was set
if ( $setting ) {
foreach ( (array) $wp_settings_errors as $key => $details ) {
debug_log( $details['setting'] );
if ( $setting == $details['setting'] )
$setting_errors[] = $wp_settings_errors[$key];
}