Ticket #18460: 18460.patch
File 18460.patch, 672 bytes (added by , 14 years ago) |
---|
-
wp-admin/admin-header.php
87 87 if ( is_rtl() ) 88 88 $admin_body_class .= ' rtl'; 89 89 90 $admin_body_class .= ' branch-' . str_replace( '.', '-', floatval( $wp_version ) );90 $admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( $wp_version ) ); 91 91 $admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', $wp_version ) ); 92 92 $admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' ); 93 93