﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
18460,admin css class 'branch-3-2' and locale 'fr_FR',olivM,ryan,"In the backend of WordPress 3.2, there is an issue linked to the use of locale 'fr_FR' when generating the CSS class which define WordPress version.

In french notation, the numeric separator is comma. so on line 90 of file wp-admin/admin-header.php isn't adapted :

{{{
$admin_body_class .= ' branch-' . str_replace( '.', '-', floatval( $wp_version ) );
}}}

a possible solution :
{{{
$admin_body_class .= ' branch-' . str_replace( array('.', ','), '-', floatval( $wp_version ) );
}}}

",defect (bug),closed,normal,3.3,Administration,3.2,minor,fixed,has-patch,
