Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5790)
+++ /CKEditor/trunk/CHANGES.html	(revision 5791)
@@ -105,4 +105,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/6000">#6000</a> : Safari and Chrome where scrolling the contents to the top when moving the focus to the editor.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/6090">#6090</a> : IE: Textarea with selection inside causes Link dialog issues.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5079">#5079</a> : Page break in lists move to above the list when you switch from WYSIWYG to HTML mode and back.</li> 
 		<li>Updated the following language files:<ul>
 			<li>Chinese Simplified;</li>
Index: /CKEditor/trunk/_source/plugins/pagebreak/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/pagebreak/plugin.js	(revision 5790)
+++ /CKEditor/trunk/_source/plugins/pagebreak/plugin.js	(revision 5791)
@@ -101,4 +101,9 @@
 				range.select();
 			}
+
+			var previous = breakObject.getPrevious();
+
+			if ( CKEDITOR.dtd[ previous.getName() ].div )
+				breakObject.move( previous );
 		}
 
