Index: /CKEditor/branches/prototype/_source/plugins/newpage/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/newpage/plugin.js	(revision 2994)
+++ /CKEditor/branches/prototype/_source/plugins/newpage/plugin.js	(revision 2995)
@@ -13,12 +13,9 @@
 	init : function( editor, pluginPath )
 	{
-		var config = editor.config.newpage,
-			data = config.resetToStartupContent ? editor.getData() : config.newPageContent;
-
 		editor.addCommand( 'newpage',
 			{
 				exec : function( editor )
 				{
-					editor.setData( data );
+					editor.setData( editor.config.newpage_html );
 				}
 			});
@@ -32,7 +29,3 @@
 });
 
-CKEDITOR.config.newpage =
-{
-	resetToStartupContent : false,
-	newPageContent : ''
-};
+CKEDITOR.config.newpage_html = '';
