diff options
author | Chris Goldthorpe | 2009-07-15 22:35:11 +0000 |
---|---|---|
committer | Chris Goldthorpe | 2009-07-15 22:35:11 +0000 |
commit | bb2e055f437ef605109678e6b4218bf850508137 (patch) | |
tree | 4af8d9e0b4ac558a83d7ab458caf110e15c13d50 /org.eclipse.ui.intro | |
parent | 17c8128f5281662c346f19002bb477da04706180 (diff) | |
download | eclipse.platform.ua-bb2e055f437ef605109678e6b4218bf850508137.tar.gz eclipse.platform.ua-bb2e055f437ef605109678e6b4218bf850508137.tar.xz eclipse.platform.ua-bb2e055f437ef605109678e6b4218bf850508137.zip |
Bug 283136 [Intro] AlwaysWelcomeCheckbox - incorrect URL when creating HTML content
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r-- | org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java index d79ca8bc4..240155456 100644 --- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java +++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * Mike Evans - Fix for Bug 283136 *******************************************************************************/ package org.eclipse.ui.intro.contentproviders; @@ -72,7 +73,7 @@ public class AlwaysWelcomeCheckbox implements IIntroContentProvider,IIntroAction out.print("<div id=\""+id+"\"><input type=\"checkbox\" "+ //$NON-NLS-1$//$NON-NLS-2$ "onClick=window.location="+ //$NON-NLS-1$ "\"http://org.eclipse.ui.intro/runAction?"+ //$NON-NLS-1$ - "pluginId=org.eclipse.platform&"+ //$NON-NLS-1$ + "pluginId=org.eclipse.ui.intro&"+ //$NON-NLS-1$ "class="+this.getClass().getName()+"\" "); //$NON-NLS-1$ //$NON-NLS-2$ if (alwaysShowIntro) |