To use the 'or' operator properly, you must specify each condition explicitly.
The way you're doing it is: IF X == Y || Z
The correct way is to do the following: IF X == Y || X == Z