Index: /trunk/quest-plugin-php/src/main/java/de/ugoe/cs/quest/plugin/php/eventcore/PHPEventType.java
===================================================================
--- /trunk/quest-plugin-php/src/main/java/de/ugoe/cs/quest/plugin/php/eventcore/PHPEventType.java	(revision 772)
+++ /trunk/quest-plugin-php/src/main/java/de/ugoe/cs/quest/plugin/php/eventcore/PHPEventType.java	(revision 773)
@@ -99,7 +99,7 @@
         if (obj instanceof PHPEventType) {
             PHPEventType other = (PHPEventType) obj;
-            return ((path == null && other.path == null) || path.equals(other.path)) &&
-                ((postVars == null && other.postVars == null) || postVars.equals(other.postVars)) &&
-                ((getVars == null && other.getVars == null) || getVars.equals(other.getVars));
+            return ((path == other.path) || (path != null && path.equals(other.path))) &&
+                ((postVars == other.postVars) || (postVars!=null && postVars.equals(other.postVars))) &&
+                ((getVars == other.getVars) || (getVars!=null && getVars.equals(other.getVars)));
         }
         return false;
