OK... retrieved from last night's back up. I have the Update page open and am looking at the code for the editor.
// The initial value to be displayed in the editor.
$CKEditor_initialValue = "".((isset($_GET["invalid"])?ValidatedField("2019pagecopyupdate","pc_content",false):"".$WADA2019pagecopy_update->getColumnVal("pc_content",false)."")) ."";
$CKEditor = new CKEditor();
$CKEditor->basePath = "../webassist/ckeditor/";
$CKEditor_config = array();
$CKEditor_config["wa_preset_name"] = "2018";
$CKEditor_config["wa_preset_file"] = "2018.xml";
$CKEditor_config["width"] = "700px";
$CKEditor_config["height"] = "350px";
$CKEditor_config["docType"] = "<" ."!" ."DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">";
$CKEditor_config["contentsLanguage"] = "";
$CKEditor_config["dialog_startupFocusTab"] = false;
$CKEditor_config["fullPage"] = false;
$CKEditor_config["tabSpaces"] = 4;
$CKEditor_config["toolbar"] = array(
array( 'Source','-','Save','NewPage','Preview','-','Templates'),
array( 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Print','SpellChecker','Scayt'),
array( 'Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'),
('/'),
array( 'Bold','Italic','Underline','Strike','-','Subscript','Superscript'),
array( 'NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'),
array( 'Link','Unlink','Anchor'),
array( 'Table','HorizontalRule','SpecialChar','PageBreak'),
('/'),
array( 'Styles','Format'),
array( 'TextColor'),
array( 'Maximize','ShowBlocks','-','About'));
$CKEditor_config["contentsLangDirection"] = "ltr";
$CKEditor_config["entities"] = false;
$CKEditor_config["forcePasteAsPlainText"] = true;
$CKEditor->editor("pc_content", $CKEditor_initialValue, $CKEditor_config);