Index: /trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/LoadAndZoomHandler.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/LoadAndZoomHandler.java	(revision 14376)
+++ /trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/LoadAndZoomHandler.java	(revision 14377)
@@ -57,4 +57,5 @@
      */
     public static final String command2 = "zoom";
+    private static final String CURRENT_SELECTION = "currentselection";
 
     // Mandatory arguments
@@ -112,4 +113,5 @@
             "/zoom?left=8.19&right=8.20&top=48.605&bottom=48.590&select=node413602999",
             "/zoom?left=8.19&right=8.20&top=48.605&bottom=48.590&search=highway+OR+railway",
+            "/zoom?left=8.19&right=8.20&top=48.605&bottom=48.590&search=" + CURRENT_SELECTION + "&addtags=foo=bar",
             };
         }
@@ -316,5 +318,5 @@
             for (String item : args.get("select").split(",")) {
                 if (!item.isEmpty()) {
-                    if ("currentselection".equals(item.toLowerCase(Locale.ENGLISH))) {
+                    if (CURRENT_SELECTION.equals(item.toLowerCase(Locale.ENGLISH))) {
                         isKeepingCurrentSelection = true;
                         continue;
