Index: /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java
===================================================================
--- /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java	(revision 26898)
+++ /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java	(revision 26899)
@@ -18,8 +18,10 @@
 import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.actions.ExtensionFileFilter;
+import org.openstreetmap.josm.data.Version;
 import org.openstreetmap.josm.data.osm.DataSet;
 import org.openstreetmap.josm.gui.MapFrame;
 import org.openstreetmap.josm.plugins.Plugin;
 import org.openstreetmap.josm.plugins.PluginInformation;
+import org.openstreetmap.josm.plugins.graphview.plugin.data.JOSMDataSource;
 import org.openstreetmap.josm.plugins.imageryxmlbounds.actions.ShowBoundsListAction;
 import org.openstreetmap.josm.plugins.imageryxmlbounds.actions.ShowBoundsPropertiesAction;
@@ -74,5 +76,7 @@
 		Main.toolbar.register(selectionAction);
 		// Allow JOSM to download *.imagery.xml files
-		Main.main.menu.openLocation.addDownloadTaskClass(DownloadXmlBoundsTask.class);
+		if (Version.getInstance().getVersion() >= 4523) {
+		    Main.main.menu.openLocation.addDownloadTaskClass(DownloadXmlBoundsTask.class);
+		}
 	}
 
