Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6254)
+++ /CKEditor/trunk/CHANGES.html	(revision 6255)
@@ -48,4 +48,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/6166">#6166</a> : Error on maximize command when the toolbar button is not shown.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6607">#6607</a> : Table cell "merge down" and "merge right" commands works only once.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6625">#6625</a> : BIDI: Mixed LRT/RLT direction causes incorrect behaviour.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 6254)
+++ /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 6255)
@@ -120,5 +120,7 @@
 							currentListItem = doc.createElement( paragraphName );
 							item.element.copyAttributes( currentListItem, { type:1, value:1 } );
-							dir && currentListItem.setAttribute( 'dir', dir );
+							var itemDir = item.element.getDirection() || dir;
+							itemDir &&
+								currentListItem.setAttribute( 'dir', itemDir );
 
 							// There might be a case where there are no attributes in the element after all
