Index: applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java
===================================================================
--- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java	(revision 10469)
+++ applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java	(revision 10479)
@@ -31,5 +31,6 @@
 
 		String name = n.get("name");
-		if (name == null) return;
+		String sign = n.get("traffic_sign");
+		if (name == null || (sign != null && sign.equals("city_limit"))) return;
 
 		List<Node> nodes = namesToNodes.get(name);
Index: applications/editors/josm/plugins/validator/tagchecker.cfg
===================================================================
--- applications/editors/josm/plugins/validator/tagchecker.cfg	(revision 10469)
+++ applications/editors/josm/plugins/validator/tagchecker.cfg	(revision 10479)
@@ -45,4 +45,5 @@
 way  : I : highway == secondary && ref != *                    # highway without a reference
 way  : I : highway == tertiary && ref != *                     # highway without a reference
+*    : W : highway == road                                     # temporary highway type
 *    : W : / *name */i == * && name != *                       # misspelled key name
 
