Index: lams_central/web/fckeditor/editor/fckdialog.html =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/editor/Attic/fckdialog.html,v diff -u -r1.6 -r1.7 --- lams_central/web/fckeditor/editor/fckdialog.html 15 May 2008 04:31:57 -0000 1.6 +++ lams_central/web/fckeditor/editor/fckdialog.html 7 Jul 2008 05:42:09 -0000 1.7 @@ -25,7 +25,6 @@ - @@ -177,16 +108,15 @@ - + - - - - - - - +
+ +
Index: lams_central/web/fckeditor/editor/plugins/wikilink/fckplugin.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/editor/plugins/wikilink/Attic/fckplugin.js,v diff -u -r1.4 -r1.5 --- lams_central/web/fckeditor/editor/plugins/wikilink/fckplugin.js 3 Jun 2008 05:41:54 -0000 1.4 +++ lams_central/web/fckeditor/editor/plugins/wikilink/fckplugin.js 7 Jul 2008 05:42:09 -0000 1.5 @@ -1,5 +1,5 @@ // Register the related command. -FCKCommands.RegisterCommand( 'WikiLink', new FCKDialogCommand( 'WikiLink', FCKLang.WikiLinkDlgTitle, FCKPlugins.Items['wikilink'].Path + 'fck_wikilink.jsp', 280, 260 ) ) ; +FCKCommands.RegisterCommand( 'WikiLink', new FCKDialogCommand( 'WikiLink', FCKLang.WikiLinkDlgTitle, FCKPlugins.Items['wikilink'].Path + 'fck_wikilink.jsp', 280, 230 ) ) ; // Create the "WikiLink" toolbar button. var oWikiLinkItem = new FCKToolbarButton( 'WikiLink', FCKLang.WikiLinkBtn ) ; @@ -10,9 +10,9 @@ // The object used for all WikiLink operations. var FCKWikiLinks = new Object() ; -FCKWikiLinks.InsertWikiLink = function ( linkName, wikiName ) +FCKWikiLinks.InsertWikiLink = function ( linkAlias, wikiName ) { - FCK.InsertHtml( '' + linkName + '' ); + FCK.InsertHtml( '' + linkAlias + '' ); }