Index: lams_central/web/fckeditor/editor/plugins/wikilink/fck_wikilink.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/editor/plugins/wikilink/Attic/fck_wikilink.jsp,v diff -u -r1.6 -r1.7 --- lams_central/web/fckeditor/editor/plugins/wikilink/fck_wikilink.jsp 14 Oct 2008 03:10:30 -0000 1.6 +++ lams_central/web/fckeditor/editor/plugins/wikilink/fck_wikilink.jsp 15 Oct 2008 23:20:52 -0000 1.7 @@ -26,9 +26,8 @@ var FCKWikiLinks = oEditor.FCKWikiLinks ; // Get the array of possible wiki links from the opening window -wikiArray = window.top.opener.parent.wikiLinkArray; +wikiArray = window.parent.InnerDialogLoaded().FCK.wikiLinkArray - function init() { // First of all, translate the dialog box texts Index: lams_tool_wiki/web/pages/authoring/basic.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_wiki/web/pages/authoring/basic.jsp,v diff -u -r1.4 -r1.5 --- lams_tool_wiki/web/pages/authoring/basic.jsp 15 Oct 2008 03:28:36 -0000 1.4 +++ lams_tool_wiki/web/pages/authoring/basic.jsp 15 Oct 2008 23:20:26 -0000 1.5 @@ -201,13 +201,31 @@ Index: lams_tool_wiki/web/pages/learning/wiki.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_wiki/web/pages/learning/wiki.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_wiki/web/pages/learning/wiki.jsp 15 Oct 2008 03:28:36 -0000 1.7 +++ lams_tool_wiki/web/pages/learning/wiki.jsp 15 Oct 2008 23:20:26 -0000 1.8 @@ -401,6 +401,8 @@ if (!${wikiDTO.allowLearnerInsertLinks}) { hideToolbarItem(editorInstance, 'Link'); } + + editorInstance.wikiLinkArray = wikiLinkArray; } --> Index: lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp,v diff -u -r1.6 -r1.7 --- lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp 15 Oct 2008 03:28:36 -0000 1.6 +++ lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp 15 Oct 2008 23:20:26 -0000 1.7 @@ -296,6 +296,11 @@ document.getElementById("monitoringForm").submit(); } + function FCKeditor_OnComplete(editorInstance) + { + editorInstance.wikiLinkArray = wikiLinkArray; + } + -->