File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
wcfsetup/install/files/lib/system/condition/type/user Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ public function matches(object $object): bool
7272 ["condition " => $ condition , "timestamp " => $ timestamp ] = $ this ->getParsedFilter ();
7373
7474 return match ($ condition ) {
75- '> ' => $ object ->registrationDate < $ timestamp ,
76- '< ' => $ object ->registrationDate > $ timestamp ,
77- '>= ' => $ object ->registrationDate < = $ timestamp ,
78- '<= ' => $ object ->registrationDate > = $ timestamp ,
75+ '> ' => $ object ->registrationDate > $ timestamp ,
76+ '< ' => $ object ->registrationDate < $ timestamp ,
77+ '>= ' => $ object ->registrationDate > = $ timestamp ,
78+ '<= ' => $ object ->registrationDate < = $ timestamp ,
7979 default => throw new \InvalidArgumentException ("Unknown condition: {$ condition }" ),
8080 };
8181 }
You can’t perform that action at this time.
0 commit comments