For me it was a problem with my theme not compliant with changes in 2.6.
Try sticking the following at the bottom of your style.css file (from WP admin, click “Design” -> “Theme editor” and click on “Stylesheet (style.css)” link on the bottom-right):
img.alignleft, div.alignleft {
float:left;
margin:0 0.5em 0.5em 0;
}
img.alignright, div.alignright {
float:right;
margin:0 0 0.5em 0.5em;
}
img.aligncentered, div.aligncentered {
text-align:center;
margin:0 auto;
}